]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/router.php
Merge branch '0.8.x' of git@gitorious.org:+laconica-developers/laconica/dev into...
[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         $m->connect('attachment/:attachment/ajax',
155                     array('action' => 'attachment_ajax'),
156                     array('attachment' => '[0-9]+'));
157
158         $m->connect('attachment/:attachment/thumbnail',
159                     array('action' => 'attachment_thumbnail'),
160                     array('attachment' => '[0-9]+'));
161
162         $m->connect('notice/new', array('action' => 'newnotice'));
163         $m->connect('notice/new?replyto=:replyto',
164                     array('action' => 'newnotice'),
165                     array('replyto' => '[A-Za-z0-9_-]+'));
166
167 /*
168         $m->connect('notice/:notice/file', 
169             array('action' => 'file'), 
170             array('notice' => '[0-9]+'));
171 */
172         
173         $m->connect('notice/:notice',
174                     array('action' => 'shownotice'),
175                     array('notice' => '[0-9]+'));
176         $m->connect('notice/delete', array('action' => 'deletenotice'));
177         $m->connect('notice/delete/:notice',
178                     array('action' => 'deletenotice'),
179                     array('notice' => '[0-9]+'));
180
181         // conversation
182
183         $m->connect('conversation/:id',
184                     array('action' => 'conversation'),
185                     array('id' => '[0-9]+'));
186
187         $m->connect('message/new', array('action' => 'newmessage'));
188         $m->connect('message/new?to=:to', array('action' => 'newmessage'), array('to' => '[A-Za-z0-9_-]+'));
189         $m->connect('message/:message',
190                     array('action' => 'showmessage'),
191                     array('message' => '[0-9]+'));
192
193         $m->connect('user/:id',
194                     array('action' => 'userbyid'),
195                     array('id' => '[0-9]+'));
196
197         $m->connect('tags/', array('action' => 'publictagcloud'));
198         $m->connect('tag/', array('action' => 'publictagcloud'));
199         $m->connect('tags', array('action' => 'publictagcloud'));
200         $m->connect('tag', array('action' => 'publictagcloud'));
201         $m->connect('tag/:tag/rss',
202                     array('action' => 'tagrss'),
203                     array('tag' => '[a-zA-Z0-9]+'));
204         $m->connect('tag/:tag',
205                     array('action' => 'tag'),
206                     array('tag' => '[a-zA-Z0-9]+'));
207
208         $m->connect('peopletag/:tag',
209                     array('action' => 'peopletag'),
210                     array('tag' => '[a-zA-Z0-9]+'));
211
212         $m->connect('featured/', array('action' => 'featured'));
213         $m->connect('featured', array('action' => 'featured'));
214         $m->connect('favorited/', array('action' => 'favorited'));
215         $m->connect('favorited', array('action' => 'favorited'));
216
217         // groups
218
219         $m->connect('group/new', array('action' => 'newgroup'));
220
221         foreach (array('edit', 'join', 'leave') as $v) {
222             $m->connect('group/:nickname/'.$v,
223                         array('action' => $v.'group'),
224                         array('nickname' => '[a-zA-Z0-9]+'));
225         }
226
227         foreach (array('members', 'logo', 'rss') as $n) {
228             $m->connect('group/:nickname/'.$n,
229                         array('action' => 'group'.$n),
230                         array('nickname' => '[a-zA-Z0-9]+'));
231         }
232
233         $m->connect('group/:id/id',
234                     array('action' => 'groupbyid'),
235                     array('id' => '[0-9]+'));
236
237         $m->connect('group/:nickname',
238                     array('action' => 'showgroup'),
239                     array('nickname' => '[a-zA-Z0-9]+'));
240
241         $m->connect('group/', array('action' => 'groups'));
242         $m->connect('group', array('action' => 'groups'));
243         $m->connect('groups/', array('action' => 'groups'));
244         $m->connect('groups', array('action' => 'groups'));
245
246         // Twitter-compatible API
247
248         // statuses API
249
250         $m->connect('api/statuses/:method',
251                     array('action' => 'api',
252                           'apiaction' => 'statuses'),
253                     array('method' => '(public_timeline|friends_timeline|user_timeline|update|replies|mentions|friends|followers|featured)(\.(atom|rss|xml|json))?'));
254
255         $m->connect('api/statuses/:method/:argument',
256                     array('action' => 'api',
257                           'apiaction' => 'statuses'),
258                     array('method' => '(user_timeline|friends_timeline|replies|mentions|show|destroy|friends|followers)'));
259
260         // users
261
262         $m->connect('api/users/:method/:argument',
263                     array('action' => 'api',
264                           'apiaction' => 'users'),
265                     array('method' => 'show(\.(xml|json))?'));
266
267         $m->connect('api/users/:method',
268                     array('action' => 'api',
269                           'apiaction' => 'users'),
270                     array('method' => 'show(\.(xml|json))?'));
271
272         // direct messages
273
274         foreach (array('xml', 'json') as $e) {
275             $m->connect('api/direct_messages/new.'.$e,
276                         array('action' => 'api',
277                               'apiaction' => 'direct_messages',
278                               'method' => 'create.'.$e));
279         }
280
281         foreach (array('xml', 'json', 'rss', 'atom') as $e) {
282             $m->connect('api/direct_messages.'.$e,
283                         array('action' => 'api',
284                               'apiaction' => 'direct_messages',
285                               'method' => 'direct_messages.'.$e));
286         }
287
288         foreach (array('xml', 'json', 'rss', 'atom') as $e) {
289             $m->connect('api/direct_messages/sent.'.$e,
290                         array('action' => 'api',
291                               'apiaction' => 'direct_messages',
292                               'method' => 'sent.'.$e));
293         }
294
295         $m->connect('api/direct_messages/destroy/:argument',
296                     array('action' => 'api',
297                           'apiaction' => 'direct_messages'));
298
299         // friendships
300
301         $m->connect('api/friendships/:method/:argument',
302                     array('action' => 'api',
303                           'apiaction' => 'friendships'),
304                     array('method' => '(create|destroy)'));
305
306         $m->connect('api/friendships/:method',
307                     array('action' => 'api',
308                           'apiaction' => 'friendships'),
309                     array('method' => 'exists(\.(xml|json))'));
310
311         // Social graph
312
313         $m->connect('api/friends/ids/:argument',
314                     array('action' => 'api',
315                           'apiaction' => 'statuses',
316                           'method' => 'friendsIDs'));
317
318         foreach (array('xml', 'json') as $e) {
319             $m->connect('api/friends/ids.'.$e,
320                         array('action' => 'api',
321                               'apiaction' => 'statuses',
322                               'method' => 'friendsIDs.'.$e));
323         }
324
325         $m->connect('api/followers/ids/:argument',
326                     array('action' => 'api',
327                           'apiaction' => 'statuses',
328                           'method' => 'followersIDs'));
329
330         foreach (array('xml', 'json') as $e) {
331             $m->connect('api/followers/ids.'.$e,
332                         array('action' => 'api',
333                               'apiaction' => 'statuses',
334                               'method' => 'followersIDs.'.$e));
335         }
336
337         // account
338
339         $m->connect('api/account/:method',
340                     array('action' => 'api',
341                           'apiaction' => 'account'));
342
343         // favorites
344
345         $m->connect('api/favorites/:method/:argument',
346                     array('action' => 'api',
347                           'apiaction' => 'favorites'));
348
349         $m->connect('api/favorites/:argument',
350                     array('action' => 'api',
351                           'apiaction' => 'favorites',
352                           'method' => 'favorites'));
353
354         foreach (array('xml', 'json', 'rss', 'atom') as $e) {
355             $m->connect('api/favorites.'.$e,
356                         array('action' => 'api',
357                               'apiaction' => 'favorites',
358                               'method' => 'favorites.'.$e));
359         }
360
361         // notifications
362
363         $m->connect('api/notifications/:method/:argument',
364                     array('action' => 'api',
365                           'apiaction' => 'favorites'));
366
367         // blocks
368
369         $m->connect('api/blocks/:method/:argument',
370                     array('action' => 'api',
371                           'apiaction' => 'blocks'));
372
373         // help
374
375         $m->connect('api/help/:method',
376                     array('action' => 'api',
377                           'apiaction' => 'help'));
378
379         // laconica
380
381         $m->connect('api/laconica/:method',
382                     array('action' => 'api',
383                           'apiaction' => 'laconica'));
384
385         // search
386         $m->connect('api/search.atom', array('action' => 'twitapisearchatom'));
387         $m->connect('api/search.json', array('action' => 'twitapisearchjson'));
388         $m->connect('api/trends.json', array('action' => 'twitapitrends'));
389
390         // user stuff
391
392         foreach (array('subscriptions', 'subscribers',
393                        'nudge', 'xrds', 'all', 'foaf',
394                        'replies', 'inbox', 'outbox', 'microsummary') as $a) {
395             $m->connect(':nickname/'.$a,
396                         array('action' => $a),
397                         array('nickname' => '[a-zA-Z0-9]{1,64}'));
398         }
399
400         foreach (array('subscriptions', 'subscribers') as $a) {
401             $m->connect(':nickname/'.$a.'/:tag',
402                         array('action' => $a),
403                         array('tag' => '[a-zA-Z0-9]+',
404                               'nickname' => '[a-zA-Z0-9]{1,64}'));
405         }
406
407         foreach (array('rss', 'groups') as $a) {
408             $m->connect(':nickname/'.$a,
409                         array('action' => 'user'.$a),
410                         array('nickname' => '[a-zA-Z0-9]{1,64}'));
411         }
412
413         foreach (array('all', 'replies', 'favorites') as $a) {
414             $m->connect(':nickname/'.$a.'/rss',
415                         array('action' => $a.'rss'),
416                         array('nickname' => '[a-zA-Z0-9]{1,64}'));
417         }
418
419         $m->connect(':nickname/favorites',
420                     array('action' => 'showfavorites'),
421                     array('nickname' => '[a-zA-Z0-9]{1,64}'));
422
423         $m->connect(':nickname/avatar/:size',
424                     array('action' => 'avatarbynickname'),
425                     array('size' => '(original|96|48|24)',
426                           'nickname' => '[a-zA-Z0-9]{1,64}'));
427
428         $m->connect(':nickname/tag/:tag/rss',
429             array('action' => 'userrss'),
430             array('nickname' => '[a-zA-Z0-9]{1,64}'),
431             array('tag' => '[a-zA-Z0-9]+'));
432
433         $m->connect(':nickname/tag/:tag',
434                     array('action' => 'showstream'),
435                     array('nickname' => '[a-zA-Z0-9]{1,64}'),
436                     array('tag' => '[a-zA-Z0-9]+'));
437
438         $m->connect(':nickname',
439                     array('action' => 'showstream'),
440                     array('nickname' => '[a-zA-Z0-9]{1,64}'));
441
442         Event::handle('RouterInitialized', array($m));
443
444         return $m;
445     }
446
447     function map($path)
448     {
449         try {
450             $match = $this->m->match($path);
451         } catch (Net_URL_Mapper_InvalidException $e) {
452             common_log(LOG_ERR, "Problem getting route for $path - " .
453                        $e->getMessage());
454             $cac = new ClientErrorAction("Page not found.", 404);
455             $cac->showPage();
456         }
457
458         return $match;
459     }
460
461     function build($action, $args=null, $params=null, $fragment=null)
462     {
463         $action_arg = array('action' => $action);
464
465         if ($args) {
466             $args = array_merge($action_arg, $args);
467         } else {
468             $args = $action_arg;
469         }
470
471         $url = $this->m->generate($args, $params, $fragment);
472
473         // Due to a bug in the Net_URL_Mapper code, the returned URL may
474         // contain a malformed query of the form ?p1=v1?p2=v2?p3=v3. We
475         // repair that here rather than modifying the upstream code...
476
477         $qpos = strpos($url, '?');
478         if ($qpos !== false) {
479             $url = substr($url, 0, $qpos+1) .
480               str_replace('?', '&', substr($url, $qpos+1));
481         }
482         return $url;
483     }
484 }