3 * StatusNet, the distributed open-source microblogging tool
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.
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.
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/>.
24 * @author Sarven Capadisli <csarven@status.net>
25 * @author Zach Copley <zach@status.net>
26 * @copyright 2008-2009 StatusNet, Inc.
27 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
28 * @link http://status.net/
31 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 require_once INSTALLDIR . '/lib/designsettings.php';
38 * Set a group's design
40 * Saves a design for a given group
44 * @author Zach Copley <zach@status.net>
45 * @author Sarven Capadisli <csarven@status.net>
46 * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0
47 * @link http://status.net/
50 class GroupDesignSettingsAction extends DesignSettingsAction
55 * Sets the right action for the form, and passes request args into
58 * @param array $args misc. arguments
60 * @return boolean true
63 function prepare($args)
65 parent::prepare($args);
67 if (!common_config('inboxes', 'enabled')) {
68 $this->serverError(_('Inboxes must be enabled for groups to work'));
72 if (!common_logged_in()) {
73 $this->clientError(_('You must be logged in to edit a group.'));
77 $nickname_arg = $this->trimmed('nickname');
78 $nickname = common_canonical_nickname($nickname_arg);
80 // Permanent redirect on non-canonical nickname
82 if ($nickname_arg != $nickname) {
83 $args = array('nickname' => $nickname);
84 common_redirect(common_local_url('groupdesignsettings', $args), 301);
89 $this->clientError(_('No nickname'), 404);
93 $groupid = $this->trimmed('groupid');
96 $this->group = User_group::staticGet('id', $groupid);
98 $this->group = User_group::staticGet('nickname', $nickname);
102 $this->clientError(_('No such group'), 404);
106 $cur = common_current_user();
108 if (!$cur->isAdmin($this->group)) {
109 $this->clientError(_('You must be an admin to edit the group'), 403);
113 $this->submitaction = common_local_url('groupdesignsettings',
114 array('nickname' => $this->group->nickname));
120 * A design for this action
122 * if the group attribute has been set, returns that group's
125 * @return Design a design object to use
131 if (empty($this->group)) {
135 return $this->group->getDesign();
141 * @return string Title of the page
146 return _('Group design');
150 * Instructions for use
152 * @return instructions for use
155 function getInstructions()
157 return _('Customize the way your group looks ' .
158 'with a background image and a colour palette of your choice.');
162 * Override to show group nav stuff
167 function showLocalNav()
169 $nav = new GroupNav($this, $this->group);
174 * Get the design we want to edit
179 function getWorkingDesign()
184 if (isset($this->group)) {
185 $design = $this->group->getDesign();
188 if (empty($design)) {
189 $design = $this->defaultDesign();
196 * Content area of the page
198 * Shows a form for changing the design
203 function showContent()
205 $this->showDesignForm($this->getWorkingDesign());
209 * Save or update the group's design settings
214 function saveDesign()
218 $bgcolor = new WebColor($this->trimmed('design_background'));
219 $ccolor = new WebColor($this->trimmed('design_content'));
220 $sbcolor = new WebColor($this->trimmed('design_sidebar'));
221 $tcolor = new WebColor($this->trimmed('design_text'));
222 $lcolor = new WebColor($this->trimmed('design_links'));
224 } catch (WebColorException $e) {
225 $this->showForm($e->getMessage());
229 $onoff = $this->arg('design_background-image_onoff');
235 if ($onoff == 'on') {
241 $repeat = $this->boolean('design_background-image_repeat');
247 $design = $this->group->getDesign();
249 if (!empty($design)) {
253 $original = clone($design);
255 $design->backgroundcolor = $bgcolor->intValue();
256 $design->contentcolor = $ccolor->intValue();
257 $design->sidebarcolor = $sbcolor->intValue();
258 $design->textcolor = $tcolor->intValue();
259 $design->linkcolor = $lcolor->intValue();
261 $design->setDisposition($on, $off, $tile);
263 $result = $design->update($original);
265 if ($result === false) {
266 common_log_db_error($design, 'UPDATE', __FILE__);
267 $this->showForm(_('Couldn\'t update your design.'));
273 $this->group->query('BEGIN');
277 $design = new Design();
279 $design->backgroundcolor = $bgcolor->intValue();
280 $design->contentcolor = $ccolor->intValue();
281 $design->sidebarcolor = $sbcolor->intValue();
282 $design->textcolor = $tcolor->intValue();
283 $design->linkcolor = $lcolor->intValue();
285 $design->setDisposition($on, $off, $tile);
287 $id = $design->insert();
290 common_log_db_error($id, 'INSERT', __FILE__);
291 $this->showForm(_('Unable to save your design settings!'));
295 $original = clone($this->group);
296 $this->group->design_id = $id;
297 $result = $this->group->update($original);
299 if (empty($result)) {
300 common_log_db_error($original, 'UPDATE', __FILE__);
301 $this->showForm(_('Unable to save your design settings!'));
302 $this->group->query('ROLLBACK');
306 $this->group->query('COMMIT');
310 $this->saveBackgroundImage($design);
312 $this->showForm(_('Design preferences saved.'), true);