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