]> git.mxchange.org Git - friendica.git/blob - mod/settings.php
59ede47297ed551f2284f33a5d1aab76f32b3573
[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         // These lines provide the javascript needed by the acl selector
10
11         $a->page['htmlhead'] .= "<script> var ispublic = '" . t('everybody') . "';" ;
12
13         $a->page['htmlhead'] .= <<< EOT
14
15         $(document).ready(function() {
16
17                 $('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
18                         var selstr;
19                         $('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
20                                 selstr = $(this).text();
21                                 $('#jot-perms-icon').removeClass('unlock').addClass('lock');
22                                 $('#jot-public').hide();
23                         });
24                         if(selstr == null) { 
25                                 $('#jot-perms-icon').removeClass('lock').addClass('unlock');
26                                 $('#jot-public').show();
27                         }
28
29                 }).trigger('change');
30
31         });
32
33         </script>
34 EOT;
35
36
37 }
38
39
40 function settings_post(&$a) {
41
42         if(! local_user())
43                 return;
44
45         if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
46                 return;
47
48         if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
49                 notice( t('Permission denied.') . EOL);
50                 return;
51         }
52
53         $old_page_flags = $a->user['page-flags'];
54
55         if(($a->argc > 1) && ($a->argv[1] === 'oauth') && x($_POST,'remove')){
56                 check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth');
57                 
58                 $key = $_POST['remove'];
59                 q("DELETE FROM tokens WHERE id='%s' AND uid=%d",
60                         dbesc($key),
61                         local_user());
62                 goaway($a->get_baseurl(true)."/settings/oauth/");
63                 return;                 
64         }
65
66         if(($a->argc > 2) && ($a->argv[1] === 'oauth')  && ($a->argv[2] === 'edit'||($a->argv[2] === 'add')) && x($_POST,'submit')) {
67                 
68                 check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth');
69                 
70                 $name           = ((x($_POST,'name')) ? $_POST['name'] : '');
71                 $key            = ((x($_POST,'key')) ? $_POST['key'] : '');
72                 $secret         = ((x($_POST,'secret')) ? $_POST['secret'] : '');
73                 $redirect       = ((x($_POST,'redirect')) ? $_POST['redirect'] : '');
74                 $icon           = ((x($_POST,'icon')) ? $_POST['icon'] : '');
75                 if ($name=="" || $key=="" || $secret==""){
76                         notice(t("Missing some important data!"));
77                         
78                 } else {
79                         if ($_POST['submit']==t("Update")){
80                                 $r = q("UPDATE clients SET
81                                                         client_id='%s',
82                                                         pw='%s',
83                                                         name='%s',
84                                                         redirect_uri='%s',
85                                                         icon='%s',
86                                                         uid=%d
87                                                 WHERE client_id='%s'",
88                                                 dbesc($key),
89                                                 dbesc($secret),
90                                                 dbesc($name),
91                                                 dbesc($redirect),
92                                                 dbesc($icon),
93                                                 local_user(),
94                                                 dbesc($key));
95                         } else {
96                                 $r = q("INSERT INTO clients
97                                                         (client_id, pw, name, redirect_uri, icon, uid)
98                                                 VALUES ('%s','%s','%s','%s','%s',%d)",
99                                                 dbesc($key),
100                                                 dbesc($secret),
101                                                 dbesc($name),
102                                                 dbesc($redirect),
103                                                 dbesc($icon),
104                                                 local_user());
105                         }
106                 }
107                 goaway($a->get_baseurl(true)."/settings/oauth/");
108                 return;
109         }
110
111         if(($a->argc > 1) && ($a->argv[1] == 'addon')) {
112                 check_form_security_token_redirectOnErr('/settings/addon', 'settings_addon');
113                 
114                 call_hooks('plugin_settings_post', $_POST);
115                 return;
116         }
117
118         if(($a->argc > 1) && ($a->argv[1] == 'connectors')) {
119                 
120                 check_form_security_token_redirectOnErr('/settings/connectors', 'settings_connectors');
121                 
122                 if(x($_POST, 'imap-submit')) {
123                         
124                         $mail_server       = ((x($_POST,'mail_server')) ? $_POST['mail_server'] : '');
125                         $mail_port         = ((x($_POST,'mail_port')) ? $_POST['mail_port'] : '');
126                         $mail_ssl          = ((x($_POST,'mail_ssl')) ? strtolower(trim($_POST['mail_ssl'])) : '');
127                         $mail_user         = ((x($_POST,'mail_user')) ? $_POST['mail_user'] : '');
128                         $mail_pass         = ((x($_POST,'mail_pass')) ? trim($_POST['mail_pass']) : '');
129                         $mail_action       = ((x($_POST,'mail_action')) ? trim($_POST['mail_action']) : '');
130                         $mail_movetofolder = ((x($_POST,'mail_movetofolder')) ? trim($_POST['mail_movetofolder']) : '');
131                         $mail_replyto      = ((x($_POST,'mail_replyto')) ? $_POST['mail_replyto'] : '');
132                         $mail_pubmail      = ((x($_POST,'mail_pubmail')) ? $_POST['mail_pubmail'] : '');
133
134
135                         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
136                         if(get_config('system','dfrn_only'))
137                                 $mail_disabled = 1;
138
139                         if(! $mail_disabled) {
140                                 $failed = false;
141                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
142                                         intval(local_user())
143                                 );
144                                 if(! count($r)) {
145                                         q("INSERT INTO `mailacct` (`uid`) VALUES (%d)",
146                                                 intval(local_user())
147                                         );
148                                 }
149                                 if(strlen($mail_pass)) {
150                                         $pass = '';
151                                         openssl_public_encrypt($mail_pass,$pass,$a->user['pubkey']);
152                                         q("UPDATE `mailacct` SET `pass` = '%s' WHERE `uid` = %d LIMIT 1",
153                                                 dbesc(bin2hex($pass)),
154                                                 intval(local_user())
155                                         );
156                                 }
157                                 $r = q("UPDATE `mailacct` SET `server` = '%s', `port` = %d, `ssltype` = '%s', `user` = '%s',
158                                         `action` = %d, `movetofolder` = '%s',
159                                         `mailbox` = 'INBOX', `reply_to` = '%s', `pubmail` = %d WHERE `uid` = %d LIMIT 1",
160                                         dbesc($mail_server),
161                                         intval($mail_port),
162                                         dbesc($mail_ssl),
163                                         dbesc($mail_user),
164                                         intval($mail_action),
165                                         dbesc($mail_movetofolder),
166                                         dbesc($mail_replyto),
167                                         intval($mail_pubmail),
168                                         intval(local_user())
169                                 );
170                                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
171                                         intval(local_user())
172                                 );
173                                 if(count($r)) {
174                                         $eacct = $r[0];
175                                         require_once('include/email.php');
176                                         $mb = construct_mailbox_name($eacct);
177                                         if(strlen($eacct['server'])) {
178                                                 $dcrpass = '';
179                                                 openssl_private_decrypt(hex2bin($eacct['pass']),$dcrpass,$a->user['prvkey']);
180                                                 $mbox = email_connect($mb,$mail_user,$dcrpass);
181                                                 unset($dcrpass);
182                                                 if(! $mbox) {
183                                                         $failed = true;
184                                                         notice( t('Failed to connect with email account using the settings provided.') . EOL);
185                                                 }
186                                         }
187                                 }
188                                 if(! $failed)
189                                         info( t('Email settings updated.') . EOL);
190                         }
191                 }
192
193                 call_hooks('connector_settings_post', $_POST);
194                 return;
195         }
196
197         check_form_security_token_redirectOnErr('/settings', 'settings');
198         
199         call_hooks('settings_post', $_POST);
200
201         if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
202
203                 $newpass = $_POST['npassword'];
204                 $confirm = $_POST['confirm'];
205
206                 $err = false;
207                 if($newpass != $confirm ) {
208                         notice( t('Passwords do not match. Password unchanged.') . EOL);
209                         $err = true;
210                 }
211
212                 if((! x($newpass)) || (! x($confirm))) {
213                         notice( t('Empty passwords are not allowed. Password unchanged.') . EOL);
214                         $err = true;
215                 }
216
217                 if(! $err) {
218                         $password = hash('whirlpool',$newpass);
219                         $r = q("UPDATE `user` SET `password` = '%s' WHERE `uid` = %d LIMIT 1",
220                                 dbesc($password),
221                                 intval(local_user())
222                         );
223                         if($r)
224                                 info( t('Password changed.') . EOL);
225                         else
226                                 notice( t('Password update failed. Please try again.') . EOL);
227                 }
228         }
229
230         $theme            = ((x($_POST,'theme'))      ? notags(trim($_POST['theme']))        : $a->user['theme']);
231         $username         = ((x($_POST,'username'))   ? notags(trim($_POST['username']))     : '');
232         $email            = ((x($_POST,'email'))      ? notags(trim($_POST['email']))        : '');
233         $timezone         = ((x($_POST,'timezone'))   ? notags(trim($_POST['timezone']))     : '');
234         $defloc           = ((x($_POST,'defloc'))     ? notags(trim($_POST['defloc']))       : '');
235         $openid           = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url']))   : '');
236         $maxreq           = ((x($_POST,'maxreq'))     ? intval($_POST['maxreq'])             : 0);
237         $expire           = ((x($_POST,'expire'))     ? intval($_POST['expire'])             : 0);
238
239
240         $expire_items     = ((x($_POST,'expire_items')) ? intval($_POST['expire_items'])         : 0);
241         $expire_notes     = ((x($_POST,'expire_notes')) ? intval($_POST['expire_notes'])         : 0);
242         $expire_starred   = ((x($_POST,'expire_starred')) ? intval($_POST['expire_starred']) : 0);
243         $expire_photos    = ((x($_POST,'expire_photos'))? intval($_POST['expire_photos'])        : 0);
244
245         $browser_update   = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0);
246         $browser_update   = $browser_update * 1000;
247         if($browser_update < 10000)
248                 $browser_update = 40000;
249
250         $itemspage_network   = ((x($_POST,'itemspage_network')) ? intval($_POST['itemspage_network']) : 40);
251         if($itemspage_network > 100)
252                 $itemspage_network = 40;
253
254
255         $allow_location   = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
256         $publish          = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
257         $net_publish      = (((x($_POST,'profile_in_netdirectory')) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
258         $old_visibility   = (((x($_POST,'visibility')) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
259         $page_flags       = (((x($_POST,'page-flags')) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
260         $blockwall        = (((x($_POST,'blockwall')) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
261         $blocktags        = (((x($_POST,'blocktags')) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted!
262
263         $suggestme        = ((x($_POST,'suggestme')) ? intval($_POST['suggestme'])  : 0);  
264         $hide_friends     = (($_POST['hide-friends'] == 1) ? 1: 0);
265         $hidewall         = (($_POST['hidewall'] == 1) ? 1: 0);
266
267
268         $notify = 0;
269
270         if(x($_POST,'notify1'))
271                 $notify += intval($_POST['notify1']);
272         if(x($_POST,'notify2'))
273                 $notify += intval($_POST['notify2']);
274         if(x($_POST,'notify3'))
275                 $notify += intval($_POST['notify3']);
276         if(x($_POST,'notify4'))
277                 $notify += intval($_POST['notify4']);
278         if(x($_POST,'notify5'))
279                 $notify += intval($_POST['notify5']);
280         if(x($_POST,'notify6'))
281                 $notify += intval($_POST['notify6']);
282         if(x($_POST,'notify7'))
283                 $notify += intval($_POST['notify7']);
284
285         $email_changed = false;
286
287         $err = '';
288
289         $name_change = false;
290
291         if($username != $a->user['username']) {
292                 $name_change = true;
293                 if(strlen($username) > 40)
294                         $err .= t(' Please use a shorter name.');
295                 if(strlen($username) < 3)
296                         $err .= t(' Name too short.');
297         }
298
299         if($email != $a->user['email']) {
300                 $email_changed = true;
301         if(! valid_email($email))
302                         $err .= t(' Not valid email.');
303                 if((x($a->config,'admin_email')) && (strcasecmp($email,$a->config['admin_email']) == 0)) {
304                         $err .= t(' Cannot change to that email.');
305                         $email = $a->user['email'];
306                 }
307         }
308
309         if(strlen($err)) {
310                 notice($err . EOL);
311                 return;
312         }
313
314         if($timezone != $a->user['timezone']) {
315                 if(strlen($timezone))
316                         date_default_timezone_set($timezone);
317         }
318
319         $str_group_allow   = perms2str($_POST['group_allow']);
320         $str_contact_allow = perms2str($_POST['contact_allow']);
321         $str_group_deny    = perms2str($_POST['group_deny']);
322         $str_contact_deny  = perms2str($_POST['contact_deny']);
323
324         $openidserver = $a->user['openidserver'];
325         $openid = normalise_openid($openid);
326
327         // If openid has changed or if there's an openid but no openidserver, try and discover it.
328
329         if($openid != $a->user['openid'] || (strlen($openid) && (! strlen($openidserver)))) {
330                 $tmp_str = $openid;
331                 if(strlen($tmp_str) && validate_url($tmp_str)) {
332                         logger('updating openidserver');
333                         require_once('library/openid.php');
334                         $open_id_obj = new LightOpenID;
335                         $open_id_obj->identity = $openid;
336                         $openidserver = $open_id_obj->discover($open_id_obj->identity);
337                 }
338                 else
339                         $openidserver = '';
340         }
341
342         set_pconfig(local_user(),'expire','items', $expire_items);
343         set_pconfig(local_user(),'expire','notes', $expire_notes);
344         set_pconfig(local_user(),'expire','starred', $expire_starred);
345         set_pconfig(local_user(),'expire','photos', $expire_photos);
346
347         set_pconfig(local_user(),'system','suggestme', $suggestme);
348         set_pconfig(local_user(),'system','update_interval', $browser_update);
349         set_pconfig(local_user(),'system','itemspage_network', $itemspage_network);
350
351         $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, `expire` = %d, `openidserver` = '%s', `blockwall` = %d, `hidewall` = %d, `blocktags` = %d  WHERE `uid` = %d LIMIT 1",
352                         dbesc($username),
353                         dbesc($email),
354                         dbesc($openid),
355                         dbesc($timezone),
356                         dbesc($str_contact_allow),
357                         dbesc($str_group_allow),
358                         dbesc($str_contact_deny),
359                         dbesc($str_group_deny),
360                         intval($notify),
361                         intval($page_flags),
362                         dbesc($defloc),
363                         intval($allow_location),
364                         dbesc($theme),
365                         intval($maxreq),
366                         intval($expire),
367                         dbesc($openidserver),
368                         intval($blockwall),
369                         intval($hidewall),
370                         intval($blocktags),
371                         intval(local_user())
372         );
373         if($r)
374                 info( t('Settings updated.') . EOL);
375
376         $r = q("UPDATE `profile` 
377                 SET `publish` = %d, 
378                 `net-publish` = %d,
379                 `hide-friends` = %d
380                 WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
381                 intval($publish),
382                 intval($net_publish),
383                 intval($hide_friends),
384                 intval(local_user())
385         );
386
387
388         if($name_change) {
389                 q("UPDATE `contact` SET `name` = '%s', `name-date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
390                         dbesc($username),
391                         dbesc(datetime_convert()),
392                         intval(local_user())
393                 );
394         }               
395
396         if(($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
397                 // Update global directory in background
398                 $url = $_SESSION['my_url'];
399                 if($url && strlen(get_config('system','directory_submit_url')))
400                         proc_run('php',"include/directory.php","$url");
401
402         }
403
404
405         require_once('include/profile_update.php');
406         profile_change();
407
408         $_SESSION['theme'] = $theme;
409         if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
410
411                 // FIXME - set to un-verified, blocked and redirect to logout
412
413         }
414
415         goaway($a->get_baseurl(true) . '/settings' );
416         return; // NOTREACHED
417 }
418                 
419
420 if(! function_exists('settings_content')) {
421 function settings_content(&$a) {
422
423         $o = '';
424         nav_set_selected('settings');
425
426         if(! local_user()) {
427                 notice( t('Permission denied.') . EOL );
428                 return;
429         }
430
431         if(x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
432                 notice( t('Permission denied.') . EOL );
433                 return;
434         }
435         
436         $tabs = array(
437                 array(
438                         'label' => t('Account settings'),
439                         'url'   => $a->get_baseurl(true).'/settings',
440                         'sel'   => (($a->argc == 1)?'active':''),
441                 ),      
442                 array(
443                         'label' => t('Connector settings'),
444                         'url'   => $a->get_baseurl(true).'/settings/connectors',
445                         'sel'   => (($a->argc > 1) && ($a->argv[1] === 'connectors')?'active':''),
446                 ),
447                 array(
448                         'label' => t('Plugin settings'),
449                         'url'   => $a->get_baseurl(true).'/settings/addon',
450                         'sel'   => (($a->argc > 1) && ($a->argv[1] === 'addon')?'active':''),
451                 ),
452                 array(
453                         'label' => t('Connections'),
454                         'url' => $a->get_baseurl(true) . '/settings/oauth',
455                         'sel' => (($a->argc > 1) && ($a->argv[1] === 'oauth')?'active':''),
456                 ),
457                 array(
458                         'label' => t('Export personal data'),
459                         'url' => $a->get_baseurl(true) . '/uexport',
460                         'sel' => ''
461                 )
462         );
463         
464         $tabtpl = get_markup_template("common_tabs.tpl");
465         $tabs = replace_macros($tabtpl, array(
466                 '$tabs' => $tabs,
467         ));
468                 
469         if(($a->argc > 1) && ($a->argv[1] === 'oauth')) {
470                 
471                 if(($a->argc > 2) && ($a->argv[2] === 'add')) {
472                         $tpl = get_markup_template("settings_oauth_edit.tpl");
473                         $o .= replace_macros($tpl, array(
474                                 '$form_security_token' => get_form_security_token("settings_oauth"),
475                                 '$tabs'         => $tabs,
476                                 '$title'        => t('Add application'),
477                                 '$submit'       => t('Submit'),
478                                 '$cancel'       => t('Cancel'),
479                                 '$name'         => array('name', t('Name'), '', ''),
480                                 '$key'          => array('key', t('Consumer Key'), '', ''),
481                                 '$secret'       => array('secret', t('Consumer Secret'), '', ''),
482                                 '$redirect'     => array('redirect', t('Redirect'), '', ''),
483                                 '$icon'         => array('icon', t('Icon url'), '', ''),
484                         ));
485                         return $o;
486                 }
487                 
488                 if(($a->argc > 3) && ($a->argv[2] === 'edit')) {
489                         $r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
490                                         dbesc($a->argv[3]),
491                                         local_user());
492                         
493                         if (!count($r)){
494                                 notice(t("You can't edit this application."));
495                                 return;
496                         }
497                         $app = $r[0];
498                         
499                         $tpl = get_markup_template("settings_oauth_edit.tpl");
500                         $o .= replace_macros($tpl, array(
501                                 '$form_security_token' => get_form_security_token("settings_oauth"),
502                                 '$tabs'         => $tabs,
503                                 '$title'        => t('Add application'),
504                                 '$submit'       => t('Update'),
505                                 '$cancel'       => t('Cancel'),
506                                 '$name'         => array('name', t('Name'), $app['name'] , ''),
507                                 '$key'          => array('key', t('Consumer Key'), $app['client_id'], ''),
508                                 '$secret'       => array('secret', t('Consumer Secret'), $app['pw'], ''),
509                                 '$redirect'     => array('redirect', t('Redirect'), $app['redirect_uri'], ''),
510                                 '$icon'         => array('icon', t('Icon url'), $app['icon'], ''),
511                         ));
512                         return $o;
513                 }
514                 
515                 if(($a->argc > 3) && ($a->argv[2] === 'delete')) {
516                         check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth', 't');
517                 
518                         $r = q("DELETE FROM clients WHERE client_id='%s' AND uid=%d",
519                                         dbesc($a->argv[3]),
520                                         local_user());
521                         goaway($a->get_baseurl(true)."/settings/oauth/");
522                         return;                 
523                 }
524                 
525                 
526                 $r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my 
527                                 FROM clients
528                                 LEFT JOIN tokens ON clients.client_id=tokens.client_id
529                                 WHERE clients.uid IN (%d,0)",
530                                 local_user(),
531                                 local_user());
532                 
533                 
534                 $tpl = get_markup_template("settings_oauth.tpl");
535                 $o .= replace_macros($tpl, array(
536                         '$form_security_token' => get_form_security_token("settings_oauth"),
537                         '$baseurl'      => $a->get_baseurl(true),
538                         '$title'        => t('Connected Apps'),
539                         '$add'          => t('Add application'),
540                         '$edit'         => t('Edit'),
541                         '$delete'               => t('Delete'),
542                         '$consumerkey' => t('Client key starts with'),
543                         '$noname'       => t('No name'),
544                         '$remove'       => t('Remove authorization'),
545                         '$tabs'         => $tabs,
546                         '$apps'         => $r,
547                 ));
548                 return $o;
549                 
550         }
551         if(($a->argc > 1) && ($a->argv[1] === 'addon')) {
552                 $settings_addons = "";
553                 
554                 $r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
555                 if(! count($r))
556                         $settings_addons = t('No Plugin settings configured');
557
558                 call_hooks('plugin_settings', $settings_addons);
559                 
560                 
561                 $tpl = get_markup_template("settings_addons.tpl");
562                 $o .= replace_macros($tpl, array(
563                         '$form_security_token' => get_form_security_token("settings_addon"),
564                         '$title'        => t('Plugin Settings'),
565                         '$tabs'         => $tabs,
566                         '$settings_addons' => $settings_addons
567                 ));
568                 return $o;
569         }
570
571         if(($a->argc > 1) && ($a->argv[1] === 'connectors')) {
572
573                 $settings_connectors = "";
574                 
575                 call_hooks('connector_settings', $settings_connectors);
576
577                 $diasp_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('Diaspora'), ((get_config('system','diaspora_enabled')) ? t('enabled') : t('disabled')));
578                 $ostat_enabled = sprintf( t('Built-in support for %s connectivity is %s'), t('StatusNet'), ((get_config('system','ostatus_disabled')) ? t('disabled') : t('enabled')));
579
580         $mail_disabled = ((function_exists('imap_open') && (! get_config('system','imap_disabled'))) ? 0 : 1);
581         if(get_config('system','dfrn_only'))
582                 $mail_disabled = 1;
583
584         if(! $mail_disabled) {
585                 $r = q("SELECT * FROM `mailacct` WHERE `uid` = %d LIMIT 1",
586                         local_user()
587                 );
588         }
589         else {
590                 $r = null;
591         }
592
593         $mail_server       = ((count($r)) ? $r[0]['server'] : '');
594         $mail_port         = ((count($r) && intval($r[0]['port'])) ? intval($r[0]['port']) : '');
595         $mail_ssl          = ((count($r)) ? $r[0]['ssltype'] : '');
596         $mail_user         = ((count($r)) ? $r[0]['user'] : '');
597         $mail_replyto      = ((count($r)) ? $r[0]['reply_to'] : '');
598         $mail_pubmail      = ((count($r)) ? $r[0]['pubmail'] : 0);
599         $mail_action       = ((count($r)) ? $r[0]['action'] : 0);
600         $mail_movetofolder = ((count($r)) ? $r[0]['movetofolder'] : '');
601         $mail_chk          = ((count($r)) ? $r[0]['last_check'] : '0000-00-00 00:00:00');
602
603
604         $tpl = get_markup_template("settings_connectors.tpl");
605                 $o .= replace_macros($tpl, array(
606                         '$form_security_token' => get_form_security_token("settings_connectors"),
607                         
608                         '$title'        => t('Connector Settings'),
609                         '$tabs'         => $tabs,
610
611                         '$diasp_enabled' => $diasp_enabled,
612                         '$ostat_enabled' => $ostat_enabled,
613
614                         '$h_imap' => t('Email/Mailbox Setup'),
615                         '$imap_desc' => t("If you wish to communicate with email contacts using this service \x28optional\x29, please specify how to connect to your mailbox."),
616                         '$imap_lastcheck' => array('imap_lastcheck', t('Last successful email check:'), $mail_chk,''),
617                         '$mail_disabled' => (($mail_disabled) ? t('Email access is disabled on this site.') : ''),
618                         '$mail_server'  => array('mail_server',  t('IMAP server name:'), $mail_server, ''),
619                         '$mail_port'    => array('mail_port',    t('IMAP port:'), $mail_port, ''),
620                         '$mail_ssl'             => array('mail_ssl',     t('Security:'), strtoupper($mail_ssl), '', array( ''=>t('None'), 'TLS'=>'TLS', 'SSL'=>'SSL')),
621                         '$mail_user'    => array('mail_user',    t('Email login name:'), $mail_user, ''),
622                         '$mail_pass'    => array('mail_pass',    t('Email password:'), '', ''),
623                         '$mail_replyto' => array('mail_replyto', t('Reply-to address:'), '', 'Optional'),
624                         '$mail_pubmail' => array('mail_pubmail', t('Send public posts to all email contacts:'), $mail_pubmail, ''),
625                         '$mail_action'  => array('mail_action',  t('Action after import:'), $mail_action, '', array(0=>t('None'), 1=>t('Delete'), 2=>t('Mark as seen'), 3=>t('Move to folder'))),
626                         '$mail_movetofolder'    => array('mail_movetofolder',    t('Move to folder:'), $mail_movetofolder, ''),
627                         '$submit' => t('Submit'),
628
629                         '$settings_connectors' => $settings_connectors
630                 ));
631                 return $o;
632         }
633
634
635         require_once('include/acl_selectors.php');
636
637         $p = q("SELECT * FROM `profile` WHERE `is-default` = 1 AND `uid` = %d LIMIT 1",
638                 intval(local_user())
639         );
640         if(count($p))
641                 $profile = $p[0];
642
643         $username = $a->user['username'];
644         $email    = $a->user['email'];
645         $nickname = $a->user['nickname'];
646         $timezone = $a->user['timezone'];
647         $notify   = $a->user['notify-flags'];
648         $defloc   = $a->user['default-location'];
649         $openid   = $a->user['openid'];
650         $maxreq   = $a->user['maxreq'];
651         $expire   = ((intval($a->user['expire'])) ? $a->user['expire'] : '');
652         $blockwall = $a->user['blockwall'];
653         $blocktags = $a->user['blocktags'];
654
655         $expire_items = get_pconfig(local_user(), 'expire','items');
656         $expire_items = (($expire_items===false)? '1' : $expire_items); // default if not set: 1
657         
658         $expire_notes = get_pconfig(local_user(), 'expire','notes');
659         $expire_notes = (($expire_notes===false)? '1' : $expire_notes); // default if not set: 1
660
661         $expire_starred = get_pconfig(local_user(), 'expire','starred');
662         $expire_starred = (($expire_starred===false)? '1' : $expire_starred); // default if not set: 1
663         
664         $expire_photos = get_pconfig(local_user(), 'expire','photos');
665         $expire_photos = (($expire_photos===false)? '0' : $expire_photos); // default if not set: 0
666
667
668         $suggestme = get_pconfig(local_user(), 'system','suggestme');
669         $suggestme = (($suggestme===false)? '0': $suggestme); // default if not set: 0
670
671         $browser_update = intval(get_pconfig(local_user(), 'system','update_interval'));
672         $browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
673
674         $itemspage_network = intval(get_pconfig(local_user(), 'system','itemspage_network'));
675         $itemspage_network = (($itemspage_network > 0 && $itemspage_network < 101) ? $itemspage_network : 40); // default if not set: 40 items
676         
677         if(! strlen($a->user['timezone']))
678                 $timezone = date_default_timezone_get();
679
680
681
682         $pageset_tpl = get_markup_template('pagetypes.tpl');
683         $pagetype = replace_macros($pageset_tpl,array(
684                 '$page_normal'  => array('page-flags', t('Normal Account'), PAGE_NORMAL, 
685                                                                         t('This account is a normal personal profile'), 
686                                                                         ($a->user['page-flags'] == PAGE_NORMAL)),
687                                                                 
688                 '$page_soapbox'         => array('page-flags', t('Soapbox Account'), PAGE_SOAPBOX, 
689                                                                         t('Automatically approve all connection/friend requests as read-only fans'), 
690                                                                         ($a->user['page-flags'] == PAGE_SOAPBOX)),
691                                                                         
692                 '$page_community'       => array('page-flags', t('Community/Celebrity Account'), PAGE_COMMUNITY, 
693                                                                         t('Automatically approve all connection/friend requests as read-write fans'), 
694                                                                         ($a->user['page-flags'] == PAGE_COMMUNITY)),
695                                                                         
696                 '$page_freelove'        => array('page-flags', t('Automatic Friend Account'), PAGE_FREELOVE, 
697                                                                         t('Automatically approve all connection/friend requests as friends'), 
698                                                                         ($a->user['page-flags'] == PAGE_FREELOVE)),
699         ));
700
701         $noid = get_config('system','no_openid');
702
703         if($noid) {
704                 $openid_field = false;
705         }
706         else {
707                 $openid_field = array('openid_url', t('OpenID:'),$openid, t("\x28Optional\x29 Allow this OpenID to login to this account."));
708         }
709
710
711         $opt_tpl = get_markup_template("field_yesno.tpl");
712         if(get_config('system','publish_all')) {
713                 $profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
714         }
715         else {
716                 $profile_in_dir = replace_macros($opt_tpl,array(
717                         '$field'        => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
718                 ));
719         }
720
721         if(strlen(get_config('system','directory_submit_url'))) {
722                 $profile_in_net_dir = replace_macros($opt_tpl,array(
723                         '$field'        => array('profile_in_netdirectory', t('Publish your default profile in the global social directory?'), $profile['net-publish'], '', array(t('No'),t('Yes'))),
724                 ));
725         }
726         else
727                 $profile_in_net_dir = '';
728
729
730         $hide_friends = replace_macros($opt_tpl,array(
731                         '$field'        => array('hide-friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide-friends'], '', array(t('No'),t('Yes'))),
732         ));
733
734         $hide_wall = replace_macros($opt_tpl,array(
735                         '$field'        => array('hidewall',  t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
736
737         ));
738
739         $blockwall = replace_macros($opt_tpl,array(
740                         '$field'        => array('blockwall',  t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
741
742         ));
743  
744
745         $blocktags = replace_macros($opt_tpl,array(
746                         '$field'        => array('blocktags',  t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
747
748         ));
749
750
751         $suggestme = replace_macros($opt_tpl,array(
752                         '$field'        => array('suggestme',  t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', array(t('No'),t('Yes'))),
753
754         ));
755
756
757         $invisible = (((! $profile['publish']) && (! $profile['net-publish']))
758                 ? true : false);
759
760         if($invisible)
761                 info( t('Profile is <strong>not published</strong>.') . EOL );
762
763         
764         $default_theme = get_config('system','theme');
765         if(! $default_theme)
766                 $default_theme = 'default';
767
768         $allowed_themes_str = get_config('system','allowed_themes');
769         $allowed_themes_raw = explode(',',$allowed_themes_str);
770         $allowed_themes = array();
771         if(count($allowed_themes_raw))
772                 foreach($allowed_themes_raw as $x)
773                         if(strlen(trim($x)))
774                                 $allowed_themes[] = trim($x);
775
776         
777         $themes = array();
778         $files = glob('view/theme/*');
779         if($allowed_themes) {
780                 foreach($allowed_themes as $th) {
781                         $f = $th;
782                         $is_experimental = file_exists('view/theme/' . $th . '/experimental');
783                         $unsupported = file_exists('view/theme/' . $th . '/unsupported');
784                         if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){ 
785                                 $theme_name = (($is_experimental) ?  sprintf("%s - \x28Experimental\x29", $f) : $f);
786                                 $themes[$f]=$theme_name;
787                         }
788                 }
789         }
790         $theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
791
792
793         $subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl(true) . '/profile/' . $nickname : '');
794
795         $tpl_addr = get_markup_template("settings_nick_set.tpl");
796
797         $prof_addr = replace_macros($tpl_addr,array(
798                 '$desc' => t('Your Identity Address is'),
799                 '$nickname' => $nickname,
800                 '$subdir' => $subdir,
801                 '$basepath' => $a->get_hostname()
802         ));
803
804         $stpl = get_markup_template('settings.tpl');
805
806         $celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
807
808         $expire_arr = array(
809                 'days' => array('expire',  t("Automatically expire posts after this many days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
810                 'advanced' => t('Advanced expiration settings'),
811                 'label' => t('Advanced Expiration'),
812                 'items' => array('expire_items',  t("Expire posts:"), $expire_items, '', array(t('No'),t('Yes'))),
813                 'notes' => array('expire_notes',  t("Expire personal notes:"), $expire_notes, '', array(t('No'),t('Yes'))),
814                 'starred' => array('expire_starred',  t("Expire starred posts:"), $expire_starred, '', array(t('No'),t('Yes'))),
815                 'photos' => array('expire_photos',  t("Expire photos:"), $expire_photos, '', array(t('No'),t('Yes'))),          
816         );
817
818         $o .= replace_macros($stpl,array(
819                 '$tabs'         => $tabs,
820                 '$ptitle'       => t('Account Settings'),
821
822                 '$submit'       => t('Submit'),
823                 '$baseurl' => $a->get_baseurl(true),
824                 '$uid' => local_user(),
825                 '$form_security_token' => get_form_security_token("settings"),
826                 
827                 '$nickname_block' => $prof_addr,
828                 
829                 '$h_pass'       => t('Password Settings'),
830                 '$password1'=> array('npassword', t('New Password:'), '', ''),
831                 '$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
832                 '$oid_enable' => (! get_config('system','no_openid')),
833                 '$openid'       => $openid_field,
834                 
835                 '$h_basic'      => t('Basic Settings'),
836                 '$username' => array('username',  t('Full Name:'), $username,''),
837                 '$email'        => array('email', t('Email Address:'), $email, ''),
838                 '$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
839                 '$defloc'       => array('defloc', t('Default Post Location:'), $defloc, ''),
840                 '$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
841                 '$theme'        => array('theme', t('Display Theme:'), $theme_selected, '', $themes),
842                 '$ajaxint'   => array('browser_update',  t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')),
843                 '$itemspage_network'   => array('itemspage_network',  t("Number of items to display on the network page:"), $itemspage_network, t('Maximum of 100 items')),
844
845                 '$h_prv'        => t('Security and Privacy Settings'),
846
847                 '$maxreq'       => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
848                 '$permissions' => t('Default Post Permissions'),
849                 '$permdesc' => t("\x28click to open/close\x29"),
850                 '$visibility' => $profile['net-publish'],
851                 '$aclselect' => populate_acl($a->user,$celeb),
852                 '$suggestme' => $suggestme,
853                 '$blockwall'=> $blockwall, // array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
854                 '$blocktags'=> $blocktags, // array('blocktags', t('Allow friends to tag your posts:'), !$blocktags, ''),
855                 '$expire'       => $expire_arr,
856
857                 '$profile_in_dir' => $profile_in_dir,
858                 '$profile_in_net_dir' => $profile_in_net_dir,
859                 '$hide_friends' => $hide_friends,
860                 '$hide_wall' => $hide_wall,
861                 
862                 
863                 
864                 '$h_not'        => t('Notification Settings'),
865                 '$lbl_not'      => t('Send a notification email when:'),
866                 '$notify1'      => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
867                 '$notify2'      => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
868                 '$notify3'      => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
869                 '$notify4'      => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
870                 '$notify5'      => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),
871                 '$notify6'  => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''),          
872                 '$notify7'  => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''),         
873                 
874                 
875                 '$h_advn' => t('Advanced Page Settings'),
876                 '$pagetype' => $pagetype,
877                 
878
879                 
880                 
881
882                 
883
884
885
886
887                 
888
889         ));
890
891         call_hooks('settings_form',$o);
892
893         $o .= '</form>' . "\r\n";
894
895         return $o;
896
897 }}
898