streams/mod/settings.php

1063 lines
36 KiB
PHP
Raw Normal View History

2010-07-01 23:48:07 +00:00
<?php
function get_theme_config_file($theme){
2012-11-07 22:09:51 +00:00
$base_theme = get_app()->theme_info['extends'];
2012-08-06 18:31:37 +00:00
if (file_exists("view/theme/$theme/php/config.php")){
return "view/theme/$theme/php/config.php";
}
2012-11-07 22:09:51 +00:00
if (file_exists("view/theme/$base_theme/php/config.php")){
return "view/theme/$base_theme/php/config.php";
}
return null;
}
2010-07-01 23:48:07 +00:00
function settings_init(&$a) {
2012-10-30 04:59:49 +00:00
// default is channel settings in the absence of other arguments
if(argc() == 1) {
$a->argc = 2;
$a->argv[] = 'channel';
}
$tabs = array(
array(
'label' => t('Account settings'),
2012-10-30 02:31:38 +00:00
'url' => $a->get_baseurl(true).'/settings/account',
'selected' => ((argv(1) === 'account') ? 'active' : ''),
),
array(
'label' => t('Channel settings'),
'url' => $a->get_baseurl(true).'/settings/channel',
'selected' => ((argv(1) === 'channel') ? 'active' : ''),
),
array(
'label' => t('Additional features'),
'url' => $a->get_baseurl(true).'/settings/features',
'selected' => ((argv(1) === 'features') ? 'active' : ''),
),
2012-11-06 01:17:21 +00:00
array(
'label' => t('Feature settings'),
'url' => $a->get_baseurl(true).'/settings/featured',
'selected' => ((argv(1) === 'addon') ? 'active' : ''),
),
array(
'label' => t('Display settings'),
'url' => $a->get_baseurl(true).'/settings/display',
2012-10-30 02:31:38 +00:00
'selected' => ((argv(1) === 'display') ? 'active' : ''),
),
array(
'label' => t('Connected apps'),
'url' => $a->get_baseurl(true) . '/settings/oauth',
2012-10-30 02:31:38 +00:00
'selected' => ((argv(1) === 'oauth') ? 'active' : ''),
),
2012-10-30 02:31:38 +00:00
array(
'label' => t('Export personal data'),
'url' => $a->get_baseurl(true) . '/uexport',
'selected' => ''
),
2012-10-30 02:31:38 +00:00
);
$tabtpl = get_markup_template("generic_links_widget.tpl");
$a->page['aside'] = replace_macros($tabtpl, array(
'$title' => t('Settings'),
2012-05-29 02:17:06 +00:00
'$class' => 'settings-widget',
'$items' => $tabs,
));
2010-07-01 23:48:07 +00:00
}
function settings_post(&$a) {
2012-01-27 00:52:12 +00:00
if(! local_user())
return;
if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
2010-07-01 23:48:07 +00:00
return;
2010-12-23 04:23:41 +00:00
2012-10-30 02:31:38 +00:00
2010-10-18 21:34:59 +00:00
if(count($a->user) && x($a->user,'uid') && $a->user['uid'] != local_user()) {
2010-08-08 06:54:22 +00:00
notice( t('Permission denied.') . EOL);
2010-07-01 23:48:07 +00:00
return;
}
2011-01-05 21:10:47 +00:00
$old_page_flags = $a->user['page-flags'];
2012-10-30 02:31:38 +00:00
if((argc() > 1) && (argv(1) === 'oauth') && x($_POST,'remove')){
2012-03-12 20:17:37 +00:00
check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth');
$key = $_POST['remove'];
q("DELETE FROM tokens WHERE id='%s' AND uid=%d",
dbesc($key),
local_user());
2012-03-15 04:20:20 +00:00
goaway($a->get_baseurl(true)."/settings/oauth/");
return;
}
2012-10-30 02:31:38 +00:00
if((argc() > 2) && (argv(1) === 'oauth') && (argv(2) === 'edit'||(argv(2) === 'add')) && x($_POST,'submit')) {
2012-03-12 20:17:37 +00:00
check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth');
$name = ((x($_POST,'name')) ? $_POST['name'] : '');
$key = ((x($_POST,'key')) ? $_POST['key'] : '');
$secret = ((x($_POST,'secret')) ? $_POST['secret'] : '');
$redirect = ((x($_POST,'redirect')) ? $_POST['redirect'] : '');
$icon = ((x($_POST,'icon')) ? $_POST['icon'] : '');
if ($name=="" || $key=="" || $secret==""){
notice(t("Missing some important data!"));
} else {
if ($_POST['submit']==t("Update")){
$r = q("UPDATE clients SET
client_id='%s',
pw='%s',
name='%s',
redirect_uri='%s',
icon='%s',
uid=%d
WHERE client_id='%s'",
dbesc($key),
dbesc($secret),
dbesc($name),
dbesc($redirect),
dbesc($icon),
local_user(),
dbesc($key));
} else {
$r = q("INSERT INTO clients
(client_id, pw, name, redirect_uri, icon, uid)
VALUES ('%s','%s','%s','%s','%s',%d)",
dbesc($key),
dbesc($secret),
dbesc($name),
dbesc($redirect),
dbesc($icon),
local_user());
}
}
2012-03-15 04:20:20 +00:00
goaway($a->get_baseurl(true)."/settings/oauth/");
return;
}
2012-11-06 01:17:21 +00:00
if((argc() > 1) && (argv(1) == 'featured')) {
check_form_security_token_redirectOnErr('/settings/featured', 'settings_featured');
call_hooks('featured_settings_post', $_POST);
2011-01-05 21:10:47 +00:00
return;
}
if((argc() > 1) && (argv(1) === 'features')) {
check_form_security_token_redirectOnErr('/settings/features', 'settings_features');
foreach($_POST as $k => $v) {
if(strpos($k,'feature_') === 0) {
set_pconfig(local_user(),'feature',substr($k,8),((intval($v)) ? 1 : 0));
}
}
return;
}
2012-10-30 02:31:38 +00:00
if((argc() > 1) && (argv(1) == 'display')) {
check_form_security_token_redirectOnErr('/settings/display', 'settings_display');
2012-11-07 22:09:51 +00:00
$theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : $a->channel['channel_theme']);
2012-09-10 04:17:06 +00:00
$mobile_theme = ((x($_POST,'mobile_theme')) ? notags(trim($_POST['mobile_theme'])) : '');
$nosmile = ((x($_POST,'nosmile')) ? intval($_POST['nosmile']) : 0);
$browser_update = ((x($_POST,'browser_update')) ? intval($_POST['browser_update']) : 0);
$browser_update = $browser_update * 1000;
if($browser_update < 10000)
2012-09-10 04:17:06 +00:00
$browser_update = 10000;
2012-12-17 04:20:29 +00:00
$itemspage = ((x($_POST,'itemspage')) ? intval($_POST['itemspage']) : 40);
if($itemspage > 100)
$itemspage = 100;
2012-09-10 04:17:06 +00:00
if($mobile_theme !== '') {
set_pconfig(local_user(),'system','mobile_theme',$mobile_theme);
}
set_pconfig(local_user(),'system','update_interval', $browser_update);
2012-12-17 04:20:29 +00:00
set_pconfig(local_user(),'system','itemspage', $itemspage);
set_pconfig(local_user(),'system','no_smilies',$nosmile);
2012-11-07 22:09:51 +00:00
if ($theme == $a->channel['channel_theme']){
2012-04-04 05:01:52 +00:00
// call theme_post only if theme has not been changed
if( ($themeconfigfile = get_theme_config_file($theme)) != null){
require_once($themeconfigfile);
theme_post($a);
}
}
2012-11-07 22:09:51 +00:00
$r = q("UPDATE channel SET channel_theme = '%s' WHERE channel_id = %d LIMIT 1",
dbesc($theme),
intval(local_user())
);
2012-04-04 05:01:52 +00:00
call_hooks('display_settings_post', $_POST);
goaway($a->get_baseurl(true) . '/settings/display' );
return; // NOTREACHED
}
2012-11-06 01:17:21 +00:00
if(argc() > 1 && argv(1) === 'account') {
check_form_security_token_redirectOnErr('/settings/account', 'settings_account');
2012-03-12 20:17:37 +00:00
2012-11-06 01:17:21 +00:00
call_hooks('settings_account', $_POST);
$errs = array();
2011-01-05 21:10:47 +00:00
2012-11-06 01:17:21 +00:00
if((x($_POST,'npassword')) || (x($_POST,'confirm'))) {
2010-07-01 23:48:07 +00:00
2012-11-06 01:17:21 +00:00
$newpass = $_POST['npassword'];
$confirm = $_POST['confirm'];
if($newpass != $confirm ) {
$errs[] = t('Passwords do not match. Password unchanged.');
}
2010-07-01 23:48:07 +00:00
2012-11-06 01:17:21 +00:00
if((! x($newpass)) || (! x($confirm))) {
$errs[] = t('Empty passwords are not allowed. Password unchanged.');
}
if(! $errs) {
$salt = random_string(32);
$password_encoded = hash('whirlpool', $salt . $newpass);
$r = q("update account set account_salt = '%s', account_password = '%s'
where account_id = %d limit 1",
dbesc($salt),
dbesc($password_encoded),
intval(get_account_id())
);
if($r)
info( t('Password changed.') . EOL);
else
$errs[] = t('Password update failed. Please try again.');
}
2010-07-01 23:48:07 +00:00
}
2012-11-06 01:17:21 +00:00
if($errs) {
foreach($errs as $err)
notice($err . EOL);
$errs = array();
2010-07-01 23:48:07 +00:00
}
2012-11-06 01:17:21 +00:00
$email = ((x($_POST,'email')) ? trim(notags($_POST['email'])) : '');
if($email != $account['account_email']) {
$account = $a->get_account();
if(! valid_email($email))
$errs[] = t('Not valid email.');
$adm = trim(get_config('system','admin_email'));
if(($adm) && (strcasecmp($email,$adm) == 0)) {
$errs[] = t('Protected email. Cannot change to that email.');
$email = $a->user['email'];
}
if(! $errs) {
$r = q("update account set account_email = '%s' where account_id = %d limit 1",
dbesc($email),
intval($account['account_id'])
);
if(! $r)
$errs[] = t('System failure storing new email. Please try again.');
}
2010-07-01 23:48:07 +00:00
}
2012-11-06 01:17:21 +00:00
if($errs) {
foreach($errs as $err)
notice($err . EOL);
}
goaway($a->get_baseurl(true) . '/settings/account' );
2010-07-01 23:48:07 +00:00
}
2012-11-06 01:17:21 +00:00
check_form_security_token_redirectOnErr('/settings', 'settings');
call_hooks('settings_post', $_POST);
2010-11-17 23:41:18 +00:00
$username = ((x($_POST,'username')) ? notags(trim($_POST['username'])) : '');
$timezone = ((x($_POST,'timezone')) ? notags(trim($_POST['timezone'])) : '');
$defloc = ((x($_POST,'defloc')) ? notags(trim($_POST['defloc'])) : '');
$openid = ((x($_POST,'openid_url')) ? notags(trim($_POST['openid_url'])) : '');
2010-12-20 08:27:00 +00:00
$maxreq = ((x($_POST,'maxreq')) ? intval($_POST['maxreq']) : 0);
2011-03-16 00:31:49 +00:00
$expire = ((x($_POST,'expire')) ? intval($_POST['expire']) : 0);
$def_gid = ((x($_POST,'group-selection')) ? intval($_POST['group-selection']) : 0);
$expire_items = ((x($_POST,'expire_items')) ? intval($_POST['expire_items']) : 0);
$expire_notes = ((x($_POST,'expire_notes')) ? intval($_POST['expire_notes']) : 0);
$expire_starred = ((x($_POST,'expire_starred')) ? intval($_POST['expire_starred']) : 0);
$expire_photos = ((x($_POST,'expire_photos'))? intval($_POST['expire_photos']) : 0);
$expire_network_only = ((x($_POST,'expire_network_only'))? intval($_POST['expire_network_only']) : 0);
2010-11-17 23:41:18 +00:00
$allow_location = (((x($_POST,'allow_location')) && (intval($_POST['allow_location']) == 1)) ? 1: 0);
$publish = (((x($_POST,'profile_in_directory')) && (intval($_POST['profile_in_directory']) == 1)) ? 1: 0);
$net_publish = (((x($_POST,'profile_in_netdirectory')) && (intval($_POST['profile_in_netdirectory']) == 1)) ? 1: 0);
$old_visibility = (((x($_POST,'visibility')) && (intval($_POST['visibility']) == 1)) ? 1 : 0);
$page_flags = (((x($_POST,'page-flags')) && (intval($_POST['page-flags']))) ? intval($_POST['page-flags']) : 0);
2011-03-21 00:54:50 +00:00
$blockwall = (((x($_POST,'blockwall')) && (intval($_POST['blockwall']) == 1)) ? 0: 1); // this setting is inverted!
2011-10-25 04:11:05 +00:00
$blocktags = (((x($_POST,'blocktags')) && (intval($_POST['blocktags']) == 1)) ? 0: 1); // this setting is inverted!
$unkmail = (((x($_POST,'unkmail')) && (intval($_POST['unkmail']) == 1)) ? 1: 0);
$cntunkmail = ((x($_POST,'cntunkmail')) ? intval($_POST['cntunkmail']) : 0);
$suggestme = ((x($_POST,'suggestme')) ? intval($_POST['suggestme']) : 0);
2012-08-31 01:17:38 +00:00
$hide_friends = (($_POST['hide_friends'] == 1) ? 1: 0);
$hidewall = (($_POST['hidewall'] == 1) ? 1: 0);
$post_newfriend = (($_POST['post_newfriend'] == 1) ? 1: 0);
$post_joingroup = (($_POST['post_joingroup'] == 1) ? 1: 0);
2012-04-13 04:10:32 +00:00
$post_profilechange = (($_POST['post_profilechange'] == 1) ? 1: 0);
2012-11-02 03:23:49 +00:00
$arr = array();
$arr['channel_r_stream'] = (($_POST['view_stream']) ? $_POST['view_stream'] : 0);
$arr['channel_r_profile'] = (($_POST['view_profile']) ? $_POST['view_profile'] : 0);
$arr['channel_r_photos'] = (($_POST['view_photos']) ? $_POST['view_photos'] : 0);
$arr['channel_r_abook'] = (($_POST['view_contacts']) ? $_POST['view_contacts'] : 0);
$arr['channel_w_stream'] = (($_POST['send_stream']) ? $_POST['send_stream'] : 0);
$arr['channel_w_wall'] = (($_POST['post_wall']) ? $_POST['post_wall'] : 0);
$arr['channel_w_tagwall'] = (($_POST['tag_deliver']) ? $_POST['tag_deliver'] : 0);
$arr['channel_w_comment'] = (($_POST['post_comments']) ? $_POST['post_comments'] : 0);
$arr['channel_w_mail'] = (($_POST['post_mail']) ? $_POST['post_mail'] : 0);
$arr['channel_w_photos'] = (($_POST['post_photos']) ? $_POST['post_photos'] : 0);
$arr['channel_w_chat'] = (($_POST['chat']) ? $_POST['chat'] : 0);
$arr['channel_a_delegate'] = (($_POST['delegate']) ? $_POST['delegate'] : 0);
2012-11-02 03:23:49 +00:00
$notify = 0;
2010-11-17 23:41:18 +00:00
if(x($_POST,'notify1'))
$notify += intval($_POST['notify1']);
2010-11-17 23:41:18 +00:00
if(x($_POST,'notify2'))
$notify += intval($_POST['notify2']);
2010-11-17 23:41:18 +00:00
if(x($_POST,'notify3'))
$notify += intval($_POST['notify3']);
2010-11-17 23:41:18 +00:00
if(x($_POST,'notify4'))
$notify += intval($_POST['notify4']);
2010-11-17 23:41:18 +00:00
if(x($_POST,'notify5'))
$notify += intval($_POST['notify5']);
2012-01-04 01:29:07 +00:00
if(x($_POST,'notify6'))
$notify += intval($_POST['notify6']);
if(x($_POST,'notify7'))
$notify += intval($_POST['notify7']);
2012-07-20 04:09:40 +00:00
if(x($_POST,'notify8'))
$notify += intval($_POST['notify8']);
2010-09-09 03:14:17 +00:00
2010-07-01 23:48:07 +00:00
$err = '';
$name_change = false;
2010-07-01 23:48:07 +00:00
if($username != $a->user['username']) {
$name_change = true;
if(strlen($username) > 40)
$err .= t(' Please use a shorter name.');
if(strlen($username) < 3)
$err .= t(' Name too short.');
2010-07-01 23:48:07 +00:00
}
2010-07-01 23:48:07 +00:00
if($timezone != $a->user['timezone']) {
if(strlen($timezone))
date_default_timezone_set($timezone);
}
2010-08-08 06:54:22 +00:00
2010-09-09 03:14:17 +00:00
$str_group_allow = perms2str($_POST['group_allow']);
$str_contact_allow = perms2str($_POST['contact_allow']);
$str_group_deny = perms2str($_POST['group_deny']);
$str_contact_deny = perms2str($_POST['contact_deny']);
2010-08-08 06:54:22 +00:00
set_pconfig(local_user(),'expire','items', $expire_items);
set_pconfig(local_user(),'expire','notes', $expire_notes);
set_pconfig(local_user(),'expire','starred', $expire_starred);
set_pconfig(local_user(),'expire','photos', $expire_photos);
set_pconfig(local_user(),'expire','network_only', $expire_network_only);
set_pconfig(local_user(),'system','suggestme', $suggestme);
set_pconfig(local_user(),'system','post_newfriend', $post_newfriend);
set_pconfig(local_user(),'system','post_joingroup', $post_joingroup);
2012-04-13 04:10:32 +00:00
set_pconfig(local_user(),'system','post_profilechange', $post_profilechange);
if($page_flags == PAGE_PRVGROUP) {
$hidewall = 1;
2012-05-30 01:14:21 +00:00
if((! $str_contact_allow) && (! $str_group_allow) && (! $str_contact_deny) && (! $str_group_deny)) {
if($def_gid) {
info( t('Private forum has no privacy permissions. Using default privacy group.'). EOL);
$str_group_allow = '<' . $def_gid . '>';
}
else {
notice( t('Private forum has no privacy permissions and no default privacy group.') . EOL);
}
}
}
2012-11-02 03:23:49 +00:00
/*
$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, `maxreq` = %d, `expire` = %d, `openidserver` = '%s', `def_gid` = %d, `blockwall` = %d, `hidewall` = %d, `blocktags` = %d, `unkmail` = %d, `cntunkmail` = %d WHERE `uid` = %d LIMIT 1",
2010-07-01 23:48:07 +00:00
dbesc($username),
dbesc($email),
2010-11-17 23:41:18 +00:00
dbesc($openid),
2010-07-01 23:48:07 +00:00
dbesc($timezone),
2010-08-08 06:54:22 +00:00
dbesc($str_contact_allow),
dbesc($str_group_allow),
dbesc($str_contact_deny),
dbesc($str_group_deny),
intval($notify),
2010-10-18 07:43:49 +00:00
intval($page_flags),
2010-08-21 23:31:46 +00:00
dbesc($defloc),
2010-10-20 03:52:05 +00:00
intval($allow_location),
2010-12-20 08:27:00 +00:00
intval($maxreq),
2011-03-16 00:31:49 +00:00
intval($expire),
dbesc($openidserver),
intval($def_gid),
2011-03-21 00:54:50 +00:00
intval($blockwall),
intval($hidewall),
2011-10-25 04:11:05 +00:00
intval($blocktags),
intval($unkmail),
intval($cntunkmail),
2010-10-18 21:34:59 +00:00
intval(local_user())
2010-08-08 06:54:22 +00:00
);
2012-11-02 03:23:49 +00:00
*/
$r = q("update channel set channel_r_stream = %d, channel_r_profile = %d, channel_r_photos = %d, channel_r_abook = %d, channel_w_stream = %d, channel_w_wall = %d, channel_w_tagwall = %d, channel_w_comment = %d, channel_w_mail = %d, channel_w_photos = %d, channel_w_chat = %d, channel_a_delegate = %d where channel_id = %d limit 1",
2012-11-02 03:23:49 +00:00
intval($arr['channel_r_stream']),
intval($arr['channel_r_profile']),
intval($arr['channel_r_photos']),
intval($arr['channel_r_abook']),
intval($arr['channel_w_stream']),
intval($arr['channel_w_wall']),
intval($arr['channel_w_tagwall']),
intval($arr['channel_w_comment']),
intval($arr['channel_w_mail']),
intval($arr['channel_w_photos']),
intval($arr['channel_w_chat']),
intval($arr['channel_a_delegate']),
2012-11-02 03:23:49 +00:00
intval(local_user())
);
2010-08-08 06:54:22 +00:00
if($r)
info( t('Settings updated.') . EOL);
$r = q("UPDATE `profile`
SET `publish` = %d,
2012-08-31 01:17:38 +00:00
`hide_friends` = %d
WHERE `is_default` = 1 AND `uid` = %d LIMIT 1",
intval($publish),
intval($hide_friends),
2010-10-18 21:34:59 +00:00
intval(local_user())
);
2012-11-02 03:23:49 +00:00
// if($name_change) {
// q("UPDATE `contact` SET `name` = '%s', `name_date` = '%s' WHERE `uid` = %d AND `self` = 1 LIMIT 1",
// dbesc($username),
// dbesc(datetime_convert()),
// intval(local_user())
// );
// }
// if(($old_visibility != $net_publish) || ($page_flags != $old_page_flags)) {
// Update global directory in background
$url = $_SESSION['my_url'];
2012-11-02 03:23:49 +00:00
// if($url && strlen(get_config('system','directory_submit_url')))
proc_run('php','include/directory.php',local_user());
// }
2012-09-10 04:17:06 +00:00
//$_SESSION['theme'] = $theme;
2010-07-01 23:48:07 +00:00
if($email_changed && $a->config['register_policy'] == REGISTER_VERIFY) {
// FIXME - set to un-verified, blocked and redirect to logout
2012-09-10 04:17:06 +00:00
// Why? Are we verifying people or email addresses?
2010-07-01 23:48:07 +00:00
}
2012-03-15 04:20:20 +00:00
goaway($a->get_baseurl(true) . '/settings' );
2010-09-09 03:14:17 +00:00
return; // NOTREACHED
2010-07-01 23:48:07 +00:00
}
if(! function_exists('settings_content')) {
function settings_content(&$a) {
2010-10-31 23:38:22 +00:00
$o = '';
nav_set_selected('settings');
2010-07-01 23:48:07 +00:00
2012-10-30 02:31:38 +00:00
if(! local_user()) {
2012-01-27 00:52:12 +00:00
notice( t('Permission denied.') . EOL );
return;
}
2012-10-30 02:31:38 +00:00
// if(x($_SESSION,'submanage') && intval($_SESSION['submanage'])) {
// notice( t('Permission denied.') . EOL );
// return;
// }
2012-10-30 02:31:38 +00:00
if((argc() > 1) && (argv(1) === 'oauth')) {
2011-10-26 15:15:36 +00:00
2012-10-30 02:31:38 +00:00
if((argc() > 2) && (argv(2) === 'add')) {
$tpl = get_markup_template("settings_oauth_edit.tpl");
$o .= replace_macros($tpl, array(
2012-03-12 20:17:37 +00:00
'$form_security_token' => get_form_security_token("settings_oauth"),
'$title' => t('Add application'),
'$submit' => t('Submit'),
'$cancel' => t('Cancel'),
'$name' => array('name', t('Name'), '', ''),
'$key' => array('key', t('Consumer Key'), '', ''),
'$secret' => array('secret', t('Consumer Secret'), '', ''),
'$redirect' => array('redirect', t('Redirect'), '', ''),
'$icon' => array('icon', t('Icon url'), '', ''),
));
return $o;
}
2012-10-30 02:31:38 +00:00
if((argc() > 3) && (argv(2) === 'edit')) {
$r = q("SELECT * FROM clients WHERE client_id='%s' AND uid=%d",
2012-10-30 02:31:38 +00:00
dbesc(argv(3)),
local_user());
if (!count($r)){
notice(t("You can't edit this application."));
return;
}
$app = $r[0];
$tpl = get_markup_template("settings_oauth_edit.tpl");
$o .= replace_macros($tpl, array(
2012-03-12 20:17:37 +00:00
'$form_security_token' => get_form_security_token("settings_oauth"),
'$title' => t('Add application'),
'$submit' => t('Update'),
'$cancel' => t('Cancel'),
'$name' => array('name', t('Name'), $app['name'] , ''),
'$key' => array('key', t('Consumer Key'), $app['client_id'], ''),
'$secret' => array('secret', t('Consumer Secret'), $app['pw'], ''),
'$redirect' => array('redirect', t('Redirect'), $app['redirect_uri'], ''),
'$icon' => array('icon', t('Icon url'), $app['icon'], ''),
));
return $o;
}
2012-10-30 02:31:38 +00:00
if((argc() > 3) && (argv(2) === 'delete')) {
2012-03-12 20:17:37 +00:00
check_form_security_token_redirectOnErr('/settings/oauth', 'settings_oauth', 't');
$r = q("DELETE FROM clients WHERE client_id='%s' AND uid=%d",
2012-10-30 02:31:38 +00:00
dbesc(argv(3)),
local_user());
2012-03-15 04:20:20 +00:00
goaway($a->get_baseurl(true)."/settings/oauth/");
return;
}
$r = q("SELECT clients.*, tokens.id as oauth_token, (clients.uid=%d) AS my
FROM clients
LEFT JOIN tokens ON clients.client_id=tokens.client_id
WHERE clients.uid IN (%d,0)",
local_user(),
local_user());
2011-10-26 15:15:36 +00:00
$tpl = get_markup_template("settings_oauth.tpl");
$o .= replace_macros($tpl, array(
2012-03-12 20:17:37 +00:00
'$form_security_token' => get_form_security_token("settings_oauth"),
2012-03-15 04:20:20 +00:00
'$baseurl' => $a->get_baseurl(true),
2011-10-26 15:15:36 +00:00
'$title' => t('Connected Apps'),
'$add' => t('Add application'),
'$edit' => t('Edit'),
'$delete' => t('Delete'),
'$consumerkey' => t('Client key starts with'),
'$noname' => t('No name'),
'$remove' => t('Remove authorization'),
'$apps' => $r,
2011-10-26 15:15:36 +00:00
));
return $o;
}
2012-10-30 02:31:38 +00:00
if((argc() > 1) && (argv(1) === 'addon')) {
$settings_addons = "";
$r = q("SELECT * FROM `hook` WHERE `hook` = 'plugin_settings' ");
if(! count($r))
$settings_addons = t('No Plugin settings configured');
call_hooks('plugin_settings', $settings_addons);
$tpl = get_markup_template("settings_addons.tpl");
$o .= replace_macros($tpl, array(
2012-03-14 06:52:13 +00:00
'$form_security_token' => get_form_security_token("settings_addon"),
'$title' => t('Plugin Settings'),
'$settings_addons' => $settings_addons
));
return $o;
}
2010-07-01 23:48:07 +00:00
2012-11-06 01:17:21 +00:00
/*
* ACCOUNT SETTINGS
*/
if((argc() > 1) && (argv(1) === 'account')) {
$account_settings = "";
call_hooks('account_settings', $account_settings);
$email = $a->account['account_email'];
$tpl = get_markup_template("settings_account.tpl");
$o .= replace_macros($tpl, array(
'$form_security_token' => get_form_security_token("settings_account"),
'$title' => t('Account Settings'),
'$h_pass' => t('Password Settings'),
'$password1'=> array('npassword', t('New Password:'), '', ''),
'$password2'=> array('confirm', t('Confirm:'), '', t('Leave password fields blank unless changing')),
'$submit' => t('Submit'),
'$email' => array('email', t('Email Address:'), $email, ''),
'$removeme' => t('Remove Account'),
'$permanent' => t('Warning: This action is permanent and cannot be reversed.'),
'$account_settings' => $account_settings
));
return $o;
}
if((argc() > 1) && (argv(1) === 'features')) {
$arr = array();
$features = get_features();
foreach($features as $fname => $fdata) {
$arr[$fname] = array();
$arr[$fname][0] = $fdata[0];
foreach(array_slice($fdata,1) as $f) {
$arr[$fname][1][] = array('feature_' .$f[0],$f[1],((intval(get_pconfig(local_user(),'feature',$f[0]))) ? "1" : ''),$f[2],array(t('Off'),t('On')));
}
}
$tpl = get_markup_template("settings_features.tpl");
$o .= replace_macros($tpl, array(
'$form_security_token' => get_form_security_token("settings_features"),
'$title' => t('Additional Features'),
'$features' => $arr,
'$submit' => t('Submit'),
'$field_yesno' => 'field_yesno.tpl',
));
return $o;
}
2012-10-30 02:31:38 +00:00
if((argc() > 1) && (argv(1) === 'connectors')) {
$settings_connectors = "";
call_hooks('connector_settings', $settings_connectors);
2010-07-20 05:52:31 +00:00
$r = null;
2011-04-18 06:27:11 +00:00
$tpl = get_markup_template("settings_connectors.tpl");
$o .= replace_macros($tpl, array(
2012-03-12 20:17:37 +00:00
'$form_security_token' => get_form_security_token("settings_connectors"),
'$title' => t('Connector Settings'),
2012-03-12 20:17:37 +00:00
'$submit' => t('Submit'),
'$settings_connectors' => $settings_connectors
));
2012-04-04 05:01:52 +00:00
call_hooks('display_settings', $o);
return $o;
}
/*
* DISPLAY SETTINGS
*/
2012-10-30 02:31:38 +00:00
if((argc() > 1) && (argv(1) === 'display')) {
$default_theme = get_config('system','theme');
if(! $default_theme)
$default_theme = 'default';
2012-09-10 04:17:06 +00:00
$default_mobile_theme = get_config('system','mobile-theme');
if(! $mobile_default_theme)
$mobile_default_theme = 'none';
$allowed_themes_str = get_config('system','allowed_themes');
$allowed_themes_raw = explode(',',$allowed_themes_str);
$allowed_themes = array();
if(count($allowed_themes_raw))
foreach($allowed_themes_raw as $x)
if(strlen(trim($x)) && is_dir("view/theme/$x"))
$allowed_themes[] = trim($x);
$themes = array();
2012-09-10 04:17:06 +00:00
$mobile_themes = array("---" => t('No special theme for mobile devices'));
$files = glob('view/theme/*');
if($allowed_themes) {
foreach($allowed_themes as $th) {
$f = $th;
$is_experimental = file_exists('view/theme/' . $th . '/experimental');
$unsupported = file_exists('view/theme/' . $th . '/unsupported');
2012-09-10 04:17:06 +00:00
$is_mobile = file_exists('view/theme/' . $th . '/mobile');
if (!$is_experimental or ($is_experimental && (get_config('experimentals','exp_themes')==1 or get_config('experimentals','exp_themes')===false))){
$theme_name = (($is_experimental) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
2012-09-10 04:17:06 +00:00
if($is_mobile) {
$mobile_themes[$f]=$theme_name;
}
else {
$themes[$f]=$theme_name;
}
}
}
}
$theme_selected = (!x($_SESSION,'theme')? $default_theme : $_SESSION['theme']);
2012-09-10 04:17:06 +00:00
$mobile_theme_selected = (!x($_SESSION,'mobile-theme')? $default_mobile_theme : $_SESSION['mobile-theme']);
$browser_update = intval(get_pconfig(local_user(), 'system','update_interval'));
$browser_update = (($browser_update == 0) ? 40 : $browser_update / 1000); // default if not set: 40 seconds
2012-12-17 04:20:29 +00:00
$itemspage = intval(get_pconfig(local_user(), 'system','itemspage'));
$itemspage = (($itemspage > 0 && $itemspage < 101) ? $itemspage : 40); // default if not set: 40 items
$nosmile = get_pconfig(local_user(),'system','no_smilies');
$nosmile = (($nosmile===false)? '0': $nosmile); // default if not set: 0
$theme_config = "";
if( ($themeconfigfile = get_theme_config_file($theme_selected)) != null){
require_once($themeconfigfile);
$theme_config = theme_content($a);
}
$tpl = get_markup_template("settings_display.tpl");
$o = replace_macros($tpl, array(
'$ptitle' => t('Display Settings'),
'$form_security_token' => get_form_security_token("settings_display"),
'$submit' => t('Submit'),
'$baseurl' => $a->get_baseurl(true),
'$uid' => local_user(),
2012-09-10 04:17:06 +00:00
'$theme' => array('theme', t('Display Theme:'), $theme_selected, '', $themes, 'preview'),
'$mobile_theme' => array('mobile_theme', t('Mobile Theme:'), $mobile_theme_selected, '', $mobile_themes, ''),
'$ajaxint' => array('browser_update', t("Update browser every xx seconds"), $browser_update, t('Minimum of 10 seconds, no maximum')),
2012-12-17 04:20:29 +00:00
'$itemspage' => array('itemspage', t("Maximum number of conversations to load at any time:"), $itemspage, t('Maximum of 100 items')),
'$nosmile' => array('nosmile', t("Don't show emoticons"), $nosmile, ''),
'$theme_config' => $theme_config,
));
return $o;
}
2012-10-30 02:31:38 +00:00
if(argv(1) === 'channel') {
require_once('include/acl_selectors.php');
require_once('include/permissions.php');
2012-10-30 02:31:38 +00:00
$p = q("SELECT * FROM `profile` WHERE `is_default` = 1 AND `uid` = %d LIMIT 1",
intval(local_user())
);
if(count($p))
$profile = $p[0];
2012-10-30 02:31:38 +00:00
load_pconfig(local_user(),'expire');
2012-10-30 02:31:38 +00:00
$channel = $a->get_channel();
2012-11-02 05:23:13 +00:00
$global_perms = get_perms();
$permiss = array();
$perm_opts = array(
array( t('Nobody except yourself'), 0),
2012-11-02 03:23:49 +00:00
array( t('Only those you specifically allow'), PERMS_SPECIFIC),
array( t('Anybody in your address book'), PERMS_CONTACTS),
array( t('Anybody on this website'), PERMS_SITE),
array( t('Anybody in this network'), PERMS_NETWORK),
array( t('Anybody on the internet'), PERMS_PUBLIC)
);
2012-11-02 09:04:07 +00:00
foreach($global_perms as $k => $perm) {
$options = array();
foreach($perm_opts as $opt) {
if((! $perm[2]) && $opt[1] == PERMS_PUBLIC)
2012-11-02 03:23:49 +00:00
continue;
$options[$opt[1]] = $opt[0];
}
$permiss[] = array($k,$perm[3],$channel[$perm[0]],$perm[4],$options);
}
// logger('permiss: ' . print_r($permiss,true));
2012-10-30 02:31:38 +00:00
$username = $channel['channel_name'];
$nickname = $channel['channel_address'];
$timezone = $channel['channel_timezone'];
$notify = $channel['channel_notifyflags'];
$defloc = $channel['channel_location'];
$maxreq = $channel['channel_max_friend_req'];
$expire = get_pconfig(local_user(),'expire','content_expire_days');
$blockwall = $a->user['blockwall'];
$blocktags = $a->user['blocktags'];
$unkmail = $a->user['unkmail'];
$cntunkmail = $a->user['cntunkmail'];
$expire_items = get_pconfig(local_user(), 'expire','items');
$expire_items = (($expire_items===false)? '1' : $expire_items); // default if not set: 1
2012-10-30 02:31:38 +00:00
$expire_notes = get_pconfig(local_user(), 'expire','notes');
$expire_notes = (($expire_notes===false)? '1' : $expire_notes); // default if not set: 1
2012-10-30 02:31:38 +00:00
$expire_starred = get_pconfig(local_user(), 'expire','starred');
$expire_starred = (($expire_starred===false)? '1' : $expire_starred); // default if not set: 1
2012-10-30 02:31:38 +00:00
$expire_photos = get_pconfig(local_user(), 'expire','photos');
$expire_photos = (($expire_photos===false)? '0' : $expire_photos); // default if not set: 0
2012-10-30 02:31:38 +00:00
$expire_network_only = get_pconfig(local_user(), 'expire','network_only');
$expire_network_only = (($expire_network_only===false)? '0' : $expire_network_only); // default if not set: 0
2012-10-30 02:31:38 +00:00
$suggestme = get_pconfig(local_user(), 'system','suggestme');
$suggestme = (($suggestme===false)? '0': $suggestme); // default if not set: 0
2011-12-12 05:03:33 +00:00
2012-10-30 02:31:38 +00:00
$post_newfriend = get_pconfig(local_user(), 'system','post_newfriend');
$post_newfriend = (($post_newfriend===false)? '0': $post_newfriend); // default if not set: 0
2012-10-30 02:31:38 +00:00
$post_joingroup = get_pconfig(local_user(), 'system','post_joingroup');
$post_joingroup = (($post_joingroup===false)? '0': $post_joingroup); // default if not set: 0
2012-10-30 02:31:38 +00:00
$post_profilechange = get_pconfig(local_user(), 'system','post_profilechange');
$post_profilechange = (($post_profilechange===false)? '0': $post_profilechange); // default if not set: 0
2012-04-13 04:10:32 +00:00
2012-03-23 11:07:22 +00:00
2012-10-30 02:31:38 +00:00
$timezone = date_default_timezone_get();
2012-10-30 02:31:38 +00:00
$pageset_tpl = get_markup_template('pagetypes.tpl');
$pagetype = replace_macros($pageset_tpl,array(
'$page_normal' => array('page-flags', t('Normal Account Page'), PAGE_NORMAL,
t('This account is a normal personal profile'),
($a->user['page-flags'] == PAGE_NORMAL)),
2012-10-30 02:31:38 +00:00
'$page_soapbox' => array('page-flags', t('Soapbox Page'), PAGE_SOAPBOX,
t('Automatically approve all connection/friend requests as read-only fans'),
($a->user['page-flags'] == PAGE_SOAPBOX)),
2012-10-30 02:31:38 +00:00
'$page_community' => array('page-flags', t('Community Forum/Celebrity Account'), PAGE_COMMUNITY,
t('Automatically approve all connection/friend requests as read-write fans'),
($a->user['page-flags'] == PAGE_COMMUNITY)),
2012-10-30 02:31:38 +00:00
'$page_freelove' => array('page-flags', t('Automatic Friend Page'), PAGE_FREELOVE,
t('Automatically approve all connection/friend requests as friends'),
($a->user['page-flags'] == PAGE_FREELOVE)),
2012-10-30 02:31:38 +00:00
'$page_prvgroup' => array('page-flags', t('Private Forum [Experimental]'), PAGE_PRVGROUP,
t('Private forum - approved members only'),
($a->user['page-flags'] == PAGE_PRVGROUP)),
2012-10-30 02:31:38 +00:00
));
2010-10-18 07:43:49 +00:00
2012-10-30 02:31:38 +00:00
$opt_tpl = get_markup_template("field_yesno.tpl");
if(get_config('system','publish_all')) {
$profile_in_dir = '<input type="hidden" name="profile_in_directory" value="1" />';
}
else {
$profile_in_dir = replace_macros($opt_tpl,array(
'$field' => array('profile_in_directory', t('Publish your default profile in your local site directory?'), $profile['publish'], '', array(t('No'),t('Yes'))),
));
}
2012-10-30 02:31:38 +00:00
$profile_in_net_dir = '';
2012-10-30 02:31:38 +00:00
$hide_friends = replace_macros($opt_tpl,array(
'$field' => array('hide_friends', t('Hide your contact/friend list from viewers of your default profile?'), $profile['hide_friends'], '', array(t('No'),t('Yes'))),
));
2012-10-30 02:31:38 +00:00
$hide_wall = replace_macros($opt_tpl,array(
'$field' => array('hidewall', t('Hide your profile details from unknown viewers?'), $a->user['hidewall'], '', array(t('No'),t('Yes'))),
2012-10-30 02:31:38 +00:00
));
2012-10-30 02:31:38 +00:00
$blockwall = replace_macros($opt_tpl,array(
'$field' => array('blockwall', t('Allow friends to post to your profile page?'), (intval($a->user['blockwall']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
2011-10-25 04:11:05 +00:00
2012-10-30 02:31:38 +00:00
));
2011-10-25 04:11:05 +00:00
2012-10-30 02:31:38 +00:00
$blocktags = replace_macros($opt_tpl,array(
'$field' => array('blocktags', t('Allow friends to tag your posts?'), (intval($a->user['blocktags']) ? '0' : '1'), '', array(t('No'),t('Yes'))),
2011-10-25 04:11:05 +00:00
2012-10-30 02:31:38 +00:00
));
2011-10-25 04:11:05 +00:00
2012-10-30 02:31:38 +00:00
$suggestme = replace_macros($opt_tpl,array(
'$field' => array('suggestme', t('Allow us to suggest you as a potential friend to new members?'), $suggestme, '', array(t('No'),t('Yes'))),
2012-10-30 02:31:38 +00:00
));
2012-10-30 02:31:38 +00:00
$unkmail = replace_macros($opt_tpl,array(
'$field' => array('unkmail', t('Permit unknown people to send you private mail?'), $unkmail, '', array(t('No'),t('Yes'))),
2012-10-30 02:31:38 +00:00
));
2010-09-30 12:10:25 +00:00
2012-10-30 02:31:38 +00:00
$invisible = ((! $profile['publish']) ? true : false);
2010-09-30 12:10:25 +00:00
2010-08-16 12:23:26 +00:00
2012-10-30 02:31:38 +00:00
$subdir = ((strlen($a->get_path())) ? '<br />' . t('or') . ' ' . $a->get_baseurl(true) . '/channel/' . $nickname : '');
2010-07-01 23:48:07 +00:00
2012-10-30 02:31:38 +00:00
$tpl_addr = get_markup_template("settings_nick_set.tpl");
2012-10-30 02:31:38 +00:00
$prof_addr = replace_macros($tpl_addr,array(
'$desc' => t('Your channel address is'),
2012-10-30 02:31:38 +00:00
'$nickname' => $nickname,
'$subdir' => $subdir,
'$basepath' => $a->get_hostname()
));
2010-07-01 23:48:07 +00:00
2012-10-30 02:31:38 +00:00
$stpl = get_markup_template('settings.tpl');
2010-07-01 23:48:07 +00:00
2012-10-30 02:31:38 +00:00
$celeb = ((($a->user['page-flags'] == PAGE_SOAPBOX) || ($a->user['page-flags'] == PAGE_COMMUNITY)) ? true : false);
2010-10-18 07:43:49 +00:00
2012-10-30 02:31:38 +00:00
$expire_arr = array(
'days' => array('expire', t("Automatically expire posts after this many days:"), $expire, t('If empty, posts will not expire. Expired posts will be deleted')),
'advanced' => t('Advanced expiration settings'),
'label' => t('Advanced Expiration'),
'items' => array('expire_items', t("Expire posts:"), $expire_items, '', array(t('No'),t('Yes'))),
'notes' => array('expire_notes', t("Expire personal notes:"), $expire_notes, '', array(t('No'),t('Yes'))),
'starred' => array('expire_starred', t("Expire starred posts:"), $expire_starred, '', array(t('No'),t('Yes'))),
'photos' => array('expire_photos', t("Expire photos:"), $expire_photos, '', array(t('No'),t('Yes'))),
'network_only' => array('expire_network_only', t("Only expire posts by others:"), $expire_network_only, '', array(t('No'),t('Yes'))),
);
2011-03-22 10:07:46 +00:00
2012-10-30 02:31:38 +00:00
require_once('include/group.php');
$group_select = mini_group_select(local_user(),$a->user['def_gid']);
2012-10-30 02:31:38 +00:00
$o .= replace_macros($stpl,array(
'$ptitle' => t('Channel Settings'),
2012-10-30 02:31:38 +00:00
'$submit' => t('Submit'),
'$baseurl' => $a->get_baseurl(true),
'$uid' => local_user(),
'$form_security_token' => get_form_security_token("settings"),
'$nickname_block' => $prof_addr,
2012-10-30 02:31:38 +00:00
'$h_basic' => t('Basic Settings'),
'$username' => array('username', t('Full Name:'), $username,''),
'$email' => array('email', t('Email Address:'), $email, ''),
'$timezone' => array('timezone_select' , t('Your Timezone:'), select_timezone($timezone), ''),
'$defloc' => array('defloc', t('Default Post Location:'), $defloc, ''),
'$allowloc' => array('allow_location', t('Use Browser Location:'), ($a->user['allow_location'] == 1), ''),
2012-10-30 02:31:38 +00:00
'$h_prv' => t('Security and Privacy Settings'),
'$permiss_arr' => $permiss,
2012-10-30 02:31:38 +00:00
'$maxreq' => array('maxreq', t('Maximum Friend Requests/Day:'), $maxreq ,t("\x28to prevent spam abuse\x29")),
'$permissions' => t('Default Post Permissions'),
'$permdesc' => t("\x28click to open/close\x29"),
'$visibility' => $profile['net-publish'],
'$aclselect' => populate_acl($a->user,$celeb),
'$suggestme' => $suggestme,
'$blockwall'=> $blockwall, // array('blockwall', t('Allow friends to post to your profile page:'), !$blockwall, ''),
'$blocktags'=> $blocktags, // array('blocktags', t('Allow friends to tag your posts:'), !$blocktags, ''),
2012-05-18 08:38:11 +00:00
2012-10-30 02:31:38 +00:00
'$group_select' => $group_select,
2012-10-30 02:31:38 +00:00
'$expire' => $expire_arr,
2012-10-30 02:31:38 +00:00
'$profile_in_dir' => $profile_in_dir,
'$profile_in_net_dir' => $profile_in_net_dir,
'$hide_friends' => $hide_friends,
'$hide_wall' => $hide_wall,
'$unkmail' => $unkmail,
'$cntunkmail' => array('cntunkmail', t('Maximum private messages per day from unknown people:'), $cntunkmail ,t("\x28to prevent spam abuse\x29")),
2012-10-30 02:31:38 +00:00
'$h_not' => t('Notification Settings'),
'$activity_options' => t('By default post a status message when:'),
'$post_newfriend' => array('post_newfriend', t('accepting a friend request'), $post_newfriend, ''),
'$post_joingroup' => array('post_joingroup', t('joining a forum/community'), $post_joingroup, ''),
'$post_profilechange' => array('post_profilechange', t('making an <em>interesting</em> profile change'), $post_profilechange, ''),
'$lbl_not' => t('Send a notification email when:'),
'$notify1' => array('notify1', t('You receive an introduction'), ($notify & NOTIFY_INTRO), NOTIFY_INTRO, ''),
'$notify2' => array('notify2', t('Your introductions are confirmed'), ($notify & NOTIFY_CONFIRM), NOTIFY_CONFIRM, ''),
'$notify3' => array('notify3', t('Someone writes on your profile wall'), ($notify & NOTIFY_WALL), NOTIFY_WALL, ''),
'$notify4' => array('notify4', t('Someone writes a followup comment'), ($notify & NOTIFY_COMMENT), NOTIFY_COMMENT, ''),
'$notify5' => array('notify5', t('You receive a private message'), ($notify & NOTIFY_MAIL), NOTIFY_MAIL, ''),
'$notify6' => array('notify6', t('You receive a friend suggestion'), ($notify & NOTIFY_SUGGEST), NOTIFY_SUGGEST, ''),
'$notify7' => array('notify7', t('You are tagged in a post'), ($notify & NOTIFY_TAGSELF), NOTIFY_TAGSELF, ''),
'$notify8' => array('notify8', t('You are poked/prodded/etc. in a post'), ($notify & NOTIFY_POKE), NOTIFY_POKE, ''),
2012-10-30 02:31:38 +00:00
'$h_advn' => t('Advanced Account/Page Type Settings'),
'$h_descadvn' => t('Change the behaviour of this account for special situations'),
'$pagetype' => $pagetype,
2012-10-30 02:31:38 +00:00
));
2012-10-30 02:31:38 +00:00
call_hooks('settings_form',$o);
2010-12-23 04:23:41 +00:00
2012-10-30 02:31:38 +00:00
$o .= '</form>' . "\r\n";
2010-07-01 23:48:07 +00:00
2012-10-30 02:31:38 +00:00
return $o;
}
2010-12-23 04:23:41 +00:00
}}