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