]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Only check if a nickname exists if site is non-private
authorMikael Nordfeldth <mmn@hethane.se>
Wed, 21 Jan 2015 21:06:27 +0000 (22:06 +0100)
committerMikael Nordfeldth <mmn@hethane.se>
Wed, 21 Jan 2015 21:07:41 +0000 (22:07 +0100)
actions/apichecknickname.php

index 73063c61b7334c66a1f699859343d434576d0f93..e714443c26321161dd91aa4d1c4da3dbf718b07d 100644 (file)
@@ -5,7 +5,7 @@
  *
  * Check nickname
  *
- * Returns 1 if nickname is ok, 0 if not
+ * Returns 1 if nickname is available on this instance, 0 if not. Error if site is private.
  *
  * PHP version 5
  *
@@ -38,6 +38,10 @@ class ApiCheckNicknameAction extends ApiAction
     {
         parent::prepare($args);
 
+        if (common_config('site', 'private')) {
+            throw new ClientException(_('This site is private.'), 403);
+        }
+
         if ($this->format !== 'json') {
             $this->clientError('This method currently only serves JSON.', 415);
         }