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