]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/MobileProfile/MobileProfilePlugin.php
Merge branch '0.9.x-mobile' of git@gitorious.org:~csarven/statusnet/csarven-clone...
[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 $DTD      = 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
100                 // I really don't like going through this every page, 
101                 // find a better way
102
103                 // May be better to categorize the devices in terms of 
104                 // low,mid,high-end
105
106                 // Or, detect the mobile devices based on their support for 
107                 // MP 1.0, 1.1, or 1.2 may be ideal. Possible?
108
109                 $this->mobiledevices = 
110                     array('alcatel', 'android', 'audiovox', 'au-mic,', 
111                           'avantgo', 'blackberry', 'blazer', 'cldc-', 'danger', 
112                           'epoc', 'ericsson', 'ericy', 'ipone', 'ipaq', 'j2me', 
113                           'lg', 'midp-', 'mobile', 'mot', 'netfront', 'nitro', 
114                           'nokia', 'opera mini', 'palm', 'palmsource', 
115                           'panasonic', 'philips', 'pocketpc', 'portalmmm', 
116                           'rover', 'samsung', 'sanyo', 'series60', 'sharp', 
117                           'sie-', 'smartphone', 'sony', 'symbian', 
118                           'up.browser', 'up.link', 'up.link', 'vodafone', 
119                           'wap1', 'wap2', 'windows ce');
120
121                 $httpuseragent = strtolower($_SERVER['HTTP_USER_AGENT']);
122
123                 foreach($this->mobiledevices as $md) {
124                     if (strstr($httpuseragent, $md) !== false) {
125                         $this->serveMobile = true;
126                         break;
127                     }
128                 }
129             }
130
131             // If they are okay with MP, and the site has a mobile server, 
132             // redirect there
133             if ($this->serveMobile && 
134                 common_config('site', 'mobileserver') !== false) {
135
136                 header("Location: ".common_config('site', 'mobileserver'));
137                 exit();
138             }
139         }
140
141         header('Content-Type: '.$type);
142
143         $action->extraHeaders();
144
145         $action->startXML('html',
146                         '-//WAPFORUM//DTD XHTML Mobile 1.0//EN',
147                         $this->DTD);
148
149         $language = $action->getLanguage();
150
151         $action->elementStart('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
152                                             'xml:lang' => $language));
153
154         return false;
155     }
156
157
158
159     function onStartShowAside($action)
160     {
161
162     }
163
164
165     function onStartShowScripts($action)
166     {
167
168     }
169
170 }
171
172
173 ?>