6 require_once("include/remoteupdate.php");
12 function admin_post(&$a){
15 if(!is_site_admin()) {
19 // do not allow a page manager to access the admin panel at all.
21 if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
30 admin_page_site_post($a);
33 admin_page_users_post($a);
37 is_file("addon/".$a->argv[2]."/".$a->argv[2].".php")){
38 @include_once("addon/".$a->argv[2]."/".$a->argv[2].".php");
39 if(function_exists($a->argv[2].'_plugin_admin_post')) {
40 $func = $a->argv[2].'_plugin_admin_post';
44 goaway($a->get_baseurl(true) . '/admin/plugins/' . $a->argv[2] );
49 if (is_file("view/theme/$theme/config.php")){
50 require_once("view/theme/$theme/config.php");
51 if (function_exists("theme_admin_post")){
55 info(t('Theme settings updated.'));
58 goaway($a->get_baseurl(true) . '/admin/themes/' . $theme );
62 admin_page_logs_post($a);
65 admin_page_dbsync_post($a);
68 admin_page_remoteupdate_post($a);
73 goaway($a->get_baseurl(true) . '/admin' );
81 function admin_content(&$a) {
83 if(!is_site_admin()) {
87 if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
94 // array( url, name, extra css classes )
96 'site' => Array($a->get_baseurl(true)."/admin/site/", t("Site") , "site"),
97 'users' => Array($a->get_baseurl(true)."/admin/users/", t("Users") , "users"),
98 'plugins'=> Array($a->get_baseurl(true)."/admin/plugins/", t("Plugins") , "plugins"),
99 'themes' => Array($a->get_baseurl(true)."/admin/themes/", t("Themes") , "themes"),
100 'dbsync' => Array($a->get_baseurl(true)."/admin/dbsync/", t('DB updates'), "dbsync"),
101 //'update' => Array($a->get_baseurl(true)."/admin/update/", t("Software Update") , "update")
104 /* get plugins admin page */
106 $r = q("SELECT * FROM `addon` WHERE `plugin_admin`=1");
107 $aside['plugins_admin']=Array();
110 $aside['plugins_admin'][] = Array($a->get_baseurl(true)."/admin/plugins/".$plugin, $plugin, "plugin");
111 // temp plugins with admin
112 $a->plugins_admin[] = $plugin;
115 $aside['logs'] = Array($a->get_baseurl(true)."/admin/logs/", t("Logs"), "logs");
117 $t = get_markup_template("admin_aside.tpl");
118 $a->page['aside'] .= replace_macros( $t, array(
120 '$admtxt' => t('Admin'),
121 '$plugadmtxt' => t('Plugin Features'),
122 '$logtxt' => t('Logs'),
123 '$h_pending' => t('User registrations waiting for confirmation'),
124 '$admurl'=> $a->get_baseurl(true)."/admin/"
136 switch ($a->argv[1]){
138 $o = admin_page_site($a);
141 $o = admin_page_users($a);
144 $o = admin_page_plugins($a);
147 $o = admin_page_themes($a);
150 $o = admin_page_logs($a);
153 $o = admin_page_dbsync($a);
156 $o = admin_page_remoteupdate($a);
159 notice( t("Item not found.") );
162 $o = admin_page_summary($a);
180 function admin_page_summary(&$a) {
181 $r = q("SELECT `page-flags`, COUNT(uid) as `count` FROM `user` GROUP BY `page-flags`");
183 Array( t('Normal Account'), 0),
184 Array( t('Soapbox Account'), 0),
185 Array( t('Community/Celebrity Account'), 0),
186 Array( t('Automatic Friend Account'), 0),
187 Array( t('Blog Account'), 0),
188 Array( t('Private Forum'), 0)
192 foreach ($r as $u){ $accounts[$u['page-flags']][1] = $u['count']; $users+= $u['count']; }
194 logger('accounts: ' . print_r($accounts,true),LOGGER_DATA);
196 $r = q("SELECT COUNT(id) as `count` FROM `register`");
197 $pending = $r[0]['count'];
199 $r = q("select count(*) as total from deliverq where 1");
200 $deliverq = (($r) ? $r[0]['total'] : 0);
202 $r = q("select count(*) as total from queue where 1");
203 $queue = (($r) ? $r[0]['total'] : 0);
205 // We can do better, but this is a quick queue status
207 $queues = array( 'label' => t('Message queues'), 'deliverq' => $deliverq, 'queue' => $queue );
210 $t = get_markup_template("admin_summary.tpl");
211 return replace_macros($t, array(
212 '$title' => t('Administration'),
213 '$page' => t('Summary'),
214 '$queues' => $queues,
215 '$users' => Array( t('Registered users'), $users),
216 '$accounts' => $accounts,
217 '$pending' => Array( t('Pending registrations'), $pending),
218 '$version' => Array( t('Version'), FRIENDICA_VERSION),
219 '$build' => get_config('system','build'),
220 '$plugins' => Array( t('Active plugins'), $a->plugins )
229 function admin_page_site_post(&$a){
230 if (!x($_POST,"page_site")){
234 check_form_security_token_redirectOnErr('/admin/site', 'admin_site');
236 $sitename = ((x($_POST,'sitename')) ? notags(trim($_POST['sitename'])) : '');
237 $banner = ((x($_POST,'banner')) ? trim($_POST['banner']) : false);
238 $language = ((x($_POST,'language')) ? notags(trim($_POST['language'])) : '');
239 $theme = ((x($_POST,'theme')) ? notags(trim($_POST['theme'])) : '');
240 $theme_mobile = ((x($_POST,'theme_mobile')) ? notags(trim($_POST['theme_mobile'])) : '');
241 $maximagesize = ((x($_POST,'maximagesize')) ? intval(trim($_POST['maximagesize'])) : 0);
242 $maximagelength = ((x($_POST,'maximagelength')) ? intval(trim($_POST['maximagelength'])) : MAX_IMAGE_LENGTH);
243 $jpegimagequality = ((x($_POST,'jpegimagequality')) ? intval(trim($_POST['jpegimagequality'])) : JPEG_QUALITY);
246 $register_policy = ((x($_POST,'register_policy')) ? intval(trim($_POST['register_policy'])) : 0);
247 $abandon_days = ((x($_POST,'abandon_days')) ? intval(trim($_POST['abandon_days'])) : 0);
249 $register_text = ((x($_POST,'register_text')) ? notags(trim($_POST['register_text'])) : '');
251 $allowed_sites = ((x($_POST,'allowed_sites')) ? notags(trim($_POST['allowed_sites'])) : '');
252 $allowed_email = ((x($_POST,'allowed_email')) ? notags(trim($_POST['allowed_email'])) : '');
253 $block_public = ((x($_POST,'block_public')) ? True : False);
254 $force_publish = ((x($_POST,'publish_all')) ? True : False);
255 $global_directory = ((x($_POST,'directory_submit_url')) ? notags(trim($_POST['directory_submit_url'])) : '');
256 $thread_allow = ((x($_POST,'thread_allow')) ? True : False);
257 $newuser_private = ((x($_POST,'newuser_private')) ? True : False);
258 $no_multi_reg = ((x($_POST,'no_multi_reg')) ? True : False);
259 $no_openid = !((x($_POST,'no_openid')) ? True : False);
260 $no_regfullname = !((x($_POST,'no_regfullname')) ? True : False);
261 $no_utf = !((x($_POST,'no_utf')) ? True : False);
262 $no_community_page = !((x($_POST,'no_community_page')) ? True : False);
264 $verifyssl = ((x($_POST,'verifyssl')) ? True : False);
265 $proxyuser = ((x($_POST,'proxyuser')) ? notags(trim($_POST['proxyuser'])) : '');
266 $proxy = ((x($_POST,'proxy')) ? notags(trim($_POST['proxy'])) : '');
267 $timeout = ((x($_POST,'timeout')) ? intval(trim($_POST['timeout'])) : 60);
268 $delivery_interval = ((x($_POST,'delivery_interval')) ? intval(trim($_POST['delivery_interval'])) : 0);
269 $poll_interval = ((x($_POST,'poll_interval')) ? intval(trim($_POST['poll_interval'])) : 0);
270 $maxloadavg = ((x($_POST,'maxloadavg')) ? intval(trim($_POST['maxloadavg'])) : 50);
271 $dfrn_only = ((x($_POST,'dfrn_only')) ? True : False);
272 $ostatus_disabled = !((x($_POST,'ostatus_disabled')) ? True : False);
273 $diaspora_enabled = ((x($_POST,'diaspora_enabled')) ? True : False);
274 $ssl_policy = ((x($_POST,'ssl_policy')) ? intval($_POST['ssl_policy']) : 0);
276 if($ssl_policy != intval(get_config('system','ssl_policy'))) {
277 if($ssl_policy == SSL_POLICY_FULL) {
278 q("update `contact` set
279 `url` = replace(`url` , 'http:' , 'https:'),
280 `photo` = replace(`photo` , 'http:' , 'https:'),
281 `thumb` = replace(`thumb` , 'http:' , 'https:'),
282 `micro` = replace(`micro` , 'http:' , 'https:'),
283 `request` = replace(`request`, 'http:' , 'https:'),
284 `notify` = replace(`notify` , 'http:' , 'https:'),
285 `poll` = replace(`poll` , 'http:' , 'https:'),
286 `confirm` = replace(`confirm`, 'http:' , 'https:'),
287 `poco` = replace(`poco` , 'http:' , 'https:')
290 q("update `profile` set
291 `photo` = replace(`photo` , 'http:' , 'https:'),
292 `thumb` = replace(`thumb` , 'http:' , 'https:')
296 elseif($ssl_policy == SSL_POLICY_SELFSIGN) {
297 q("update `contact` set
298 `url` = replace(`url` , 'https:' , 'http:'),
299 `photo` = replace(`photo` , 'https:' , 'http:'),
300 `thumb` = replace(`thumb` , 'https:' , 'http:'),
301 `micro` = replace(`micro` , 'https:' , 'http:'),
302 `request` = replace(`request`, 'https:' , 'http:'),
303 `notify` = replace(`notify` , 'https:' , 'http:'),
304 `poll` = replace(`poll` , 'https:' , 'http:'),
305 `confirm` = replace(`confirm`, 'https:' , 'http:'),
306 `poco` = replace(`poco` , 'https:' , 'http:')
309 q("update `profile` set
310 `photo` = replace(`photo` , 'https:' , 'http:'),
311 `thumb` = replace(`thumb` , 'https:' , 'http:')
316 set_config('system','ssl_policy',$ssl_policy);
317 set_config('system','delivery_interval',$delivery_interval);
318 set_config('system','poll_interval',$poll_interval);
319 set_config('system','maxloadavg',$maxloadavg);
320 set_config('config','sitename',$sitename);
322 // don't know why, but del_config doesn't work...
323 q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
328 set_config('system','banner', $banner);
330 set_config('system','language', $language);
331 set_config('system','theme', $theme);
332 if ( $theme_mobile === '---' ) {
333 del_config('system','mobile-theme');
335 set_config('system','mobile-theme', $theme_mobile);
337 set_config('system','maximagesize', $maximagesize);
338 set_config('system','max_image_length', $maximagelength);
339 set_config('system','jpeg_quality', $jpegimagequality);
341 set_config('config','register_policy', $register_policy);
342 set_config('system','account_abandon_days', $abandon_days);
343 set_config('config','register_text', $register_text);
344 set_config('system','allowed_sites', $allowed_sites);
345 set_config('system','allowed_email', $allowed_email);
346 set_config('system','block_public', $block_public);
347 set_config('system','publish_all', $force_publish);
348 if ($global_directory==""){
349 // don't know why, but del_config doesn't work...
350 q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
352 dbesc("directory_submit_url")
355 set_config('system','directory_submit_url', $global_directory);
357 set_config('system','thread_allow', $thread_allow);
358 set_config('system','newuser_private', $newuser_private);
360 set_config('system','block_extended_register', $no_multi_reg);
361 set_config('system','no_openid', $no_openid);
362 set_config('system','no_regfullname', $no_regfullname);
363 set_config('system','no_community_page', $no_community_page);
364 set_config('system','no_utf', $no_utf);
365 set_config('system','verifyssl', $verifyssl);
366 set_config('system','proxyuser', $proxyuser);
367 set_config('system','proxy', $proxy);
368 set_config('system','curl_timeout', $timeout);
369 set_config('system','dfrn_only', $dfrn_only);
370 set_config('system','ostatus_disabled', $ostatus_disabled);
371 set_config('system','diaspora_enabled', $diaspora_enabled);
373 info( t('Site settings updated.') . EOL);
374 goaway($a->get_baseurl(true) . '/admin/site' );
375 return; // NOTREACHED
383 function admin_page_site(&$a) {
385 /* Installed langs */
386 $lang_choices = array();
387 $langs = glob('view/*/strings.php');
389 if(is_array($langs) && count($langs)) {
390 if(! in_array('view/en/strings.php',$langs))
391 $langs[] = 'view/en/';
393 foreach($langs as $l) {
394 $t = explode("/",$l);
395 $lang_choices[$t[1]] = $t[1];
399 /* Installed themes */
400 $theme_choices = array();
401 $theme_choices_mobile = array();
402 $theme_choices_mobile["---"] = t("No special theme for mobile devices");
403 $files = glob('view/theme/*');
405 foreach($files as $file) {
406 $f = basename($file);
407 $theme_name = ((file_exists($file . '/experimental')) ? sprintf("%s - \x28Experimental\x29", $f) : $f);
408 if (file_exists($file . '/mobile')) {
409 $theme_choices_mobile[$f] = $theme_name;
412 $theme_choices[$f] = $theme_name;
419 $banner = get_config('system','banner');
421 $banner = '<a href="http://friendica.com"><img id="logo-img" src="images/friendica-32.png" alt="logo" /></a><span id="logo-text"><a href="http://friendica.com">Friendica</a></span>';
422 $banner = htmlspecialchars($banner);
424 //echo "<pre>"; var_dump($lang_choices); die("</pre>");
426 /* Register policy */
427 $register_choices = Array(
428 REGISTER_CLOSED => t("Closed"),
429 REGISTER_APPROVE => t("Requires approval"),
430 REGISTER_OPEN => t("Open")
433 $ssl_choices = array(
434 SSL_POLICY_NONE => t("No SSL policy, links will track page SSL state"),
435 SSL_POLICY_FULL => t("Force all links to use SSL"),
436 SSL_POLICY_SELFSIGN => t("Self-signed certificate, use SSL for local links only (discouraged)")
439 $t = get_markup_template("admin_site.tpl");
440 return replace_macros($t, array(
441 '$title' => t('Administration'),
442 '$page' => t('Site'),
443 '$submit' => t('Submit'),
444 '$registration' => t('Registration'),
445 '$upload' => t('File upload'),
446 '$corporate' => t('Policies'),
447 '$advanced' => t('Advanced'),
449 '$baseurl' => $a->get_baseurl(true),
450 // name, label, value, help string, extra data...
451 '$sitename' => array('sitename', t("Site name"), htmlentities($a->config['sitename'], ENT_QUOTES), ""),
452 '$banner' => array('banner', t("Banner/Logo"), $banner, ""),
453 '$language' => array('language', t("System language"), get_config('system','language'), "", $lang_choices),
454 '$theme' => array('theme', t("System theme"), get_config('system','theme'), t("Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"), $theme_choices),
455 '$theme_mobile' => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile-theme'), t("Theme for mobile devices"), $theme_choices_mobile),
456 '$ssl_policy' => array('ssl_policy', t("SSL link policy"), (string) intval(get_config('system','ssl_policy')), t("Determines whether generated links should be forced to use SSL"), $ssl_choices),
457 '$maximagesize' => array('maximagesize', t("Maximum image size"), get_config('system','maximagesize'), t("Maximum size in bytes of uploaded images. Default is 0, which means no limits.")),
458 '$maximagelength' => array('maximagelength', t("Maximum image length"), get_config('system','max_image_length'), t("Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits.")),
459 '$jpegimagequality' => array('jpegimagequality', t("JPEG image quality"), get_config('system','jpeg_quality'), t("Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality.")),
461 '$register_policy' => array('register_policy', t("Register policy"), $a->config['register_policy'], "", $register_choices),
462 '$register_text' => array('register_text', t("Register text"), htmlentities($a->config['register_text'], ENT_QUOTES, 'UTF-8'), t("Will be displayed prominently on the registration page.")),
463 '$abandon_days' => array('abandon_days', t('Accounts abandoned after x days'), get_config('system','account_abandon_days'), t('Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit.')),
464 '$allowed_sites' => array('allowed_sites', t("Allowed friend domains"), get_config('system','allowed_sites'), t("Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains")),
465 '$allowed_email' => array('allowed_email', t("Allowed email domains"), get_config('system','allowed_email'), t("Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains")),
466 '$block_public' => array('block_public', t("Block public"), get_config('system','block_public'), t("Check to block public access to all otherwise public personal pages on this site unless you are currently logged in.")),
467 '$force_publish' => array('publish_all', t("Force publish"), get_config('system','publish_all'), t("Check to force all profiles on this site to be listed in the site directory.")),
468 '$global_directory' => array('directory_submit_url', t("Global directory update URL"), get_config('system','directory_submit_url'), t("URL to update the global directory. If this is not set, the global directory is completely unavailable to the application.")),
469 '$thread_allow' => array('thread_allow', t("Allow threaded items"), get_config('system','thread_allow'), t("Allow infinite level threading for items on this site.")),
470 '$newuser_private' => array('newuser_private', t("Private posts by default for new users"), get_config('system','newuser_private'), t("Set default post permissions for all new members to the default privacy group rather than public.")),
472 '$no_multi_reg' => array('no_multi_reg', t("Block multiple registrations"), get_config('system','block_extended_register'), t("Disallow users to register additional accounts for use as pages.")),
473 '$no_openid' => array('no_openid', t("OpenID support"), !get_config('system','no_openid'), t("OpenID support for registration and logins.")),
474 '$no_regfullname' => array('no_regfullname', t("Fullname check"), !get_config('system','no_regfullname'), t("Force users to register with a space between firstname and lastname in Full name, as an antispam measure")),
475 '$no_utf' => array('no_utf', t("UTF-8 Regular expressions"), !get_config('system','no_utf'), t("Use PHP UTF8 regular expressions")),
476 '$no_community_page' => array('no_community_page', t("Show Community Page"), !get_config('system','no_community_page'), t("Display a Community page showing all recent public postings on this site.")),
477 '$ostatus_disabled' => array('ostatus_disabled', t("Enable OStatus support"), !get_config('system','ostatus_disabled'), t("Provide built-in OStatus \x28identi.ca, status.net, etc.\x29 compatibility. All communications in OStatus are public, so privacy warnings will be occasionally displayed.")),
478 '$diaspora_enabled' => array('diaspora_enabled', t("Enable Diaspora support"), get_config('system','diaspora_enabled'), t("Provide built-in Diaspora network compatibility.")),
479 '$dfrn_only' => array('dfrn_only', t('Only allow Friendica contacts'), get_config('system','dfrn_only'), t("All contacts must use Friendica protocols. All other built-in communication protocols disabled.")),
480 '$verifyssl' => array('verifyssl', t("Verify SSL"), get_config('system','verifyssl'), t("If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites.")),
481 '$proxyuser' => array('proxyuser', t("Proxy user"), get_config('system','proxyuser'), ""),
482 '$proxy' => array('proxy', t("Proxy URL"), get_config('system','proxy'), ""),
483 '$timeout' => array('timeout', t("Network timeout"), (x(get_config('system','curl_timeout'))?get_config('system','curl_timeout'):60), t("Value is in seconds. Set to 0 for unlimited (not recommended).")),
484 '$delivery_interval' => array('delivery_interval', t("Delivery interval"), (x(get_config('system','delivery_interval'))?get_config('system','delivery_interval'):2), t("Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers.")),
485 '$poll_interval' => array('poll_interval', t("Poll interval"), (x(get_config('system','poll_interval'))?get_config('system','poll_interval'):2), t("Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval.")),
486 '$maxloadavg' => array('maxloadavg', t("Maximum Load Average"), ((intval(get_config('system','maxloadavg')) > 0)?get_config('system','maxloadavg'):50), t("Maximum system load before delivery and poll processes are deferred - default 50.")),
487 '$form_security_token' => get_form_security_token("admin_site"),
494 function admin_page_dbsync(&$a) {
498 if($a->argc > 3 && intval($a->argv[3]) && $a->argv[2] === 'mark') {
499 set_config('database', 'update_' . intval($a->argv[3]), 'success');
500 $curr = get_config('system','build');
501 if(intval($curr) == intval($a->argv[3]))
502 set_config('system','build',intval($curr) + 1);
503 info( t('Update has been marked successful') . EOL);
504 goaway($a->get_baseurl(true) . '/admin/dbsync');
507 if($a->argc > 2 && intval($a->argv[2])) {
508 require_once('update.php');
509 $func = 'update_' . intval($a->argv[2]);
510 if(function_exists($func)) {
512 if($retval === UPDATE_FAILED) {
513 $o .= sprintf( t('Executing %s failed. Check system logs.'), $func);
515 elseif($retval === UPDATE_SUCCESS) {
516 $o .= sprintf( t('Update %s was successfully applied.', $func));
517 set_config('database',$func, 'success');
520 $o .= sprintf( t('Update %s did not return a status. Unknown if it succeeded.'), $func);
523 $o .= sprintf( t('Update function %s could not be found.'), $func);
528 $r = q("select * from config where `cat` = 'database' ");
531 $upd = intval(substr($rr['k'],7));
532 if($upd < 1139 || $rr['v'] === 'success')
538 return '<h3>' . t('No failed updates.') . '</h3>';
540 $o = replace_macros(get_markup_template('failed_updates.tpl'),array(
541 '$base' => $a->get_baseurl(true),
542 '$banner' => t('Failed Updates'),
543 '$desc' => t('This does not include updates prior to 1139, which did not return a status.'),
544 '$mark' => t('Mark success (if update was manually applied)'),
545 '$apply' => t('Attempt to execute this update step automatically'),
558 function admin_page_users_post(&$a){
559 $pending = ( x($_POST, 'pending') ? $_POST['pending'] : Array() );
560 $users = ( x($_POST, 'user') ? $_POST['user'] : Array() );
562 check_form_security_token_redirectOnErr('/admin/users', 'admin_users');
564 if (x($_POST,'page_users_block')){
565 foreach($users as $uid){
566 q("UPDATE `user` SET `blocked`=1-`blocked` WHERE `uid`=%s",
570 notice( sprintf( tt("%s user blocked/unblocked", "%s users blocked/unblocked", count($users)), count($users)) );
572 if (x($_POST,'page_users_delete')){
573 require_once("include/Contact.php");
574 foreach($users as $uid){
577 notice( sprintf( tt("%s user deleted", "%s users deleted", count($users)), count($users)) );
580 if (x($_POST,'page_users_approve')){
581 require_once("mod/regmod.php");
582 foreach($pending as $hash){
586 if (x($_POST,'page_users_deny')){
587 require_once("mod/regmod.php");
588 foreach($pending as $hash){
592 goaway($a->get_baseurl(true) . '/admin/users' );
593 return; // NOTREACHED
600 function admin_page_users(&$a){
603 $user = q("SELECT * FROM `user` WHERE `uid`=%d", intval($uid));
604 if (count($user)==0){
605 notice( 'User not found' . EOL);
606 goaway($a->get_baseurl(true) . '/admin/users' );
607 return ''; // NOTREACHED
611 check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't');
613 require_once("include/Contact.php");
616 notice( sprintf(t("User '%s' deleted"), $user[0]['username']) . EOL);
619 check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't');
620 q("UPDATE `user` SET `blocked`=%d WHERE `uid`=%s",
621 intval( 1-$user[0]['blocked'] ),
624 notice( sprintf( ($user[0]['blocked']?t("User '%s' unblocked"):t("User '%s' blocked")) , $user[0]['username']) . EOL);
627 goaway($a->get_baseurl(true) . '/admin/users' );
628 return ''; // NOTREACHED
633 $pending = q("SELECT `register`.*, `contact`.`name`, `user`.`email`
635 LEFT JOIN `contact` ON `register`.`uid` = `contact`.`uid`
636 LEFT JOIN `user` ON `register`.`uid` = `user`.`uid`;");
641 $total = q("SELECT count(*) as total FROM `user` where 1");
643 $a->set_pager_total($total[0]['total']);
644 $a->set_pager_itemspage(100);
648 $users = q("SELECT `user` . * , `contact`.`name` , `contact`.`url` , `contact`.`micro`, `lastitem`.`lastitem_date`
650 (SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid`
652 WHERE `item`.`type` = 'wall'
653 GROUP BY `item`.`uid`) AS `lastitem`
654 RIGHT OUTER JOIN `user` ON `user`.`uid` = `lastitem`.`uid`,
657 `user`.`uid` = `contact`.`uid`
658 AND `user`.`verified` =1
659 AND `contact`.`self` =1
660 ORDER BY `contact`.`name` LIMIT %d, %d
662 intval($a->pager['start']),
663 intval($a->pager['itemspage'])
666 function _setup_users($e){
670 t('Soapbox Account'),
671 t('Community/Celebrity Account'),
672 t('Automatic Friend Account')
674 $e['page-flags'] = $accounts[$e['page-flags']];
675 $e['register_date'] = relative_date($e['register_date']);
676 $e['login_date'] = relative_date($e['login_date']);
677 $e['lastitem_date'] = relative_date($e['lastitem_date']);
678 $e['is_admin'] = ($e['email'] === $a->config['admin_email']);
681 $users = array_map("_setup_users", $users);
684 $t = get_markup_template("admin_users.tpl");
685 $o = replace_macros($t, array(
687 '$title' => t('Administration'),
688 '$page' => t('Users'),
689 '$submit' => t('Submit'),
690 '$select_all' => t('select all'),
691 '$h_pending' => t('User registrations waiting for confirm'),
692 '$th_pending' => array( t('Request date'), t('Name'), t('Email') ),
693 '$no_pending' => t('No registrations.'),
694 '$approve' => t('Approve'),
695 '$deny' => t('Deny'),
696 '$delete' => t('Delete'),
697 '$block' => t('Block'),
698 '$unblock' => t('Unblock'),
699 '$siteadmin' => t('Site admin'),
701 '$h_users' => t('Users'),
702 '$th_users' => array( t('Name'), t('Email'), t('Register date'), t('Last login'), t('Last item'), t('Account') ),
704 '$confirm_delete_multi' => t('Selected users will be deleted!\n\nEverything these users had posted on this site will be permanently deleted!\n\nAre you sure?'),
705 '$confirm_delete' => t('The user {0} will be deleted!\n\nEverything this user has posted on this site will be permanently deleted!\n\nAre you sure?'),
707 '$form_security_token' => get_form_security_token("admin_users"),
710 '$baseurl' => $a->get_baseurl(true),
712 '$pending' => $pending,
726 function admin_page_plugins(&$a){
732 $plugin = $a->argv[2];
733 if (!is_file("addon/$plugin/$plugin.php")){
734 notice( t("Item not found.") );
738 if (x($_GET,"a") && $_GET['a']=="t"){
739 check_form_security_token_redirectOnErr('/admin/plugins', 'admin_themes', 't');
741 // Toggle plugin status
742 $idx = array_search($plugin, $a->plugins);
744 unset($a->plugins[$idx]);
745 uninstall_plugin($plugin);
746 info( sprintf( t("Plugin %s disabled."), $plugin ) );
748 $a->plugins[] = $plugin;
749 install_plugin($plugin);
750 info( sprintf( t("Plugin %s enabled."), $plugin ) );
752 set_config("system","addon", implode(", ",$a->plugins));
753 goaway($a->get_baseurl(true) . '/admin/plugins' );
754 return ''; // NOTREACHED
756 // display plugin details
757 require_once('library/markdown.php');
759 if (in_array($plugin, $a->plugins)){
760 $status="on"; $action= t("Disable");
762 $status="off"; $action= t("Enable");
766 if (is_file("addon/$plugin/README.md")){
767 $readme = file_get_contents("addon/$plugin/README.md");
768 $readme = Markdown($readme);
769 } else if (is_file("addon/$plugin/README")){
770 $readme = "<pre>". file_get_contents("addon/$plugin/README") ."</pre>";
774 if (is_array($a->plugins_admin) && in_array($plugin, $a->plugins_admin)){
775 @require_once("addon/$plugin/$plugin.php");
776 $func = $plugin.'_plugin_admin';
777 $func($a, $admin_form);
780 $t = get_markup_template("admin_plugins_details.tpl");
781 return replace_macros($t, array(
782 '$title' => t('Administration'),
783 '$page' => t('Plugins'),
784 '$toggle' => t('Toggle'),
785 '$settings' => t('Settings'),
786 '$baseurl' => $a->get_baseurl(true),
788 '$plugin' => $plugin,
789 '$status' => $status,
790 '$action' => $action,
791 '$info' => get_plugin_info($plugin),
792 '$str_author' => t('Author: '),
793 '$str_maintainer' => t('Maintainer: '),
795 '$admin_form' => $admin_form,
796 '$function' => 'plugins',
798 '$readme' => $readme,
800 '$form_security_token' => get_form_security_token("admin_themes"),
811 $files = glob("addon/*/");
813 foreach($files as $file) {
815 list($tmp, $id)=array_map("trim", explode("/",$file));
816 $info = get_plugin_info($id);
817 $plugins[] = array( $id, (in_array($id, $a->plugins)?"on":"off") , $info);
822 $t = get_markup_template("admin_plugins.tpl");
823 return replace_macros($t, array(
824 '$title' => t('Administration'),
825 '$page' => t('Plugins'),
826 '$submit' => t('Submit'),
827 '$baseurl' => $a->get_baseurl(true),
828 '$function' => 'plugins',
829 '$plugins' => $plugins,
830 '$form_security_token' => get_form_security_token("admin_themes"),
835 * @param array $themes
839 function toggle_theme(&$themes,$th,&$result) {
840 for($x = 0; $x < count($themes); $x ++) {
841 if($themes[$x]['name'] === $th) {
842 if($themes[$x]['allowed']) {
843 $themes[$x]['allowed'] = 0;
847 $themes[$x]['allowed'] = 1;
855 * @param array $themes
859 function theme_status($themes,$th) {
860 for($x = 0; $x < count($themes); $x ++) {
861 if($themes[$x]['name'] === $th) {
862 if($themes[$x]['allowed']) {
875 * @param array $themes
878 function rebuild_theme_table($themes) {
881 foreach($themes as $th) {
899 function admin_page_themes(&$a){
901 $allowed_themes_str = get_config('system','allowed_themes');
902 $allowed_themes_raw = explode(',',$allowed_themes_str);
903 $allowed_themes = array();
904 if(count($allowed_themes_raw))
905 foreach($allowed_themes_raw as $x)
907 $allowed_themes[] = trim($x);
910 $files = glob('view/theme/*');
912 foreach($files as $file) {
913 $f = basename($file);
914 $is_experimental = intval(file_exists($file . '/experimental'));
915 $is_supported = 1-(intval(file_exists($file . '/unsupported'))); // Is not used yet
916 $is_allowed = intval(in_array($f,$allowed_themes));
917 $themes[] = array('name' => $f, 'experimental' => $is_experimental, 'supported' => $is_supported, 'allowed' => $is_allowed);
921 if(! count($themes)) {
922 notice( t('No themes found.'));
931 $theme = $a->argv[2];
932 if(! is_dir("view/theme/$theme")){
933 notice( t("Item not found.") );
937 if (x($_GET,"a") && $_GET['a']=="t"){
938 check_form_security_token_redirectOnErr('/admin/themes', 'admin_themes', 't');
940 // Toggle theme status
942 toggle_theme($themes,$theme,$result);
943 $s = rebuild_theme_table($themes);
945 info( sprintf('Theme %s enabled.',$theme));
947 info( sprintf('Theme %s disabled.',$theme));
949 set_config('system','allowed_themes',$s);
950 goaway($a->get_baseurl(true) . '/admin/themes' );
951 return ''; // NOTREACHED
954 // display theme details
955 require_once('library/markdown.php');
957 if (theme_status($themes,$theme)) {
958 $status="on"; $action= t("Disable");
960 $status="off"; $action= t("Enable");
964 if (is_file("view/theme/$theme/README.md")){
965 $readme = file_get_contents("view/theme/$theme/README.md");
966 $readme = Markdown($readme);
967 } else if (is_file("view/theme/$theme/README")){
968 $readme = "<pre>". file_get_contents("view/theme/$theme/README") ."</pre>";
972 if (is_file("view/theme/$theme/config.php")){
973 require_once("view/theme/$theme/config.php");
974 if(function_exists("theme_admin")){
975 $admin_form = theme_admin($a);
981 $screenshot = array( get_theme_screenshot($theme), t('Screenshot'));
982 if(! stristr($screenshot[0],$theme))
985 $t = get_markup_template("admin_plugins_details.tpl");
986 return replace_macros($t, array(
987 '$title' => t('Administration'),
988 '$page' => t('Themes'),
989 '$toggle' => t('Toggle'),
990 '$settings' => t('Settings'),
991 '$baseurl' => $a->get_baseurl(true),
994 '$status' => $status,
995 '$action' => $action,
996 '$info' => get_theme_info($theme),
997 '$function' => 'themes',
998 '$admin_form' => $admin_form,
999 '$str_author' => t('Author: '),
1000 '$str_maintainer' => t('Maintainer: '),
1001 '$screenshot' => $screenshot,
1002 '$readme' => $readme,
1004 '$form_security_token' => get_form_security_token("admin_themes"),
1016 foreach($themes as $th) {
1017 $xthemes[] = array($th['name'],(($th['allowed']) ? "on" : "off"), get_theme_info($th['name']));
1021 $t = get_markup_template("admin_plugins.tpl");
1022 return replace_macros($t, array(
1023 '$title' => t('Administration'),
1024 '$page' => t('Themes'),
1025 '$submit' => t('Submit'),
1026 '$baseurl' => $a->get_baseurl(true),
1027 '$function' => 'themes',
1028 '$plugins' => $xthemes,
1029 '$experimental' => t('[Experimental]'),
1030 '$unsupported' => t('[Unsupported]'),
1031 '$form_security_token' => get_form_security_token("admin_themes"),
1042 function admin_page_logs_post(&$a) {
1043 if (x($_POST,"page_logs")) {
1044 check_form_security_token_redirectOnErr('/admin/logs', 'admin_logs');
1046 $logfile = ((x($_POST,'logfile')) ? notags(trim($_POST['logfile'])) : '');
1047 $debugging = ((x($_POST,'debugging')) ? true : false);
1048 $loglevel = ((x($_POST,'loglevel')) ? intval(trim($_POST['loglevel'])) : 0);
1050 set_config('system','logfile', $logfile);
1051 set_config('system','debugging', $debugging);
1052 set_config('system','loglevel', $loglevel);
1057 info( t("Log settings updated.") );
1058 goaway($a->get_baseurl(true) . '/admin/logs' );
1059 return; // NOTREACHED
1066 function admin_page_logs(&$a){
1068 $log_choices = Array(
1069 LOGGER_NORMAL => 'Normal',
1070 LOGGER_TRACE => 'Trace',
1071 LOGGER_DEBUG => 'Debug',
1072 LOGGER_DATA => 'Data',
1076 $t = get_markup_template("admin_logs.tpl");
1078 $f = get_config('system','logfile');
1082 if(!file_exists($f)) {
1083 $data = t("Error trying to open <strong>$f</strong> log file.\r\n<br/>Check to see if file $f exist and is
1087 $fp = fopen($f, 'r');
1089 $data = t("Couldn't open <strong>$f</strong> log file.\r\n<br/>Check to see if file $f is readable.");
1092 $fstat = fstat($fp);
1093 $size = $fstat['size'];
1096 if($size > 5000000 || $size < 0)
1098 $seek = fseek($fp,0-$size,SEEK_END);
1100 $data = escape_tags(fread($fp,$size));
1102 $data .= escape_tags(fread($fp,4096));
1109 return replace_macros($t, array(
1110 '$title' => t('Administration'),
1111 '$page' => t('Logs'),
1112 '$submit' => t('Submit'),
1113 '$clear' => t('Clear'),
1115 '$baseurl' => $a->get_baseurl(true),
1116 '$logname' => get_config('system','logfile'),
1118 // name, label, value, help string, extra data...
1119 '$debugging' => array('debugging', t("Debugging"),get_config('system','debugging'), ""),
1120 '$logfile' => array('logfile', t("Log file"), get_config('system','logfile'), t("Must be writable by web server. Relative to your Friendica top-level directory.")),
1121 '$loglevel' => array('loglevel', t("Log level"), get_config('system','loglevel'), "", $log_choices),
1123 '$form_security_token' => get_form_security_token("admin_logs"),
1130 function admin_page_remoteupdate_post(&$a) {
1131 // this function should be called via ajax post
1132 if(!is_site_admin()) {
1137 if (x($_POST,'remotefile') && $_POST['remotefile']!=""){
1138 $remotefile = $_POST['remotefile'];
1139 $ftpdata = (x($_POST['ftphost'])?$_POST:false);
1140 doUpdate($remotefile, $ftpdata);
1142 echo "No remote file to download. Abort!";
1152 function admin_page_remoteupdate(&$a) {
1153 if(!is_site_admin()) {
1154 return login(false);
1157 $canwrite = canWeWrite();
1158 $canftp = function_exists('ftp_connect');
1163 $needupdate = false;
1164 $u = array('','','');
1167 $tpl = get_markup_template("admin_remoteupdate.tpl");
1168 return replace_macros($tpl, array(
1169 '$baseurl' => $a->get_baseurl(true),
1170 '$submit' => t("Update now"),
1171 '$close' => t("Close"),
1172 '$localversion' => FRIENDICA_VERSION,
1173 '$remoteversion' => $u[1],
1174 '$needupdate' => $needupdate,
1175 '$canwrite' => $canwrite,
1176 '$canftp' => $canftp,
1177 '$ftphost' => array('ftphost', t("FTP Host"), '',''),
1178 '$ftppath' => array('ftppath', t("FTP Path"), '/',''),
1179 '$ftpuser' => array('ftpuser', t("FTP User"), '',''),
1180 '$ftppwd' => array('ftppwd', t("FTP Password"), '',''),
1181 '$remotefile'=>array('remotefile','', $u['2'],'')