]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/profileformaction.php
Merge branch '0.9.x' of gitorious.org:statusnet/mainline into 0.9.x
[quix0rs-gnu-social.git] / lib / profileformaction.php
1 <?php
2 /**
3  * Superclass for actions that operate on a user
4  *
5  * PHP version 5
6  *
7  * StatusNet - the distributed open-source microblogging tool
8  * Copyright (C) 2009, StatusNet, Inc.
9  *
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.
14  *
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.
19  *
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/>.
22  *
23  * @category Action
24  * @package  StatusNet
25  * @author   Evan Prodromou <evan@status.net>
26  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
27  * @link     http://status.net/
28  */
29
30 if (!defined('STATUSNET') && !defined('LACONICA')) {
31     exit(1);
32 }
33
34 /**
35  * Superclass for actions that operate on a user
36  *
37  * @category Action
38  * @package  StatusNet
39  * @author   Evan Prodromou <evan@status.net>
40  * @license  http://www.fsf.org/licensing/licenses/agpl.html AGPLv3
41  * @link     http://status.net/
42  */
43
44 class ProfileFormAction extends RedirectingAction
45 {
46     var $profile = null;
47
48     /**
49      * Take arguments for running
50      *
51      * @param array $args $_REQUEST args
52      *
53      * @return boolean success flag
54      */
55
56     function prepare($args)
57     {
58         parent::prepare($args);
59
60         $this->checkSessionToken();
61
62         if (!common_logged_in()) {
63             if ($_SERVER['REQUEST_METHOD'] == 'POST') {
64                 $this->clientError(_('Not logged in.'));
65             } else {
66                 // Redirect to login.
67                 common_set_returnto($this->selfUrl());
68                 $user = common_current_user();
69                 if (Event::handle('RedirectToLogin', array($this, $user))) {
70                     common_redirect(common_local_url('login'), 303);
71                 }
72             }
73             return false;
74         }
75
76         $id = $this->trimmed('profileid');
77
78         if (!$id) {
79             $this->clientError(_('No profile specified.'));
80             return false;
81         }
82
83         $this->profile = Profile::staticGet('id', $id);
84
85         if (!$this->profile) {
86             $this->clientError(_('No profile with that ID.'));
87             return false;
88         }
89
90         return true;
91     }
92
93     /**
94      * Handle request
95      *
96      * Shows a page with list of favorite notices
97      *
98      * @param array $args $_REQUEST args; handled in prepare()
99      *
100      * @return void
101      */
102
103     function handle($args)
104     {
105         parent::handle($args);
106
107         if ($_SERVER['REQUEST_METHOD'] == 'POST') {
108             $this->handlePost();
109             $this->returnToPrevious();
110         }
111     }
112
113     /**
114      * handle a POST request
115      *
116      * sub-classes should overload this request
117      *
118      * @return void
119      */
120
121     function handlePost()
122     {
123         $this->serverError(_("Unimplemented method."));
124     }
125 }