]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/router.php
d4a4d2ca9361d53c597cf3a0980ad11545721307
[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
53     static function get()
54     {
55         if (!Router::$inst) {
56             Router::$inst = new Router();
57         }
58         return Router::$inst;
59     }
60
61     function __construct()
62     {
63         if (!$this->m) {
64             $this->m = $this->initialize();
65         }
66     }
67
68     function initialize() {
69
70         $m = Net_URL_Mapper::getInstance();
71
72         // In the "root"
73
74         $m->connect('', array('action' => 'public'));
75         $m->connect('rss', array('action' => 'publicrss'));
76         $m->connect('xrds', array('action' => 'publicxrds'));
77         $m->connect('featuredrss', array('action' => 'featuredrss'));
78         $m->connect('favoritedrss', array('action' => 'favoritedrss'));
79         $m->connect('opensearch/people', array('action' => 'opensearch',
80                                                'type' => 'people'));
81         $m->connect('opensearch/notice', array('action' => 'opensearch',
82                                                'type' => 'notice'));
83
84         // docs
85
86         $m->connect('doc/:title', array('action' => 'doc'));
87
88         // facebook
89
90         $m->connect('facebook', array('action' => 'facebookhome'));
91         $m->connect('facebook/index.php', array('action' => 'facebookhome'));
92         $m->connect('facebook/settings.php', array('action' => 'facebooksettings'));
93         $m->connect('facebook/invite.php', array('action' => 'facebookinvite'));
94         $m->connect('facebook/remove', array('action' => 'facebookremove'));
95
96         // main stuff is repetitive
97
98         $main = array('login', 'logout', 'register', 'subscribe',
99                       'unsubscribe', 'confirmaddress', 'recoverpassword',
100                       'invite', 'favor', 'disfavor', 'sup',
101                       'block');
102
103         foreach ($main as $a) {
104             $m->connect('main/'.$a, array('action' => $a));
105         }
106
107         $m->connect('main/tagother/:id', array('action' => 'tagother'));
108
109         // these take a code
110
111         foreach (array('register', 'confirmaddress', 'recoverpassword') as $c) {
112             $m->connect('main/'.$c.'/:code', array('action' => $c));
113         }
114
115         // exceptional
116
117         $m->connect('main/openid', array('action' => 'openidlogin'));
118         $m->connect('main/remote', array('action' => 'remotesubscribe'));
119         $m->connect('main/remote?nickname=:nickname', array('action' => 'remotesubscribe'), array('nickname' => '[A-Za-z0-9_-]+'));
120
121         foreach (array('requesttoken', 'accesstoken', 'userauthorization',
122                     'postnotice', 'updateprofile', 'finishremotesubscribe') as $action) {
123             $m->connect('index.php?action=' . $action, array('action' => $action));
124         }
125
126         // settings
127
128         foreach (array('profile', 'avatar', 'password', 'openid', 'im',
129                        'email', 'sms', 'twitter', 'other') as $s) {
130             $m->connect('settings/'.$s, array('action' => $s.'settings'));
131         }
132
133         // search
134
135         foreach (array('group', 'people', 'notice') as $s) {
136             $m->connect('search/'.$s, array('action' => $s.'search'));
137             $m->connect('search/'.$s.'?q=:q', array('action' => $s.'search'), array('q' => '.+'));
138         }
139
140         $m->connect('search/notice/rss', array('action' => 'noticesearchrss'));
141
142         // notice
143
144         $m->connect('notice/new', array('action' => 'newnotice'));
145         $m->connect('notice/new?replyto=:replyto',
146                     array('action' => 'newnotice'),
147                     array('replyto' => '[A-Za-z0-9_-]+'));
148         $m->connect('notice/:notice',
149                     array('action' => 'shownotice'),
150                     array('notice' => '[0-9]+'));
151         $m->connect('notice/delete', array('action' => 'deletenotice'));
152         $m->connect('notice/delete/:notice',
153                     array('action' => 'deletenotice'),
154                     array('notice' => '[0-9]+'));
155
156         $m->connect('message/new', array('action' => 'newmessage'));
157         $m->connect('message/new?to=:to', array('action' => 'newmessage'), array('to' => '[A-Za-z0-9_-]'));
158         $m->connect('message/:message',
159                     array('action' => 'showmessage'),
160                     array('message' => '[0-9]+'));
161
162         $m->connect('user/:id',
163                     array('action' => 'userbyid'),
164                     array('id' => '[0-9]+'));
165
166         $m->connect('tags/', array('action' => 'publictagcloud'));
167         $m->connect('tag/', array('action' => 'publictagcloud'));
168         $m->connect('tags', array('action' => 'publictagcloud'));
169         $m->connect('tag', array('action' => 'publictagcloud'));
170         $m->connect('tag/:tag/rss',
171                     array('action' => 'tagrss'),
172                     array('tag' => '[a-zA-Z0-9]+'));
173         $m->connect('tag/:tag',
174                     array('action' => 'tag'),
175                     array('tag' => '[a-zA-Z0-9]+'));
176
177         $m->connect('peopletag/:tag',
178                     array('action' => 'peopletag'),
179                     array('tag' => '[a-zA-Z0-9]+'));
180
181         $m->connect('featured/', array('action' => 'featured'));
182         $m->connect('featured', array('action' => 'featured'));
183         $m->connect('favorited/', array('action' => 'favorited'));
184         $m->connect('favorited', array('action' => 'favorited'));
185
186         // groups
187
188         $m->connect('group/new', array('action' => 'newgroup'));
189
190         foreach (array('edit', 'join', 'leave') as $v) {
191             $m->connect('group/:nickname/'.$v,
192                         array('action' => $v.'group'),
193                         array('nickname' => '[a-zA-Z0-9]+'));
194         }
195
196         foreach (array('members', 'logo', 'rss') as $n) {
197             $m->connect('group/:nickname/'.$n,
198                         array('action' => 'group'.$n),
199                         array('nickname' => '[a-zA-Z0-9]+'));
200         }
201
202         $m->connect('group/:id/id',
203                     array('action' => 'groupbyid'),
204                     array('id' => '[0-9]+'));
205
206         $m->connect('group/:nickname',
207                     array('action' => 'showgroup'),
208                     array('nickname' => '[a-zA-Z0-9]+'));
209
210         $m->connect('group/', array('action' => 'groups'));
211         $m->connect('group', array('action' => 'groups'));
212         $m->connect('groups/', array('action' => 'groups'));
213         $m->connect('groups', array('action' => 'groups'));
214
215         // Twitter-compatible API
216
217         // statuses API
218
219         $m->connect('api/statuses/:method',
220                     array('action' => 'api',
221                           'apiaction' => 'statuses'),
222                     array('method' => '(public_timeline|friends_timeline|user_timeline|update|replies|friends|followers|featured)(\.(atom|rss|xml|json))?'));
223
224         $m->connect('api/statuses/:method/:argument',
225                     array('action' => 'api',
226                           'apiaction' => 'statuses'),
227                     array('method' => '(user_timeline|friends_timeline|show|destroy|friends|followers)'));
228
229         // users
230
231         $m->connect('api/users/show/:argument',
232                     array('action' => 'api',
233                           'apiaction' => 'users'));
234
235         $m->connect('api/users/:method',
236                     array('action' => 'api',
237                           'apiaction' => 'users'),
238                     array('method' => 'show(\.(xml|json|atom|rss))?'));
239
240         // direct messages
241
242         foreach (array('xml', 'json') as $e) {
243             $m->connect('api/direct_messages/new.'.$e,
244                         array('action' => 'api',
245                               'apiaction' => 'direct_messages',
246                               'method' => 'create.'.$e));
247         }
248
249         foreach (array('xml', 'json', 'rss', 'atom') as $e) {
250             $m->connect('api/direct_messages.'.$e,
251                         array('action' => 'api',
252                               'apiaction' => 'direct_messages',
253                               'method' => 'direct_messages.'.$e));
254         }
255
256         foreach (array('xml', 'json', 'rss', 'atom') as $e) {
257             $m->connect('api/direct_message/sent.'.$e,
258                         array('action' => 'api',
259                         'apiaction' => 'direct_messages',
260                         'method' => 'sent.'.$e));
261         }
262
263         $m->connect('api/direct_messages/destroy/:argument',
264                     array('action' => 'api',
265                           'apiaction' => 'direct_messages'));
266
267         // friendships
268
269         $m->connect('api/friendships/:method/:argument',
270                     array('action' => 'api',
271                           'apiaction' => 'friendships'),
272                     array('method' => '(create|destroy)'));
273
274         $m->connect('api/friendships/:method',
275                     array('action' => 'api',
276                           'apiaction' => 'friendships'),
277                     array('method' => 'exists(\.(xml|json|rss|atom))'));
278
279
280         // Social graph
281
282         $m->connect('api/friends/ids/:argument',
283                     array('action' => 'api',
284                           'apiaction' => 'statuses',
285                           'method' => 'friendsIDs'));
286                                                    
287         foreach (array('xml', 'json') as $e) {
288             $m->connect('api/friends/ids.'.$e,
289                         array('action' => 'api',
290                               'apiaction' => 'statuses',
291                               'method' => 'friendsIDs.'.$e));
292         }
293                                                     
294         $m->connect('api/followers/ids/:argument',
295                     array('action' => 'api',
296                           'apiaction' => 'statuses',
297                           'method' => 'followersIDs'));
298
299         foreach (array('xml', 'json') as $e) {
300             $m->connect('api/followers/ids.'.$e,
301                         array('action' => 'api',
302                               'apiaction' => 'statuses',
303                               'method' => 'followersIDs.'.$e));
304         }
305
306         // account
307
308         $m->connect('api/account/:method',
309                     array('action' => 'api',
310                           'apiaction' => 'account'));
311
312         // favorites
313
314         $m->connect('api/favorites/:method/:argument',
315                     array('action' => 'api',
316                           'apiaction' => 'favorites'));
317
318         $m->connect('api/favorites/:argument',
319                     array('action' => 'api',
320                           'apiaction' => 'favorites',
321                           'method' => 'favorites'));
322
323         foreach (array('xml', 'json', 'rss', 'atom') as $e) {
324             $m->connect('api/favorites.'.$e,
325                 array('action' => 'api',
326                       'apiaction' => 'favorites',
327                       'method' => 'favorites.'.$e));
328         }
329
330         // notifications
331
332         $m->connect('api/notifications/:method/:argument',
333                     array('action' => 'api',
334                           'apiaction' => 'favorites'));
335
336         // blocks
337
338         $m->connect('api/blocks/:method/:argument',
339                     array('action' => 'api',
340                           'apiaction' => 'blocks'));
341
342         // help
343
344         $m->connect('api/help/:method',
345                     array('action' => 'api',
346                           'apiaction' => 'help'));
347
348         // laconica
349
350         $m->connect('api/laconica/:method',
351                     array('action' => 'api',
352                           'apiaction' => 'laconica'));
353
354         // user stuff
355
356         foreach (array('subscriptions', 'subscribers',
357                        'nudge', 'xrds', 'all', 'foaf',
358                        'replies', 'inbox', 'outbox', 'microsummary') as $a) {
359             $m->connect(':nickname/'.$a,
360                         array('action' => $a),
361                         array('nickname' => '[a-zA-Z0-9]{1,64}'));
362         }
363
364         foreach (array('subscriptions', 'subscribers') as $a) {
365             $m->connect(':nickname/'.$a.'/:tag',
366                         array('action' => $a),
367                         array('tag' => '[a-zA-Z0-9]+',
368                               'nickname' => '[a-zA-Z0-9]{1,64}'));
369         }
370
371         foreach (array('rss', 'groups') as $a) {
372             $m->connect(':nickname/'.$a,
373                         array('action' => 'user'.$a),
374                         array('nickname' => '[a-zA-Z0-9]{1,64}'));
375         }
376
377         foreach (array('all', 'replies', 'favorites') as $a) {
378             $m->connect(':nickname/'.$a.'/rss',
379                         array('action' => $a.'rss'),
380                         array('nickname' => '[a-zA-Z0-9]{1,64}'));
381         }
382
383         $m->connect(':nickname/favorites',
384                     array('action' => 'showfavorites'),
385                     array('nickname' => '[a-zA-Z0-9]{1,64}'));
386
387         $m->connect(':nickname/avatar/:size',
388                     array('action' => 'avatarbynickname'),
389                     array('size' => '(original|96|48|24)',
390                           'nickname' => '[a-zA-Z0-9]{1,64}'));
391
392         $m->connect(':nickname',
393                     array('action' => 'showstream'),
394                     array('nickname' => '[a-zA-Z0-9]{1,64}'));
395
396         Event::handle('RouterInitialized', array($m));
397
398         return $m;
399     }
400
401     function map($path)
402     {
403         try {
404             $match = $this->m->match($path);
405         } catch (Net_URL_Mapper_InvalidException $e) {
406             common_log(LOG_ERR, "Problem getting route for $path - " .
407                 $e->getMessage());
408             $cac = new ClientErrorAction("Page not found.", 404);
409             $cac->showPage();
410         }
411
412         return $match;
413     }
414
415     function build($action, $args=null, $params=null, $fragment=null)
416     {
417         $action_arg = array('action' => $action);
418
419         if ($args) {
420             $args = array_merge($action_arg, $args);
421         } else {
422             $args = $action_arg;
423         }
424
425         return $this->m->generate($args, $params, $fragment);
426     }
427 }