. * * @category API * @package GNUsocial * @author Hannes Mannerheim * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 * @link http://www.gnu.org/software/social/ */ if (!defined('GNUSOCIAL')) { exit(1); } class ApiAccountUpdateBackgroundColorAction extends ApiAuthAction { var $backgroundcolor = null; protected $needPost = true; /** * Take arguments for running * * @param array $args $_REQUEST args * * @return boolean success flag */ protected function prepare(array $args=array()) { parent::prepare($args); if ($this->format !== 'json') { $this->clientError('This method currently only serves JSON.', 415); } $this->backgroundcolor = $this->trimmed('backgroundcolor'); return true; } /** * Handle the request * * Try to save the user's colors in her design. Create a new design * if the user doesn't already have one. * * @param array $args $_REQUEST data (unused) * * @return void */ protected function handle() { parent::handle(); $validhex = preg_match('/^[a-f0-9]{6}$/i',$this->backgroundcolor); if ($validhex === false || $validhex == 0) { $this->clientError(_('Not a valid hex color.'), 400); } // save the new color $original = clone($this->auth_user); $this->auth_user->backgroundcolor = $this->backgroundcolor; if (!$this->auth_user->update($original)) { $this->clientError(_('Error updating user.'), 404); } $twitter_user = $this->twitterUserArray($this->scoped, true); $this->initDocument('json'); $this->showJsonObjects($twitter_user); $this->endDocument('json'); } }