]> git.mxchange.org Git - quix0rs-gnu-social.git/blob - lib/settingsaction.php
Added is_readonly() method to all Actions
[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 is_readonly() {
25                 return false;
26         }
27
28     function handle($args) {
29         parent::handle($args);
30         if (!common_logged_in()) {
31             common_user_error(_('Not logged in.'));
32             return;
33         } else if (!common_is_real_login()) {
34                 # Cookie theft means that automatic logins can't
35                 # change important settings or see private info, and
36                 # _all_ our settings are important
37             common_set_returnto($this->self_url());
38             common_redirect(common_local_url('login'));
39         } else if ($_SERVER['REQUEST_METHOD'] == 'POST') {
40             $this->handle_post();
41         } else {
42             $this->show_form();
43         }
44     }
45
46     # override!
47     function handle_post() {
48         return false;
49     }
50
51     function show_form($msg=NULL, $success=false) {
52         return false;
53     }
54
55     function message($msg, $success) {
56         if ($msg) {
57             common_element('div', ($success) ? 'success' : 'error',
58                            $msg);
59         }
60     }
61
62         function form_header($title, $msg=NULL, $success=false) {
63                 common_show_header($title,
64                                    NULL,
65                                    array($msg, $success),
66                                                    array($this, 'show_top'));
67         }
68
69         function show_top($arr) {
70                 $msg = $arr[0];
71                 $success = $arr[1];
72                 if ($msg) {
73                         $this->message($msg, $success);
74                 } else {
75                         $inst = $this->get_instructions();
76                         $output = common_markup_to_html($inst);
77                         common_element_start('div', 'instructions');
78                         common_raw($output);
79                         common_element_end('div');
80                 }
81                 $this->settings_menu();
82         }
83
84     function settings_menu() {
85         # action => array('prompt', 'title')
86         static $menu =
87         array('profilesettings' =>
88               array('Profile',
89                         'Change your profile settings'),
90             'emailsettings' =>
91             array('Email',
92                   'Change email handling'),
93             'avatar' =>
94             array('Avatar',
95                   'Upload a new profile image'),
96             'password' =>
97             array('Password',
98                   'Change your password'),
99             'openidsettings' =>
100             array('OpenID',
101                   'Add or remove OpenIDs'),
102             'smssettings' =>
103             array('SMS',
104                   'Updates by SMS'),
105             'imsettings' =>
106             array('IM',
107                   'Updates by instant messenger (IM)'));
108
109         $action = $this->trimmed('action');
110         common_element_start('ul', array('id' => 'nav_views'));
111         foreach ($menu as $menuaction => $menudesc) {
112             common_menu_item(common_local_url($menuaction),
113                     _($menudesc[0]),
114                     _($menudesc[1]),
115                     $action == $menuaction);
116         }
117         common_element_end('ul');
118     }
119 }