]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apiaccountupdatelinkcolor.php
9416a32cb787d0417edc2b74a96d59dcf7498a12
[quix0rs-gnu-social.git] / actions / apiaccountupdatelinkcolor.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Update a user's link 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 ApiAccountUpdateLinkColorAction extends ApiAuthAction
32 {
33     var $linkcolor = 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->linkcolor = $this->trimmed('linkcolor');
49
50         return true;
51     }
52
53     /**
54      * Handle the request
55      *
56      * Try to save the user's colors in her design. Create a new design
57      * if the user doesn't already have one.
58      *
59      * @param array $args $_REQUEST data (unused)
60      *
61      * @return void
62      */
63     function handle($args)
64     {
65         parent::handle($args);
66
67         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
68             $this->clientError(
69                 _('This method requires a POST.'),
70                 400, $this->format
71             );
72             return;
73         }
74                 
75                 $validhex = preg_match('/^[a-f0-9]{6}$/i',$this->linkcolor);
76                 if($validhex === false || $validhex == 0) {
77             $this->clientError(_('Not a valid hex color.'),404,'json');                 
78             return;
79                         }
80                 
81                 // save the new color
82                 $original = clone($this->user);
83                 $this->user->linkcolor = $this->linkcolor; 
84                 if (!$this->user->update($original)) {
85             $this->clientError(_('Error updating user.'),404,'json');
86             return;
87                 }
88
89         $profile = $this->user->getProfile();
90
91         if (empty($profile)) {
92             $this->clientError(_('User has no profile.'),'json');
93             return;
94         }
95
96         $twitter_user = $this->twitterUserArray($profile, true);
97
98         $this->initDocument('json');
99         $this->showJsonObjects($twitter_user);
100         $this->endDocument('json');
101     }
102
103
104 }