]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - actions/apiaccountupdateprofilecolors.php
Merge branch '0.9.x' into 1.0.x
[quix0rs-gnu-social.git] / actions / apiaccountupdateprofilecolors.php
1 <?php
2 /**
3  * StatusNet, the distributed open-source microblogging tool
4  *
5  * Update a user's design colors
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   StatusNet
24  * @author    Zach Copley <zach@status.net>
25  * @copyright 2009-2010 StatusNet, Inc.
26  * @license   http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
27  * @link      http://status.net/
28  */
29
30 if (!defined('STATUSNET')) {
31     exit(1);
32 }
33
34 require_once INSTALLDIR . '/lib/apiauth.php';
35
36 /**
37  * Sets one or more hex values that control the color scheme of the
38  * authenticating user's design
39  *
40  * @category API
41  * @package  StatusNet
42  * @author   Zach Copley <zach@status.net>
43  * @license  http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
44  * @link     http://status.net/
45  */
46
47 class ApiAccountUpdateProfileColorsAction extends ApiAuthAction
48 {
49
50     var $profile_background_color     = null;
51     var $profile_text_color           = null;
52     var $profile_link_color           = null;
53     var $profile_sidebar_fill_color   = null;
54     var $profile_sidebar_border_color = null;
55
56     /**
57      * Take arguments for running
58      *
59      * @param array $args $_REQUEST args
60      *
61      * @return boolean success flag
62      *
63      */
64
65     function prepare($args)
66     {
67         parent::prepare($args);
68
69         $this->user   = $this->auth_user;
70
71         $this->profile_background_color
72             = $this->trimmed('profile_background_color');
73         $this->profile_text_color
74             = $this->trimmed('profile_text_color');
75         $this->profile_link_color
76             = $this->trimmed('profile_link_color');
77         $this->profile_sidebar_fill_color
78             = $this->trimmed('profile_sidebar_fill_color');
79
80         // XXX: we don't support changing the sidebar border color
81         // in our designs.
82
83         $this->profile_sidebar_border_color
84             = $this->trimmed('profile_sidebar_border_color');
85
86         // XXX: Unlike Twitter, we do allow people to change the 'content color'
87
88         $this->profile_content_color = $this->trimmed('profile_content_color');
89
90         return true;
91     }
92
93     /**
94      * Handle the request
95      *
96      * Try to save the user's colors in her design. Create a new design
97      * if the user doesn't already have one.
98      *
99      * @param array $args $_REQUEST data (unused)
100      *
101      * @return void
102      */
103
104     function handle($args)
105     {
106         parent::handle($args);
107
108         if ($_SERVER['REQUEST_METHOD'] != 'POST') {
109             $this->clientError(
110                 _('This method requires a POST.'),
111                 400, $this->format
112             );
113             return;
114         }
115
116         if (!in_array($this->format, array('xml', 'json'))) {
117             $this->clientError(
118                 _('API method not found.'),
119                 404,
120                 $this->format
121             );
122             return;
123         }
124
125         $design = $this->user->getDesign();
126
127         if (!empty($design)) {
128
129             $original = clone($design);
130
131             try {
132                 $this->setColors($design);
133             } catch (WebColorException $e) {
134                 $this->clientError($e->getMessage(), 400, $this->format);
135                 return false;
136             }
137
138             $result = $design->update($original);
139
140             if ($result === false) {
141                 common_log_db_error($design, 'UPDATE', __FILE__);
142                 $this->clientError(_('Could not update your design.'));
143                 return;
144             }
145
146         } else {
147
148             $this->user->query('BEGIN');
149
150             // save new design
151             $design = new Design();
152
153             try {
154                 $this->setColors($design);
155             } catch (WebColorException $e) {
156                 $this->clientError($e->getMessage(), 400, $this->format);
157                 return false;
158             }
159
160             $id = $design->insert();
161
162             if (empty($id)) {
163                 common_log_db_error($id, 'INSERT', __FILE__);
164                 $this->clientError(_('Unable to save your design settings.'));
165                 return;
166             }
167
168             $original              = clone($this->user);
169             $this->user->design_id = $id;
170             $result                = $this->user->update($original);
171
172             if (empty($result)) {
173                 common_log_db_error($original, 'UPDATE', __FILE__);
174                 $this->clientError(_('Unable to save your design settings.'));
175                 $this->user->query('ROLLBACK');
176                 return;
177             }
178
179             $this->user->query('COMMIT');
180         }
181
182         $profile = $this->user->getProfile();
183
184         if (empty($profile)) {
185             $this->clientError(_('User has no profile.'));
186             return;
187         }
188
189         $twitter_user = $this->twitterUserArray($profile, true);
190
191         if ($this->format == 'xml') {
192             $this->initDocument('xml');
193             $this->showTwitterXmlUser($twitter_user);
194             $this->endDocument('xml');
195         } elseif ($this->format == 'json') {
196             $this->initDocument('json');
197             $this->showJsonObjects($twitter_user);
198             $this->endDocument('json');
199         }
200     }
201
202     /**
203      * Sets the user's design colors based on the request parameters
204      *
205      * @param Design $design the user's Design
206      *
207      * @return void
208      */
209
210     function setColors($design)
211     {
212         $bgcolor = empty($this->profile_background_color) ?
213             null : new WebColor($this->profile_background_color);
214         $tcolor  = empty($this->profile_text_color) ?
215             null : new WebColor($this->profile_text_color);
216         $sbcolor = empty($this->profile_sidebar_fill_color) ?
217             null : new WebColor($this->profile_sidebar_fill_color);
218         $lcolor  = empty($this->profile_link_color) ?
219             null : new WebColor($this->profile_link_color);
220         $ccolor  = empty($this->profile_content_color) ?
221             null : new WebColor($this->profile_content_color);
222
223         if (!empty($bgcolor)) {
224             $design->backgroundcolor = $bgcolor->intValue();
225         }
226
227         if (!empty($ccolor)) {
228             $design->contentcolor = $ccolor->intValue();
229         }
230
231         if (!empty($sbcolor)) {
232             $design->sidebarcolor = $sbcolor->intValue();
233         }
234
235         if (!empty($tcolor)) {
236             $design->textcolor = $tcolor->intValue();
237         }
238
239         if (!empty($lcolor)) {
240             $design->linkcolor = $lcolor->intValue();
241         }
242
243         return true;
244     }
245
246 }