]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/settingsaction.php
2a80c0e31b3c9669c366fa095e24df60f2c30422
[quix0rs-gnu-social.git] / lib / settingsaction.php
1 <?php
2 /*
3  * Laconica - a distributed open-source microblogging tool
4  * Copyright (C) 2008, Controlez-Vous, Inc.
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Affero General Public License as published by
8  * the Free Software Foundation, either version 3 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU Affero General Public License for more details.
15  *
16  * You should have received a copy of the GNU Affero General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 if (!defined('LACONICA')) { exit(1); }
21
22 class SettingsAction extends Action {
23
24     function handle($args) {
25         parent::handle($args);
26         if (!common_logged_in()) {
27             common_user_error(_t('Not logged in.'));
28             return;
29         } else if (!common_is_real_login()) {
30                 # Cookie theft means that automatic logins can't
31                 # change important settings or see private info, and
32                 # _all_ our settings are important
33             common_set_returnto($this->self_url());
34             common_redirect(common_local_url('login'));
35         } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
36             $this->handle_post();
37         } else {
38             $this->show_form();
39         }
40     }
41
42     # override!
43     function handle_post() {
44         return false;
45     }
46
47     function show_form($msg=NULL, $success=false) {
48         return false;
49     }
50
51     function message($msg, $success) {
52         if ($msg) {
53             common_element('div', ($success) ? 'success' : 'error',
54                            $msg);
55         }
56     }
57
58     function settings_menu() {
59         # action => array('prompt', 'title')
60         static $menu =
61         array('profilesettings' =>
62               array('Profile',
63                         'Change your profile settings'),
64             'avatar' =>
65             array('Avatar',
66                   'Upload a new profile image'),
67             'password' =>
68             array('Password',
69                   'Change your password'),
70             'openidsettings' =>
71             array('OpenID',
72                   'Add or remove OpenIDs'),
73             'imsettings' =>
74             array('IM',
75                   'Updates by instant messenger (IM)'));
76
77         $action = $this->trimmed('action');
78         common_element_start('ul', array('id' => 'nav_views'));
79         foreach ($menu as $menuaction => $menudesc) {
80             common_menu_item(common_local_url($menuaction),
81                     _t($menudesc[0]),
82                     _t($menudesc[1]));
83         }
84         common_element_end('ul');
85     }
86 }