]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/MobileProfile/MobileProfilePlugin.php
Better logic to determine what to do with the visitor. Whether to
[quix0rs-gnu-social.git] / plugins / MobileProfile / MobileProfilePlugin.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * XHTML Mobile Profile plugin that uses WAP 2.0 Plugin
6  *
7  * PHP version 5
8  *
9  * LICENCE: This program is free software: you can redistribute it and/or modify
10  * it under the terms of the GNU Affero General Public License as published by
11  * the Free Software Foundation, either version 3 of the License, or
12  * (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17  * GNU Affero General Public License for more details.
18  *
19  * You should have received a copy of the GNU Affero General Public License
20  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
21  *
22  * @category  Plugin
23  * @package   StatusNet
24  * @author    Sarven Capadisli <csarven@status.net>
25  * @copyright 2009 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 define('PAGE_TYPE_PREFS',
35        'application/vnd.wap.xhtml+xml, application/xhtml+xml, text/html;q=0.9');
36
37 require_once INSTALLDIR.'/plugins/Mobile/WAP20Plugin.php';
38
39
40 /**
41  * Superclass for plugin to output XHTML Mobile Profile
42  *
43  * @category Plugin
44  * @package  StatusNet
45  * @author   Sarven Capadisli <csarven@status.net>
46  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47  * @link     http://status.net/
48  */
49
50 class MobileProfilePlugin extends WAP20Plugin
51 {
52     public $DTDversion      = null;
53     public $serveMobile     = false;
54
55     function __construct($DTD='http://www.wapforum.org/DTD/xhtml-mobile10.dtd')
56     {
57         $this->DTD       = $DTD;
58
59         parent::__construct();
60     }
61
62
63     function onStartShowHTML($action)
64     {
65         if (!$type) {
66             $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ?
67               $_SERVER['HTTP_ACCEPT'] : null;
68
69             $cp = common_accept_to_prefs($httpaccept);
70             $sp = common_accept_to_prefs(PAGE_TYPE_PREFS);
71
72             $type = common_negotiate_type($cp, $sp);
73
74             if (!$type) {
75                 throw new ClientException(_('This page is not available in a '.
76                                             'media type you accept'), 406);
77             }
78         }
79
80         // XXX: This should probably graduate to WAP20Plugin
81
82         // If they are on the mobile site, serve them MP
83         if ((common_config('site', 'mobileserver').'/'.
84              common_config('site', 'path').'/' == 
85             $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'])) {
86
87             $this->serveMobile = true;
88         }
89         else {
90             // If they like the WAP 2.0 mimetype, serve them MP
91             if (strstr('application/vnd.wap.xhtml+xml', $type) !== false) {
92                 $this->serveMobile = true;
93             }
94             else {
95                 // If they are a mobile device that supports WAP 2.0, 
96                 // serve them MP
97
98                 // XXX: Browser sniffing sucks
99                 // I really don't like going through this every page, 
100                 // find a better way
101                 $this->mobiledevices = 
102                     array('alcatel', 'android', 'audiovox', 'au-mic,', 
103                           'avantgo', 'blackberry', 'blazer', 'cldc-', 'danger', 
104                           'epoc', 'ericsson', 'ericy', 'ipone', 'ipaq', 'j2me', 
105                           'lg', 'midp-', 'mobile', 'mot', 'netfront', 'nitro', 
106                           'nokia', 'opera mini', 'palm', 'palmsource', 
107                           'panasonic', 'philips', 'pocketpc', 'portalmmm', 
108                           'rover', 'samsung', 'sanyo', 'series60', 'sharp', 
109                           'sie-', 'smartphone', 'sony', 'symbian', 
110                           'up.browser', 'up.link', 'up.link', 'vodafone', 
111                           'wap1', 'wap2', 'windows ce');
112
113                 $httpuseragent = strtolower($_SERVER['HTTP_USER_AGENT']);
114
115                 foreach($this->mobiledevices as $mb) {
116                     if (strstr($httpuseragent, $mb) !== false) {
117                         $this->serveMobile = true;
118                         break;
119                     }
120                 }
121             }
122
123             // If they are okay with MP, and the site has a mobile server, 
124             // redirect there
125             if ($this->serveMobile && 
126                 common_config('site', 'mobileserver') !== false) {
127
128                 header("Location: ".common_config('site', 'mobileserver'));
129                 exit();
130             }
131         }
132
133         header('Content-Type: '.$type);
134
135         $action->extraHeaders();
136
137         $action->startXML('html',
138                         '-//WAPFORUM//DTD XHTML Mobile 1.0//EN',
139                         $this->DTD);
140
141         $language = $action->getLanguage();
142
143         $action->elementStart('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
144                                             'xml:lang' => $language));
145
146         return false;
147     }
148
149
150
151     function onStartShowAside($action)
152     {
153
154     }
155
156
157     function onStartShowScripts($action)
158     {
159
160     }
161
162 }
163
164
165 ?>