]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
settings: ensure system theme is default selection
[friendica.git] / mod / settings.php
1 <?php
2
3
4 function settings_init(&$a) {
5         if(local_user()) {
6                 profile_load($a,$a->user['nickname']);
7         }
8 }
9
10
11 function settings_post(&$a) {
12
13         if(! local_user()) {
14                 notice( t('Permission denied.') . EOL);
15                 return;
16         }
17
18         call_hooks('settings_post', $_POST);
19
20         if(($a->argc > 1) && ($a->argv[1] == 'addon'))
21                 return;
22
23         if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
24                 notice( t('Permission denied.') . EOL);
25                 return;
26         }
27         if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
28
29                 $newpass = $_POST['npassword'];
30                 $confirm = $_POST['confirm'];
31
32                 $err = false;
33                 if($newpass != $confirm ) {
34                         notice( t('Passwords do not match. Password unchanged.') . EOL);
35                         $err = true;
36                 }
37
38                 if((! x($newpass)) || (! x($confirm))) {
39                         notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
40                         $err = true;
41                 }
42
43                 if(! $err) {
44                         $password = hash('whirlpool',$newpass);
45                         $r = q("UPDATE `user` SET `password` = '%s' WHERE `uid` = %d LIMIT 1",
46                                 dbesc($password),
47                                 intval(local_user())
48                         );
49                         if($r)
50                                 notice( t('Password changed.') . EOL);
51                         else
52                                 notice( t('Password update failed. Please try again.') . EOL);
53                 }
54         }
55
56         $theme            = ((x($_POST,'theme'))      ? notags(trim($_POST['theme']))        : '');
57         $username         = ((x($_POST,'username'))   ? notags(trim($_POST['username']))     : '');
58         $email            = ((x($_POST,'email'))      ? notags(trim($_POST['email']))        : '');
59         $timezone         = ((x($_POST,'timezone'))   ? notags(trim($_POST['timezone']))     : '');
60         $defloc           = ((x($_POST,'defloc'))     ? notags(trim($_POST['defloc']))       : '');
61         $openid           = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url']))   : '');
62         $maxreq           = ((x($_POST,'maxreq'))     ? intval($_POST['maxreq'])             : 0);
63
64         $allow_location   = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
65         $publish          = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
66         $net_publish      = (((x($_POST,'profile_in_netdirectory')) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
67         $old_visibility   = (((x($_POST,'visibility')) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
68         $page_flags       = (((x($_POST,'page-flags')) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
69
70         $notify = 0;
71
72         if(x($_POST,'notify1'))
73                 $notify += intval($_POST['notify1']);
74         if(x($_POST,'notify2'))
75                 $notify += intval($_POST['notify2']);
76         if(x($_POST,'notify3'))
77                 $notify += intval($_POST['notify3']);
78         if(x($_POST,'notify4'))
79                 $notify += intval($_POST['notify4']);
80         if(x($_POST,'notify5'))
81                 $notify += intval($_POST['notify5']);
82
83         $email_changed = false;
84
85         $err = '';
86
87         if($username != $a->user['username']) {
88                 if(strlen($username) > 40)
89                         $err .= t(' Please use a shorter name.');
90                 if(strlen($username) < 3)
91                         $err .= t(' Name too short.');
92         }
93
94         if($email != $a->user['email']) {
95                 $email_changed = true;
96         if(! valid_email($email))
97                         $err .= t(' Not valid email.');
98         }
99
100         if(strlen($err)) {
101                 notice($err . EOL);
102                 return;
103         }
104
105         if($timezone != $a->user['timezone']) {
106                 if(strlen($timezone))
107                         date_default_timezone_set($timezone);
108         }
109
110         $str_group_allow   = perms2str($_POST['group_allow']);
111         $str_contact_allow = perms2str($_POST['contact_allow']);
112         $str_group_deny    = perms2str($_POST['group_deny']);
113         $str_contact_deny  = perms2str($_POST['contact_deny']);
114
115         $openidserver = $a->user['openidserver'];
116
117         // If openid has changed or if there's an openid but no openidserver, try and discover it.
118
119         if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
120                 $tmp_str = $openid;
121                 if(strlen($tmp_str) && validate_url($tmp_str)) {
122                         logger('updating openidserver');
123                         require_once('library/openid.php');
124                         $open_id_obj = new LightOpenID;
125                         $open_id_obj->identity = $openid;
126                         $openidserver = $open_id_obj->discover($open_id_obj->identity);
127                 }
128                 else
129                         $openidserver = '';
130         }
131
132         $r = q("UPDATE `user` SET `username` = '%s', `email` = '%s', `openid` = '%s', `timezone` = '%s',  `allow_cid` = '%s', `allow_gid` = '%s', `deny_cid` = '%s', `deny_gid` = '%s', `notify-flags` = %d, `page-flags` = %d, `default-location` = '%s', `allow_location` = %d, `theme` = '%s', `maxreq` = %d, `openidserver` = '%s'  WHERE `uid` = %d LIMIT 1",
133                         dbesc($username),
134                         dbesc($email),
135                         dbesc($openid),
136                         dbesc($timezone),
137                         dbesc($str_contact_allow),
138                         dbesc($str_group_allow),
139                         dbesc($str_contact_deny),
140                         dbesc($str_group_deny),
141                         intval($notify),
142                         intval($page_flags),
143                         dbesc($defloc),
144                         intval($allow_location),
145                         dbesc($theme),
146                         intval($maxreq),
147                         dbesc($openidserver),
148                         intval(local_user())
149         );
150         if($r)
151                 notice( t('Settings updated.') . EOL);
152
153         $r = q("UPDATE `profile` 
154                 SET `publish` = %d, `net-publish` = %d
155                 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
156                 intval($publish),
157                 intval($net_publish),
158                 intval(local_user())
159         );
160
161         if($old_visibility != $net_publish) {
162                 // Update global directory in background
163                 $php_path = ((strlen($a->config['php_path'])) ? $a->config['php_path'] : 'php');
164                 $url = $_SESSION['my_url'];
165                 if($url && strlen(get_config('system','directory_submit_url')))
166                         proc_close(proc_open("\"$php_path\" \"include/directory.php\" \"$url\" &",
167                                 array(),$foo));
168         }
169
170         $_SESSION['theme'] = $theme;
171         if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
172
173                 // FIXME - set to un-verified, blocked and redirect to logout
174
175         }
176
177         goaway($a->get_baseurl() . '/settings' );
178         return; // NOTREACHED
179 }
180                 
181
182 if(! function_exists('settings_content')) {
183 function settings_content(&$a) {
184
185         $o = '';
186         $o .= '<script> $(document).ready(function() { $(\'#nav-settings-link\').addClass(\'nav-selected\'); });</script>';
187
188         if(! local_user()) {
189                 notice( t('Permission denied.') . EOL );
190                 return;
191         }
192
193         if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
194                 $o .= '<h1>' . t('Plugin Settings') . '</h1>';
195                 $o .= '<div id="account-settings-link"><a href="settings">' . t('Account Settings') . '</a></div>';
196
197                 $o .= '<form action="settings/addon" method="post" >';
198
199                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
200                 if(! count($r))
201                         notice( t('No Plugin settings configured') . EOL);
202
203                 call_hooks('plugin_settings', $o);
204                 $o .= '</form>';
205                 return $o;
206         }
207                 
208         require_once('include/acl_selectors.php');
209
210         $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
211                 intval(local_user())
212         );
213         if(count($p))
214                 $profile = $p[0];
215
216         $username = $a->user['username'];
217         $email    = $a->user['email'];
218         $nickname = $a->user['nickname'];
219         $timezone = $a->user['timezone'];
220         $notify   = $a->user['notify-flags'];
221         $defloc   = $a->user['default-location'];
222         $openid   = $a->user['openid'];
223         $maxreq   = $a->user['maxreq'];
224
225         if(! strlen($a->user['timezone']))
226                 $timezone = date_default_timezone_get();
227
228         $pageset_tpl = load_view_file('view/pagetypes.tpl');
229         $pagetype = replace_macros($pageset_tpl,array(
230                 '$normal'         => (($a->user['page-flags'] == PAGE_NORMAL)      ? " checked=\"checked\" " : ""),
231                 '$soapbox'        => (($a->user['page-flags'] == PAGE_SOAPBOX)     ? " checked=\"checked\" " : ""),
232                 '$community'      => (($a->user['page-flags'] == PAGE_COMMUNITY)   ? " checked=\"checked\" " : ""),
233                 '$freelove'       => (($a->user['page-flags'] == PAGE_FREELOVE)    ? " checked=\"checked\" " : ""),
234                 '$page_normal'    => PAGE_NORMAL,
235                 '$page_soapbox'   => PAGE_SOAPBOX,
236                 '$page_community' => PAGE_COMMUNITY,
237                 '$page_freelove'  => PAGE_FREELOVE
238         ));
239
240         $noid = get_config('system','no_openid');
241
242         if($noid) {
243                 $oidhtml = '';
244         }
245         else {
246                 $oidhtml = '<label id="settings-openid-label" for="settings-openid" >' . t('OpenID: ') . '</label><input type="text" id="settings-openid" class="openid" name="openid_url" value="$openid" />' . t("&nbsp;\x28Optional\x29 Allow this OpenID to login to this account.");
247         }
248
249
250         if(get_config('system','publish_all')) {
251                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
252         }
253         else {
254                 $opt_tpl = load_view_file("view/profile-in-directory.tpl");
255                 $profile_in_dir = replace_macros($opt_tpl,array(
256                         '$yes_selected' => (($profile['publish'])      ? " checked=\"checked\" " : ""),
257                         '$no_selected'  => (($profile['publish'] == 0) ? " checked=\"checked\" " : "")
258                 ));
259         }
260
261         if(strlen(get_config('system','directory_submit_url'))) {
262                 $opt_tpl = load_view_file("view/profile-in-netdir.tpl");
263
264                 $profile_in_net_dir = replace_macros($opt_tpl,array(
265                         '$yes_selected' => (($profile['net-publish'])      ? " checked=\"checked\" " : ""),
266                         '$no_selected'  => (($profile['net-publish'] == 0) ? " checked=\"checked\" " : "")
267                 ));
268         }
269         else
270                 $profile_in_net_dir = '';
271
272         $loc_checked = (($a->user['allow_location'] == 1)      ? " checked=\"checked\" " : "");
273
274         $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
275                 ? true : false);
276
277         if($invisible)
278                 notice( t('Profile is <strong>not published</strong>.') . EOL );
279
280         $nickname_block = load_view_file("view/settings_nick_set.tpl");
281         
282         $nickname_subdir = '';
283         if(strlen($a->get_path())) {
284                 $subdir_tpl = load_view_file('view/settings_nick_subdir.tpl');
285                 $nickname_subdir = replace_macros($subdir_tpl, array(
286                         '$baseurl' => $a->get_baseurl(),
287                         '$nickname' => $nickname,
288                         '$hostname' => $a->get_hostname()
289                 ));
290         }
291
292         $theme_selector = '<select name="theme" id="theme-select" >';
293         $files = glob('view/theme/*');
294
295         $default_theme = get_config('system','theme');
296         if(! $default_theme)
297                 $default_theme = 'default';
298
299         if($files) {
300                 foreach($files as $file) {
301                         $f = basename($file);
302                         $selected = (($f == $_SESSION['theme']) || ($f === $default_theme && (! x($_SESSION,'theme')))
303                                 ? ' selected="selected" ' : '' );
304                         $theme_selector .= '<option val="' . basename($file) . '"' . $selected . '>' . basename($file) . '</option>';
305                 }
306         }
307         $theme_selector .= '</select>';
308
309
310         $nickname_block = replace_macros($nickname_block,array(
311                 '$nickname' => $nickname,
312                 '$uid' => local_user(),
313                 '$subdir' => $nickname_subdir,
314                 '$basepath' => $a->get_hostname(),
315                 '$baseurl' => $a->get_baseurl()));      
316
317         $stpl = load_view_file('view/settings.tpl');
318
319         $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
320
321         $o .= replace_macros($stpl,array(
322                 '$baseurl' => $a->get_baseurl(),
323                 '$oidhtml' => $oidhtml,
324                 '$uid' => local_user(),
325                 '$username' => $username,
326                 '$openid' => $openid,
327                 '$email' => $email,
328                 '$nickname_block' => $nickname_block,
329                 '$timezone' => $timezone,
330                 '$zoneselect' => select_timezone($timezone),
331                 '$defloc' => $defloc,
332                 '$loc_checked' => $loc_checked,
333                 '$profile_in_dir' => $profile_in_dir,
334                 '$profile_in_net_dir' => $profile_in_net_dir,
335                 '$permissions' => t('Default Post Permissions'),
336                 '$visibility' => $profile['net-publish'],
337                 '$aclselect' => populate_acl($a->user,$celeb),
338                 '$sel_notify1' => (($notify & NOTIFY_INTRO)   ? ' checked="checked" ' : ''),
339                 '$sel_notify2' => (($notify & NOTIFY_CONFIRM) ? ' checked="checked" ' : ''),
340                 '$sel_notify3' => (($notify & NOTIFY_WALL)    ? ' checked="checked" ' : ''),
341                 '$sel_notify4' => (($notify & NOTIFY_COMMENT) ? ' checked="checked" ' : ''),
342                 '$sel_notify5' => (($notify & NOTIFY_MAIL)    ? ' checked="checked" ' : ''),
343                 '$maxreq' => $maxreq,
344                 '$theme' => $theme_selector,
345                 '$pagetype' => $pagetype
346         ));
347
348         call_hooks('settings_form',$o);
349
350         $o .= '</form>' . "\r\n";
351
352         return $o;
353
354 }}
355