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