3 * Superclass for actions that operate on a user
7 * StatusNet - the distributed open-source microblogging tool
8 * Copyright (C) 2009, StatusNet, Inc.
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Affero General Public License as published by
12 * the Free Software Foundation, either version 3 of the License, or
13 * (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU Affero General Public License for more details.
20 * You should have received a copy of the GNU Affero General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * @author Evan Prodromou <evan@status.net>
26 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
27 * @link http://status.net/
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
35 * Superclass for actions that operate on a user
39 * @author Evan Prodromou <evan@status.net>
40 * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41 * @link http://status.net/
43 class ProfileFormAction extends RedirectingAction
48 * Take arguments for running
50 * @param array $args $_REQUEST args
52 * @return boolean success flag
54 function prepare(array $args=array())
56 parent::prepare($args);
58 $this->checkSessionToken();
60 if (!common_logged_in()) {
61 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
62 // TRANS: Error message displayed when trying to perform an action that requires a logged in user.
63 $this->clientError(_('Not logged in.'));
66 common_set_returnto($this->selfUrl());
67 $user = common_current_user();
68 if (Event::handle('RedirectToLogin', array($this, $user))) {
69 common_redirect(common_local_url('login'), 303);
75 $id = $this->trimmed('profileid');
78 // TRANS: Client error displayed when trying to change user options without specifying a user to work on.
79 $this->clientError(_('No profile specified.'));
82 $this->profile = Profile::getKV('id', $id);
84 if (!$this->profile) {
85 // TRANS: Client error displayed when trying to change user options without specifying an existing user to work on.
86 $this->clientError(_('No profile with that ID.'));
95 * @param array $args $_REQUEST args; handled in prepare()
99 function handle(array $args=array())
101 parent::handle($args);
103 if ($_SERVER['REQUEST_METHOD'] == 'POST') {
105 $this->returnToPrevious();
110 * handle a POST request
112 * sub-classes should overload this request
116 function handlePost()
118 // TRANS: Server error displayed when using an unimplemented method.
119 $this->serverError(_("Unimplemented method."));