]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - plugins/MobileProfile/MobileProfilePlugin.php
Added custom showHead
[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                 (common_config('site', 'mobileserver') != 
136                     common_config('site', 'server'))) {
137
138                 // FIXME: Redirect to equivalent page on mobile site instead
139                 header("Location: ".$this->_common_path(''));
140                 exit();
141             }
142         }
143
144         header('Content-Type: '.$type);
145
146         $action->extraHeaders();
147
148         $action->startXML('html',
149                         '-//WAPFORUM//DTD XHTML Mobile 1.0//EN',
150                         $this->DTD);
151
152         $language = $action->getLanguage();
153
154         $action->elementStart('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
155                                             'xml:lang' => $language));
156
157         return false;
158     }
159
160
161     function onStartShowHeadElements($action) {
162         if (!$action->serveMobile) {
163             return true;
164         }
165
166         $action->showTitle();
167         $action->showShortcutIcon();
168         $action->showStylesheets();
169         $action->showFeeds();
170         $action->showDescription();
171         $action->extraHead();
172     }
173
174
175     function onStartShowStatusNetStyles($action) {
176         if (file_exists(theme_file('css/mp-screen.css'))) {
177             $action->cssLink('css/mp-screen.css', null, 'screen');
178         }
179         else {
180             $action->element('link', array('rel' => 'stylesheet',
181                                          'type' => 'text/css',
182                                          'href' => common_path('plugins/MobileProfile/mp-screen.css') . '?version=' . STATUSNET_VERSION,
183                                          'media' => 'screen'));
184         }
185
186         if (file_exists(theme_file('css/mp-handheld.css'))) {
187             $action->cssLink('css/mp-handheld.css', null, 'handheld');
188         }
189         else {
190             $action->element('link', array('rel' => 'stylesheet',
191                                          'type' => 'text/css',
192                                          'href' => common_path('plugins/MobileProfile/mp-handheld.css') . '?version=' . STATUSNET_VERSION,
193                                          'media' => 'handheld'));
194         }
195
196         return false;
197     }
198
199
200     function onStartShowAside($action)
201     {
202         if ($this->serveMobile) {
203             return false;
204         }
205     }
206
207
208     function onStartShowScripts($action)
209     {
210
211     }
212
213
214     function _common_path($relative, $ssl=false)
215     {
216         $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
217
218         if (($ssl && (common_config('site', 'ssl') === 'sometimes'))
219             || common_config('site', 'ssl') === 'always') {
220             $proto = 'https';
221             if (is_string(common_config('site', 'sslserver')) &&
222                 mb_strlen(common_config('site', 'sslserver')) > 0) {
223                 $serverpart = common_config('site', 'sslserver');
224             } else {
225                 $serverpart = common_config('site', 'mobileserver');
226             }
227         } else {
228             $proto = 'http';
229             $serverpart = common_config('site', 'mobileserver');
230         }
231
232         return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
233     }
234 }
235
236
237 ?>