apiaccountupdatebackgroundcolor.php 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. <?php
  2. /**
  3. * StatusNet, the distributed open-source microblogging tool
  4. *
  5. * Update a user's background color
  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 API
  23. * @package GNUsocial
  24. * @author Hannes Mannerheim <h@nnesmannerhe.im>
  25. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
  26. * @link http://www.gnu.org/software/social/
  27. */
  28. if (!defined('GNUSOCIAL')) { exit(1); }
  29. class ApiAccountUpdateBackgroundColorAction extends ApiAuthAction
  30. {
  31. var $backgroundcolor = null;
  32. protected $needPost = true;
  33. /**
  34. * Take arguments for running
  35. *
  36. * @param array $args $_REQUEST args
  37. *
  38. * @return boolean success flag
  39. */
  40. protected function prepare(array $args=array())
  41. {
  42. parent::prepare($args);
  43. if ($this->format !== 'json') {
  44. $this->clientError('This method currently only serves JSON.', 415);
  45. }
  46. $this->backgroundcolor = $this->trimmed('backgroundcolor');
  47. return true;
  48. }
  49. /**
  50. * Handle the request
  51. *
  52. * Try to save the user's colors in her design. Create a new design
  53. * if the user doesn't already have one.
  54. *
  55. * @param array $args $_REQUEST data (unused)
  56. *
  57. * @return void
  58. */
  59. protected function handle()
  60. {
  61. parent::handle();
  62. $validhex = preg_match('/^[a-f0-9]{6}$/i',$this->backgroundcolor);
  63. if ($validhex === false || $validhex == 0) {
  64. $this->clientError(_('Not a valid hex color.'), 400);
  65. }
  66. // save the new color
  67. $original = clone($this->auth_user);
  68. $this->auth_user->backgroundcolor = $this->backgroundcolor;
  69. if (!$this->auth_user->update($original)) {
  70. $this->clientError(_('Error updating user.'), 404);
  71. }
  72. $twitter_user = $this->twitterUserArray($this->scoped, true);
  73. $this->initDocument('json');
  74. $this->showJsonObjects($twitter_user);
  75. $this->endDocument('json');
  76. }
  77. }