]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apiaccountupdatebackgroundcolor.php
Merge branch 'page_title_showstream' into 'nightly'
[quix0rs-gnu-social.git] / actions / apiaccountupdatebackgroundcolor.php
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
29 if (!defined('GNUSOCIAL')) { exit(1); }
30
31 class ApiAccountUpdateBackgroundColorAction extends ApiAuthAction
32 {
33     var $backgroundcolor = null;
34
35     protected $needPost = true;
36
37     /**
38      * Take arguments for running
39      *
40      * @param array $args $_REQUEST args
41      *
42      * @return boolean success flag
43      */
44     protected function prepare(array $args=array())
45     {
46         parent::prepare($args);
47
48         if ($this->format !== 'json') {
49             $this->clientError('This method currently only serves JSON.', 415);
50         }
51
52         $this->backgroundcolor = $this->trimmed('backgroundcolor');
53         return true;
54     }
55
56     /**
57      * Handle the request
58      *
59      * Try to save the user's colors in her design. Create a new design
60      * if the user doesn't already have one.
61      *
62      * @param array $args $_REQUEST data (unused)
63      *
64      * @return void
65      */
66     protected function handle()
67     {
68         parent::handle();
69     
70         $validhex = preg_match('/^[a-f0-9]{6}$/i',$this->backgroundcolor);
71         if ($validhex === false || $validhex == 0) {
72             $this->clientError(_('Not a valid hex color.'), 400);
73         }
74     
75         // save the new color
76         $original = clone($this->auth_user);
77         $this->auth_user->backgroundcolor = $this->backgroundcolor; 
78         if (!$this->auth_user->update($original)) {
79             $this->clientError(_('Error updating user.'), 404);
80         }
81
82         $twitter_user = $this->twitterUserArray($this->scoped, true);
83
84         $this->initDocument('json');
85         $this->showJsonObjects($twitter_user);
86         $this->endDocument('json');
87     }
88
89
90 }