3 * StatusNet, the distributed open-source microblogging tool
5 * XHTML Mobile Profile plugin that uses WAP 2.0 Plugin
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.
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.
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/>.
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/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
34 define('PAGE_TYPE_PREFS_MOBILEPROFILE',
35 'application/vnd.wap.xhtml+xml, application/xhtml+xml, text/html;q=0.9');
37 require_once INSTALLDIR.'/plugins/Mobile/WAP20Plugin.php';
41 * Superclass for plugin to output XHTML Mobile Profile
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/
50 class MobileProfilePlugin extends WAP20Plugin
53 public $serveMobile = false;
54 public $mobileFeatures = array();
56 function __construct($DTD='http://www.wapforum.org/DTD/xhtml-mobile10.dtd')
60 parent::__construct();
64 function onStartShowHTML($action)
66 // XXX: This should probably graduate to WAP20Plugin
68 // If they are on the mobile site, serve them MP
69 if ((common_config('site', 'mobileserver').'/'.
70 common_config('site', 'path').'/' ==
71 $_SERVER['HTTP_HOST'].$_SERVER['REQUEST_URI'])) {
73 $this->serveMobile = true;
75 // If they like the WAP 2.0 mimetype, serve them MP
76 // @fixme $type is undefined, making this if case useless and spewing errors.
78 //if (strstr('application/vnd.wap.xhtml+xml', $type) !== false) {
79 // $this->serveMobile = true;
81 // If they are a mobile device that supports WAP 2.0,
84 // XXX: Browser sniffing sucks
86 // I really don't like going through this every page,
87 // perhaps use $_SESSION or cookies
89 // May be better to group the devices in terms of
92 // Or, detect the mobile devices based on their support for
93 // MP 1.0, 1.1, or 1.2 may be ideal. Possible?
95 $this->mobiledevices = array(
146 'ipad', // Larger screen handles the full theme fairly well.
149 $httpuseragent = strtolower($_SERVER['HTTP_USER_AGENT']);
151 foreach ($blacklist as $md) {
152 if (strstr($httpuseragent, $md) !== false) {
153 $this->serveMobile = false;
158 foreach ($this->mobiledevices as $md) {
159 if (strstr($httpuseragent, $md) !== false) {
160 $this->setMobileFeatures($httpuseragent);
162 $this->serveMobile = true;
168 // If they are okay with MP, and the site has a mobile server,
170 if ($this->serveMobile &&
171 common_config('site', 'mobileserver') !== false &&
172 (common_config('site', 'mobileserver') !=
173 common_config('site', 'server'))) {
175 // FIXME: Redirect to equivalent page on mobile site instead
176 common_redirect($this->_common_path(''), 302);
180 if (!$this->serveMobile) {
184 // @fixme $type is undefined, making this if case useless and spewing errors.
185 // What's the intent?
187 $httpaccept = isset($_SERVER['HTTP_ACCEPT']) ?
188 $_SERVER['HTTP_ACCEPT'] : null;
190 $cp = common_accept_to_prefs($httpaccept);
191 $sp = common_accept_to_prefs(PAGE_TYPE_PREFS_MOBILEPROFILE);
193 $type = common_negotiate_type($cp, $sp);
196 throw new ClientException(_('This page is not available in a '.
197 'media type you accept'), 406);
201 header('Content-Type: '.$type);
203 $action->extraHeaders();
204 if (preg_match("/.*\/.*xml/", $type)) {
205 // Required for XML documents
206 $action->xw->startDocument('1.0', 'UTF-8');
208 $action->xw->writeDTD('html',
209 '-//WAPFORUM//DTD XHTML Mobile 1.0//EN',
212 $language = $action->getLanguage();
214 $action->elementStart('html', array('xmlns' => 'http://www.w3.org/1999/xhtml',
215 'xml:lang' => $language));
221 function setMobileFeatures($useragent)
223 $mobiledeviceInputFileType = array(
227 $this->mobileFeatures['inputfiletype'] = false;
229 foreach ($mobiledeviceInputFileType as $md) {
230 if (strstr($useragent, $md) !== false) {
231 $this->mobileFeatures['inputfiletype'] = true;
238 function onStartShowStatusNetStyles($action)
240 if (!$this->serveMobile) {
244 $action->primaryCssLink();
246 if (file_exists(Theme::file('css/mp-screen.css'))) {
247 $action->cssLink('css/mp-screen.css', null, 'screen');
249 $action->cssLink('plugins/MobileProfile/mp-screen.css',null,'screen');
252 if (file_exists(Theme::file('css/mp-handheld.css'))) {
253 $action->cssLink('css/mp-handheld.css', null, 'handheld');
255 $action->cssLink('plugins/MobileProfile/mp-handheld.css',null,'handheld');
258 // Allow other plugins to load their styles.
259 Event::handle('EndShowStatusNetStyles', array($action));
260 Event::handle('EndShowLaconicaStyles', array($action));
266 function onStartShowUAStyles($action) {
267 if (!$this->serveMobile) {
274 function onStartShowHeader($action)
276 if (!$this->serveMobile) {
280 $action->elementStart('div', array('id' => 'header'));
281 $this->_showLogo($action);
282 $this->_showPrimaryNav($action);
283 if (common_logged_in()) {
284 $action->showNoticeForm();
286 $action->elementEnd('div');
292 function _showLogo($action)
294 $action->elementStart('address', 'vcard');
295 $action->elementStart('a', array('class' => 'url home bookmark',
296 'href' => common_local_url('public')));
297 if (common_config('site', 'mobilelogo') ||
298 file_exists(Theme::file('logo.png')) ||
299 file_exists(Theme::file('mobilelogo.png'))) {
301 $action->element('img', array('class' => 'photo',
302 'src' => (common_config('site', 'mobilelogo')) ? common_config('site', 'mobilelogo') :
303 ((file_exists(Theme::file('mobilelogo.png'))) ? (Theme::path('mobilelogo.png')) : Theme::path('logo.png')),
304 'alt' => common_config('site', 'name')));
306 $action->element('span', array('class' => 'fn org'), common_config('site', 'name'));
307 $action->elementEnd('a');
308 $action->elementEnd('address');
312 function _showPrimaryNav($action)
314 $user = common_current_user();
315 $action->elementStart('ul', array('id' => 'site_nav_global_primary'));
317 $action->menuItem(common_local_url('all', array('nickname' => $user->nickname)),
319 $action->menuItem(common_local_url('profilesettings'),
321 $action->menuItem(common_local_url('oauthconnectionssettings'),
323 if ($user->hasRight(Right::CONFIGURESITE)) {
324 $action->menuItem(common_local_url('siteadminpanel'),
325 _('Admin'), _('Change site configuration'), false, 'nav_admin');
327 if (common_config('invite', 'enabled')) {
328 $action->menuItem(common_local_url('invite'),
331 $action->menuItem(common_local_url('logout'),
334 if (!common_config('site', 'closed')) {
335 $action->menuItem(common_local_url('register'),
338 $action->menuItem(common_local_url('login'),
341 if ($user || !common_config('site', 'private')) {
342 $action->menuItem(common_local_url('peoplesearch'),
345 $action->elementEnd('ul');
349 function onStartShowNoticeFormData($form)
351 if (!$this->serveMobile) {
355 $form->out->element('textarea', array('id' => 'notice_data-text',
358 'name' => 'status_textarea'),
359 ($form->content) ? $form->content : '');
361 $contentLimit = Notice::maxContent();
363 if ($contentLimit > 0) {
364 $form->out->element('div', array('id' => 'notice_text-count'),
368 if (common_config('attachments', 'uploads')) {
369 if ($this->mobileFeatures['inputfiletype']) {
370 $form->out->element('label', array('for' => 'notice_data-attach'), _('Attach'));
371 $form->out->element('input', array('id' => 'notice_data-attach',
374 'title' => _('Attach a file')));
375 $form->out->hidden('MAX_FILE_SIZE', common_config('attachments', 'file_quota'));
379 $form->out->hidden('notice_return-to', $form->action, 'returnto');
381 $form->out->hidden('notice_in-reply-to', $form->inreplyto, 'inreplyto');
387 function onStartShowAside($action)
389 if ($this->serveMobile) {
395 function onStartShowScripts($action)
401 function _common_path($relative, $ssl=false)
403 $pathpart = (common_config('site', 'path')) ? common_config('site', 'path')."/" : '';
405 if (($ssl && (common_config('site', 'ssl') === 'sometimes'))
406 || common_config('site', 'ssl') === 'always') {
408 if (is_string(common_config('site', 'sslserver')) &&
409 mb_strlen(common_config('site', 'sslserver')) > 0) {
410 $serverpart = common_config('site', 'sslserver');
412 $serverpart = common_config('site', 'mobileserver');
416 $serverpart = common_config('site', 'mobileserver');
419 return $proto.'://'.$serverpart.'/'.$pathpart.$relative;
422 function onPluginVersion(&$versions)
424 $versions[] = array('name' => 'MobileProfile',
425 'version' => STATUSNET_VERSION,
426 'author' => 'Sarven Capadisli',
427 'homepage' => 'http://status.net/wiki/Plugin:MobileProfile',
429 _m('XHTML MobileProfile output for supporting user agents.'));