diff options
author | Zach Copley <zach@status.net> | 2010-02-02 08:48:52 +0000 |
---|---|---|
committer | Zach Copley <zach@status.net> | 2010-02-02 08:48:52 +0000 |
commit | 2be00ce64221197f3c8ad1458eba2488c8836e5c (patch) | |
tree | b3fd0ee62c631f53b2c8670ec1f109283b2d6b34 /actions/editapplication.php | |
parent | 952b5806987e12a34e6fd75509b5d78815c1aa2d (diff) | |
parent | 5e90f744a6fb58c43f8f5332ef868ba38e82b3d1 (diff) |
Merge branch 'oauth-continued' into 0.9.x
Diffstat (limited to 'actions/editapplication.php')
-rw-r--r-- | actions/editapplication.php | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/actions/editapplication.php b/actions/editapplication.php index 9cc3e3cea..029b622e8 100644 --- a/actions/editapplication.php +++ b/actions/editapplication.php @@ -179,6 +179,9 @@ class EditApplicationAction extends OwnerDesignAction } elseif (mb_strlen($name) > 255) { $this->showForm(_('Name is too long (max 255 chars).')); return; + } else if ($this->nameExists($name)) { + $this->showForm(_('Name already in use. Try another one.')); + return; } elseif (empty($description)) { $this->showForm(_('Description is required.')); return; @@ -260,5 +263,26 @@ class EditApplicationAction extends OwnerDesignAction common_redirect(common_local_url('oauthappssettings'), 303); } + /** + * Does the app name already exist? + * + * Checks the DB to see someone has already registered and app + * with the same name. + * + * @param string $name app name to check + * + * @return boolean true if the name already exists + */ + + function nameExists($name) + { + $newapp = Oauth_application::staticGet('name', $name); + if (!$newapp) { + return false; + } else { + return $newapp->id != $this->app->id; + } + } + } |