]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apiaccountupdatelinkcolor.php
Prepopulate newnotice from URL arg
[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     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->linkcolor = $this->trimmed('linkcolor');
53
54         return true;
55     }
56
57     /**
58      * Handle the request
59      *
60      * Try to save the user's colors in her design. Create a new design
61      * if the user doesn't already have one.
62      *
63      * @param array $args $_REQUEST data (unused)
64      *
65      * @return void
66      */
67     protected function handle()
68     {
69         parent::handle();
70     
71         $validhex = preg_match('/^[a-f0-9]{6}$/i',$this->linkcolor);
72         if ($validhex === false || $validhex == 0) {
73             $this->clientError(_('Not a valid hex color.'), 400);
74         }
75     
76         // save the new color
77         $original = clone($this->auth_user);
78         $this->auth_user->linkcolor = $this->linkcolor; 
79         if (!$this->auth_user->update($original)) {
80             $this->clientError(_('Error updating user.'), 400);
81         }
82
83         $twitter_user = $this->twitterUserArray($this->scoped, true);
84
85         $this->initDocument('json');
86         $this->showJsonObjects($twitter_user);
87         $this->endDocument('json');
88     }
89 }