]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apiaccountupdatebackgroundcolor.php
Qvitter API changes (thanks hannes2peer)
[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     /**
36      * Take arguments for running
37      *
38      * @param array $args $_REQUEST args
39      *
40      * @return boolean success flag
41      */
42     function prepare($args)
43     {
44         parent::prepare($args);
45
46         $this->user   = $this->auth_user;
47
48         $this->backgroundcolor = $this->trimmed('backgroundcolor');
49         return true;
50     }
51
52     /**
53      * Handle the request
54      *
55      * Try to save the user's colors in her design. Create a new design
56      * if the user doesn't already have one.
57      *
58      * @param array $args $_REQUEST data (unused)
59      *
60      * @return void
61      */
62     function handle($args)
63     {
64         parent::handle($args);
65
66         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
67             $this->clientError(
68                 _('This method requires a POST.'),
69                 400, $this->format
70             );
71             return;
72         }
73                 
74                 $validhex = preg_match('/^[a-f0-9]{6}$/i',$this->backgroundcolor);
75                 if($validhex === false || $validhex == 0) {
76             $this->clientError(_('Not a valid hex color.'),404,'json');                 
77             return;
78                         }
79                 
80                 // save the new color
81                 $original = clone($this->user);
82                 $this->user->backgroundcolor = $this->backgroundcolor; 
83                 if (!$this->user->update($original)) {
84             $this->clientError(_('Error updating user.'),404,'json');
85             return;
86                 }
87
88         $profile = $this->user->getProfile();
89
90         if (empty($profile)) {
91             $this->clientError(_('User has no profile.'),'json');
92             return;
93         }
94
95         $twitter_user = $this->twitterUserArray($profile, true);
96
97         $this->initDocument('json');
98         $this->showJsonObjects($twitter_user);
99         $this->endDocument('json');
100     }
101
102
103 }