]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/router.php
Created Design page for users to customize the way their profile pages
[quix0rs-gnu-social.git] / lib / router.php
1 <?php
2 /**
3  * Laconica, the distributed open-source microblogging tool
4  *
5  * URL routing utilities
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  URL
23  * @package   Laconica
24  * @author    Evan Prodromou <evan@controlyourself.ca>
25  * @copyright 2009 Control Yourself, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://laconi.ca/
28  */
29
30 if (!defined('LACONICA')) {
31     exit(1);
32 }
33
34 require_once 'Net/URL/Mapper.php';
35
36 /**
37  * URL Router
38  *
39  * Cheap wrapper around Net_URL_Mapper
40  *
41  * @category URL
42  * @package  Laconica
43  * @author   Evan Prodromou <evan@controlyourself.ca>
44  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
45  * @link     http://laconi.ca/
46  */
47
48 class Router
49 {
50     var $m = null;
51     static $inst = null;
52     static $bare = array('requesttoken', 'accesstoken', 'userauthorization',
53                          'postnotice', 'updateprofile', 'finishremotesubscribe',
54                          'finishopenidlogin', 'finishaddopenid');
55
56     static function get()
57     {
58         if (!Router::$inst) {
59             Router::$inst = new Router();
60         }
61         return Router::$inst;
62     }
63
64     function __construct()
65     {
66         if (!$this->m) {
67             $this->m = $this->initialize();
68         }
69     }
70
71     function initialize()
72     {
73         $m = Net_URL_Mapper::getInstance();
74
75         // In the "root"
76
77         $m->connect('', array('action' => 'public'));
78         $m->connect('rss', array('action' => 'publicrss'));
79         $m->connect('xrds', array('action' => 'publicxrds'));
80         $m->connect('featuredrss', array('action' => 'featuredrss'));
81         $m->connect('favoritedrss', array('action' => 'favoritedrss'));
82         $m->connect('opensearch/people', array('action' => 'opensearch',
83                                                'type' => 'people'));
84         $m->connect('opensearch/notice', array('action' => 'opensearch',
85                                                'type' => 'notice'));
86
87         // docs
88
89         $m->connect('doc/:title', array('action' => 'doc'));
90
91         // facebook
92
93         $m->connect('facebook', array('action' => 'facebookhome'));
94         $m->connect('facebook/index.php', array('action' => 'facebookhome'));
95         $m->connect('facebook/settings.php', array('action' => 'facebooksettings'));
96         $m->connect('facebook/invite.php', array('action' => 'facebookinvite'));
97         $m->connect('facebook/remove', array('action' => 'facebookremove'));
98
99         // main stuff is repetitive
100
101         $main = array('login', 'logout', 'register', 'subscribe',
102                       'unsubscribe', 'confirmaddress', 'recoverpassword',
103                       'invite', 'favor', 'disfavor', 'sup',
104                       'block', 'subedit');
105
106         foreach ($main as $a) {
107             $m->connect('main/'.$a, array('action' => $a));
108         }
109
110         $m->connect('main/sup/:seconds', array('action' => 'sup'),
111                     array('seconds' => '[0-9]+'));
112
113         $m->connect('main/tagother/:id', array('action' => 'tagother'));
114
115         // these take a code
116
117         foreach (array('register', 'confirmaddress', 'recoverpassword') as $c) {
118             $m->connect('main/'.$c.'/:code', array('action' => $c));
119         }
120
121         // exceptional
122
123         $m->connect('main/openid', array('action' => 'openidlogin'));
124         $m->connect('main/remote', array('action' => 'remotesubscribe'));
125         $m->connect('main/remote?nickname=:nickname', array('action' => 'remotesubscribe'), array('nickname' => '[A-Za-z0-9_-]+'));
126
127         foreach (Router::$bare as $action) {
128             $m->connect('index.php?action=' . $action, array('action' => $action));
129         }
130
131         // settings
132
133         foreach (array('profile', 'avatar', 'password', 'openid', 'im',
134                        'email', 'sms', 'twitter', 'design', 'other') as $s) {
135             $m->connect('settings/'.$s, array('action' => $s.'settings'));
136         }
137
138         // search
139
140         foreach (array('group', 'people', 'notice') as $s) {
141             $m->connect('search/'.$s, array('action' => $s.'search'));
142             $m->connect('search/'.$s.'?q=:q',
143                         array('action' => $s.'search'),
144                         array('q' => '.+'));
145         }
146
147         // The second of these is needed to make the link work correctly
148         // when inserted into the page. The first is needed to match the
149         // route on the way in. Seems to be another Net_URL_Mapper bug to me.
150         $m->connect('search/notice/rss', array('action' => 'noticesearchrss'));
151         $m->connect('search/notice/rss?q=:q', array('action' => 'noticesearchrss'),
152                     array('q' => '.+'));
153
154         // notice
155
156         $m->connect('notice/new', array('action' => 'newnotice'));
157         $m->connect('notice/new?replyto=:replyto',
158                     array('action' => 'newnotice'),
159                     array('replyto' => '[A-Za-z0-9_-]+'));
160         $m->connect('notice/:notice',
161                     array('action' => 'shownotice'),
162                     array('notice' => '[0-9]+'));
163         $m->connect('notice/delete', array('action' => 'deletenotice'));
164         $m->connect('notice/delete/:notice',
165                     array('action' => 'deletenotice'),
166                     array('notice' => '[0-9]+'));
167
168         // conversation
169
170         $m->connect('conversation/:id',
171                     array('action' => 'conversation'),
172                     array('id' => '[0-9]+'));
173
174         $m->connect('message/new', array('action' => 'newmessage'));
175         $m->connect('message/new?to=:to', array('action' => 'newmessage'), array('to' => '[A-Za-z0-9_-]+'));
176         $m->connect('message/:message',
177                     array('action' => 'showmessage'),
178                     array('message' => '[0-9]+'));
179
180         $m->connect('user/:id',
181                     array('action' => 'userbyid'),
182                     array('id' => '[0-9]+'));
183
184         $m->connect('tags/', array('action' => 'publictagcloud'));
185         $m->connect('tag/', array('action' => 'publictagcloud'));
186         $m->connect('tags', array('action' => 'publictagcloud'));
187         $m->connect('tag', array('action' => 'publictagcloud'));
188         $m->connect('tag/:tag/rss',
189                     array('action' => 'tagrss'),
190                     array('tag' => '[a-zA-Z0-9]+'));
191         $m->connect('tag/:tag',
192                     array('action' => 'tag'),
193                     array('tag' => '[a-zA-Z0-9]+'));
194
195         $m->connect('peopletag/:tag',
196                     array('action' => 'peopletag'),
197                     array('tag' => '[a-zA-Z0-9]+'));
198
199         $m->connect('featured/', array('action' => 'featured'));
200         $m->connect('featured', array('action' => 'featured'));
201         $m->connect('favorited/', array('action' => 'favorited'));
202         $m->connect('favorited', array('action' => 'favorited'));
203
204         // groups
205
206         $m->connect('group/new', array('action' => 'newgroup'));
207
208         foreach (array('edit', 'join', 'leave') as $v) {
209             $m->connect('group/:nickname/'.$v,
210                         array('action' => $v.'group'),
211                         array('nickname' => '[a-zA-Z0-9]+'));
212         }
213
214         foreach (array('members', 'logo', 'rss') as $n) {
215             $m->connect('group/:nickname/'.$n,
216                         array('action' => 'group'.$n),
217                         array('nickname' => '[a-zA-Z0-9]+'));
218         }
219
220         $m->connect('group/:id/id',
221                     array('action' => 'groupbyid'),
222                     array('id' => '[0-9]+'));
223
224         $m->connect('group/:nickname',
225                     array('action' => 'showgroup'),
226                     array('nickname' => '[a-zA-Z0-9]+'));
227
228         $m->connect('group/', array('action' => 'groups'));
229         $m->connect('group', array('action' => 'groups'));
230         $m->connect('groups/', array('action' => 'groups'));
231         $m->connect('groups', array('action' => 'groups'));
232
233         // Twitter-compatible API
234
235         // statuses API
236
237         $m->connect('api/statuses/:method',
238                     array('action' => 'api',
239                           'apiaction' => 'statuses'),
240                     array('method' => '(public_timeline|friends_timeline|user_timeline|update|replies|friends|followers|featured)(\.(atom|rss|xml|json))?'));
241
242         $m->connect('api/statuses/:method/:argument',
243                     array('action' => 'api',
244                           'apiaction' => 'statuses'),
245                     array('method' => '(user_timeline|friends_timeline|replies|show|destroy|friends|followers)'));
246
247         // users
248
249         $m->connect('api/users/:method/:argument',
250                     array('action' => 'api',
251                           'apiaction' => 'users'),
252                     array('method' => 'show(\.(xml|json))?'));
253
254         $m->connect('api/users/:method',
255                     array('action' => 'api',
256                           'apiaction' => 'users'),
257                     array('method' => 'show(\.(xml|json))?'));
258
259         // direct messages
260
261         foreach (array('xml', 'json') as $e) {
262             $m->connect('api/direct_messages/new.'.$e,
263                         array('action' => 'api',
264                               'apiaction' => 'direct_messages',
265                               'method' => 'create.'.$e));
266         }
267
268         foreach (array('xml', 'json', 'rss', 'atom') as $e) {
269             $m->connect('api/direct_messages.'.$e,
270                         array('action' => 'api',
271                               'apiaction' => 'direct_messages',
272                               'method' => 'direct_messages.'.$e));
273         }
274
275         foreach (array('xml', 'json', 'rss', 'atom') as $e) {
276             $m->connect('api/direct_messages/sent.'.$e,
277                         array('action' => 'api',
278                               'apiaction' => 'direct_messages',
279                               'method' => 'sent.'.$e));
280         }
281
282         $m->connect('api/direct_messages/destroy/:argument',
283                     array('action' => 'api',
284                           'apiaction' => 'direct_messages'));
285
286         // friendships
287
288         $m->connect('api/friendships/:method/:argument',
289                     array('action' => 'api',
290                           'apiaction' => 'friendships'),
291                     array('method' => '(create|destroy)'));
292
293         $m->connect('api/friendships/:method',
294                     array('action' => 'api',
295                           'apiaction' => 'friendships'),
296                     array('method' => 'exists(\.(xml|json))'));
297
298         // Social graph
299
300         $m->connect('api/friends/ids/:argument',
301                     array('action' => 'api',
302                           'apiaction' => 'statuses',
303                           'method' => 'friendsIDs'));
304
305         foreach (array('xml', 'json') as $e) {
306             $m->connect('api/friends/ids.'.$e,
307                         array('action' => 'api',
308                               'apiaction' => 'statuses',
309                               'method' => 'friendsIDs.'.$e));
310         }
311
312         $m->connect('api/followers/ids/:argument',
313                     array('action' => 'api',
314                           'apiaction' => 'statuses',
315                           'method' => 'followersIDs'));
316
317         foreach (array('xml', 'json') as $e) {
318             $m->connect('api/followers/ids.'.$e,
319                         array('action' => 'api',
320                               'apiaction' => 'statuses',
321                               'method' => 'followersIDs.'.$e));
322         }
323
324         // account
325
326         $m->connect('api/account/:method',
327                     array('action' => 'api',
328                           'apiaction' => 'account'));
329
330         // favorites
331
332         $m->connect('api/favorites/:method/:argument',
333                     array('action' => 'api',
334                           'apiaction' => 'favorites'));
335
336         $m->connect('api/favorites/:argument',
337                     array('action' => 'api',
338                           'apiaction' => 'favorites',
339                           'method' => 'favorites'));
340
341         foreach (array('xml', 'json', 'rss', 'atom') as $e) {
342             $m->connect('api/favorites.'.$e,
343                         array('action' => 'api',
344                               'apiaction' => 'favorites',
345                               'method' => 'favorites.'.$e));
346         }
347
348         // notifications
349
350         $m->connect('api/notifications/:method/:argument',
351                     array('action' => 'api',
352                           'apiaction' => 'favorites'));
353
354         // blocks
355
356         $m->connect('api/blocks/:method/:argument',
357                     array('action' => 'api',
358                           'apiaction' => 'blocks'));
359
360         // help
361
362         $m->connect('api/help/:method',
363                     array('action' => 'api',
364                           'apiaction' => 'help'));
365
366         // laconica
367
368         $m->connect('api/laconica/:method',
369                     array('action' => 'api',
370                           'apiaction' => 'laconica'));
371
372         // search
373         $m->connect('api/search.atom', array('action' => 'twitapisearchatom'));
374         $m->connect('api/search.json', array('action' => 'twitapisearchjson'));
375         $m->connect('api/trends.json', array('action' => 'twitapitrends'));
376
377         // user stuff
378
379         foreach (array('subscriptions', 'subscribers',
380                        'nudge', 'xrds', 'all', 'foaf',
381                        'replies', 'inbox', 'outbox', 'microsummary') as $a) {
382             $m->connect(':nickname/'.$a,
383                         array('action' => $a),
384                         array('nickname' => '[a-zA-Z0-9]{1,64}'));
385         }
386
387         foreach (array('subscriptions', 'subscribers') as $a) {
388             $m->connect(':nickname/'.$a.'/:tag',
389                         array('action' => $a),
390                         array('tag' => '[a-zA-Z0-9]+',
391                               'nickname' => '[a-zA-Z0-9]{1,64}'));
392         }
393
394         foreach (array('rss', 'groups') as $a) {
395             $m->connect(':nickname/'.$a,
396                         array('action' => 'user'.$a),
397                         array('nickname' => '[a-zA-Z0-9]{1,64}'));
398         }
399
400         foreach (array('all', 'replies', 'favorites') as $a) {
401             $m->connect(':nickname/'.$a.'/rss',
402                         array('action' => $a.'rss'),
403                         array('nickname' => '[a-zA-Z0-9]{1,64}'));
404         }
405
406         $m->connect(':nickname/favorites',
407                     array('action' => 'showfavorites'),
408                     array('nickname' => '[a-zA-Z0-9]{1,64}'));
409
410         $m->connect(':nickname/avatar/:size',
411                     array('action' => 'avatarbynickname'),
412                     array('size' => '(original|96|48|24)',
413                           'nickname' => '[a-zA-Z0-9]{1,64}'));
414
415         $m->connect(':nickname',
416                     array('action' => 'showstream'),
417                     array('nickname' => '[a-zA-Z0-9]{1,64}'));
418
419         Event::handle('RouterInitialized', array($m));
420
421         return $m;
422     }
423
424     function map($path)
425     {
426         try {
427             $match = $this->m->match($path);
428         } catch (Net_URL_Mapper_InvalidException $e) {
429             common_log(LOG_ERR, "Problem getting route for $path - " .
430                        $e->getMessage());
431             $cac = new ClientErrorAction("Page not found.", 404);
432             $cac->showPage();
433         }
434
435         return $match;
436     }
437
438     function build($action, $args=null, $params=null, $fragment=null)
439     {
440         $action_arg = array('action' => $action);
441
442         if ($args) {
443             $args = array_merge($action_arg, $args);
444         } else {
445             $args = $action_arg;
446         }
447
448         $url = $this->m->generate($args, $params, $fragment);
449
450         // Due to a bug in the Net_URL_Mapper code, the returned URL may
451         // contain a malformed query of the form ?p1=v1?p2=v2?p3=v3. We
452         // repair that here rather than modifying the upstream code...
453
454         $qpos = strpos($url, '?');
455         if ($qpos !== false) {
456             $url = substr($url, 0, $qpos+1) .
457               str_replace('?', '&', substr($url, $qpos+1));
458         }
459         return $url;
460     }
461 }