Request: is_mobile
authorSven Schöling <s.schoeling@googlemail.com>
Wed, 20 Jan 2021 10:04:59 +0000 (11:04 +0100)
committerSven Schöling <s.schoeling@googlemail.com>
Fri, 25 Jun 2021 13:51:32 +0000 (15:51 +0200)
SL/Request.pm

index c33b6b3..7c4fa71 100644 (file)
@@ -20,7 +20,7 @@ our @EXPORT_OK = qw(flatten unflatten);
 use Rose::Object::MakeMethods::Generic
 (
   scalar                  => [ qw(applying_database_upgrades post_data) ],
-  'scalar --get_set_init' => [ qw(cgi layout presenter is_ajax type) ],
+  'scalar --get_set_init' => [ qw(cgi layout presenter is_ajax is_mobile type) ],
 );
 
 sub init_cgi {
@@ -39,6 +39,12 @@ sub init_is_ajax {
   return ($ENV{HTTP_X_REQUESTED_WITH} || '') eq 'XMLHttpRequest' ? 1 : 0;
 }
 
+sub init_is_mobile {
+  # mobile clients will change their user agent when the user requests
+  # desktop version so user agent is the most reliable way to identify
+  return ($ENV{HTTP_USER_AGENT} || '') =~ /Mobi/ ? 1 : 0;
+}
+
 sub init_type {
   return 'html';
 }