summaryrefslogtreecommitdiff
path: root/lib/router.php
diff options
context:
space:
mode:
authorZach Copley <zach@status.net>2009-11-16 16:58:49 -0800
committerZach Copley <zach@status.net>2010-01-24 16:36:02 -0800
commit3c2b05d222a55cd1e148f3f887bf55e924898f1b (patch)
treed1ca17ba0782527ec43bb3026823e64913651d38 /lib/router.php
parent035c475b45959057099c503d2cdcff8c8145e198 (diff)
Workflow for registering new OAuth apps pretty much done.
Diffstat (limited to 'lib/router.php')
-rw-r--r--lib/router.php25
1 files changed, 21 insertions, 4 deletions
diff --git a/lib/router.php b/lib/router.php
index 7b65ae215..a8dbbf6d0 100644
--- a/lib/router.php
+++ b/lib/router.php
@@ -641,13 +641,30 @@ class Router
array('nickname' => '[a-zA-Z0-9]{1,64}'));
}
- $m->connect('apps/new', array('action' => 'newapplication'));
-
- $m->connect(':nickname/apps/edit',
+ $m->connect(':nickname/apps',
+ array('action' => 'apps'),
+ array('nickname' => '['.NICKNAME_FMT.']{1,64}'));
+ $m->connect(':nickname/apps/show/:id',
+ array('action' => 'showapplication'),
+ array('nickname' => '['.NICKNAME_FMT.']{1,64}',
+ 'id' => '[0-9]+')
+ );
+ $m->connect(':nickname/apps/new',
+ array('action' => 'newapplication'),
+ array('nickname' => '['.NICKNAME_FMT.']{1,64}'));
+ $m->connect(':nickname/apps/edit/:id',
array('action' => 'editapplication'),
- array('nickname' => '['.NICKNAME_FMT.']{1,64}')
+ array('nickname' => '['.NICKNAME_FMT.']{1,64}',
+ 'id' => '[0-9]+')
);
+ $m->connect('oauth/request_token',
+ array('action' => 'oauthrequesttoken'));
+ $m->connect('oauth/access_token',
+ array('action' => 'oauthaccesstoken'));
+ $m->connect('oauth/authorize',
+ array('action' => 'oauthauthorize'));
+
foreach (array('subscriptions', 'subscribers') as $a) {
$m->connect(':nickname/'.$a.'/:tag',
array('action' => $a),