]> git.mxchange.org Git - friendica.git/blob - mod/admin.php
Merge pull request #552 from annando/master
[friendica.git] / mod / admin.php
1 <?php
2
3  /**
4   * Friendica admin
5   */
6 require_once("include/remoteupdate.php");
7
8
9 /**
10  * @param App $a
11  */
12 function admin_post(&$a){
13
14
15         if(!is_site_admin()) {
16                 return;
17         }
18
19         // do not allow a page manager to access the admin panel at all.
20
21         if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
22                 return;
23         
24
25
26         // urls
27         if ($a->argc > 1){
28                 switch ($a->argv[1]){
29                         case 'site':
30                                 admin_page_site_post($a);
31                                 break;
32                         case 'users':
33                                 admin_page_users_post($a);
34                                 break;
35                         case 'plugins':
36                                 if ($a->argc > 2 && 
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';
41                                                         $func($a);
42                                                 }
43                                 }
44                                 goaway($a->get_baseurl(true) . '/admin/plugins/' . $a->argv[2] );
45                                 return; // NOTREACHED
46                                 break;
47                         case 'themes':
48                                 $theme = $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")){
52                                                 theme_admin_post($a);
53                                         }
54                                 }
55                                 info(t('Theme settings updated.'));
56                                 if(is_ajax()) return;
57                                 
58                                 goaway($a->get_baseurl(true) . '/admin/themes/' . $theme );
59                                 return;
60                                 break;
61                         case 'logs':
62                                 admin_page_logs_post($a);
63                                 break;
64                         case 'dbsync':
65                                 admin_page_dbsync_post($a);
66                                 break;
67                         case 'update':
68                                 admin_page_remoteupdate_post($a);
69                                 break;
70                 }
71         }
72
73         goaway($a->get_baseurl(true) . '/admin' );
74         return; // NOTREACHED   
75 }
76
77 /**
78  * @param App $a
79  * @return string
80  */
81 function admin_content(&$a) {
82
83         if(!is_site_admin()) {
84                 return login(false);
85         }
86
87         if(x($_SESSION,'submanage') && intval($_SESSION['submanage']))
88                 return "";
89
90         /**
91          * Side bar links
92          */
93
94         // array( url, name, extra css classes )
95         $aside = Array(
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")
102         );
103         
104         /* get plugins admin page */
105         
106         $r = q("SELECT * FROM `addon` WHERE `plugin_admin`=1");
107         $aside['plugins_admin']=Array();
108         foreach ($r as $h){
109                 $plugin =$h['name'];
110                 $aside['plugins_admin'][] = Array($a->get_baseurl(true)."/admin/plugins/".$plugin, $plugin, "plugin");
111                 // temp plugins with admin
112                 $a->plugins_admin[] = $plugin;
113         }
114                 
115         $aside['logs'] = Array($a->get_baseurl(true)."/admin/logs/", t("Logs"), "logs");
116
117         $t = get_markup_template("admin_aside.tpl");
118         $a->page['aside'] .= replace_macros( $t, array(
119                         '$admin' => $aside, 
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/"
125         ));
126
127
128
129         /**
130          * Page content
131          */
132         $o = '';
133         
134         // urls
135         if ($a->argc > 1){
136                 switch ($a->argv[1]){
137                         case 'site':
138                                 $o = admin_page_site($a);
139                                 break;
140                         case 'users':
141                                 $o = admin_page_users($a);
142                                 break;
143                         case 'plugins':
144                                 $o = admin_page_plugins($a);
145                                 break;
146                         case 'themes':
147                                 $o = admin_page_themes($a);
148                                 break;
149                         case 'logs':
150                                 $o = admin_page_logs($a);
151                                 break;
152                         case 'dbsync':
153                                 $o = admin_page_dbsync($a);
154                                 break;
155                         case 'update':
156                                 $o = admin_page_remoteupdate($a);
157                                 break;
158                         default:
159                                 notice( t("Item not found.") );
160                 }
161         } else {
162                 $o = admin_page_summary($a);
163         }
164         
165         if(is_ajax()) {
166                 echo $o; 
167                 killme();
168                 return '';
169         } else {
170                 return $o;
171         }
172
173
174
175 /**
176  * Admin Summary Page
177  * @param App $a
178  * @return string
179  */
180 function admin_page_summary(&$a) {
181         $r = q("SELECT `page-flags`, COUNT(uid) as `count` FROM `user` GROUP BY `page-flags`");
182         $accounts = Array(
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)
189         );
190
191         $users=0;
192         foreach ($r as $u){ $accounts[$u['page-flags']][1] = $u['count']; $users+= $u['count']; }
193
194         logger('accounts: ' . print_r($accounts,true),LOGGER_DATA);
195
196         $r = q("SELECT COUNT(id) as `count` FROM `register`");
197         $pending = $r[0]['count'];
198                 
199         $r = q("select count(*) as total from deliverq where 1");
200         $deliverq = (($r) ? $r[0]['total'] : 0);
201
202         $r = q("select count(*) as total from queue where 1");
203         $queue = (($r) ? $r[0]['total'] : 0);
204
205         // We can do better, but this is a quick queue status
206
207         $queues = array( 'label' => t('Message queues'), 'deliverq' => $deliverq, 'queue' => $queue );
208
209
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 )
221         ));
222 }
223
224
225 /**
226  * Admin Site Page
227  *  @param App $a
228  */
229 function admin_page_site_post(&$a){
230         if (!x($_POST,"page_site")){
231                 return;
232         }
233
234         check_form_security_token_redirectOnErr('/admin/site', 'admin_site');
235
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);
244
245
246         $register_policy        =       ((x($_POST,'register_policy'))          ? intval(trim($_POST['register_policy']))       :  0);
247         $daily_registrations    =       ((x($_POST,'max_daily_registrations'))  ? intval(trim($_POST['max_daily_registrations']))       :0);
248         $abandon_days           =       ((x($_POST,'abandon_days'))             ? intval(trim($_POST['abandon_days']))          :  0);
249
250         $register_text          =       ((x($_POST,'register_text'))            ? notags(trim($_POST['register_text']))         : '');
251
252         $allowed_sites          =       ((x($_POST,'allowed_sites'))            ? notags(trim($_POST['allowed_sites']))         : '');
253         $allowed_email          =       ((x($_POST,'allowed_email'))            ? notags(trim($_POST['allowed_email']))         : '');
254         $block_public           =       ((x($_POST,'block_public'))             ? True                                          : False);
255         $force_publish          =       ((x($_POST,'publish_all'))              ? True                                          : False);
256         $global_directory       =       ((x($_POST,'directory_submit_url'))     ? notags(trim($_POST['directory_submit_url']))  : '');
257         $thread_allow           =       ((x($_POST,'thread_allow'))             ? True                                          : False);
258         $newuser_private                =       ((x($_POST,'newuser_private'))          ? True                                          : False);
259         $no_multi_reg           =       ((x($_POST,'no_multi_reg'))             ? True                                          : False);
260         $no_openid              =       !((x($_POST,'no_openid'))               ? True                                          : False);
261         $no_regfullname         =       !((x($_POST,'no_regfullname'))          ? True                                          : False);
262         $no_utf                 =       !((x($_POST,'no_utf'))                  ? True                                          : False);
263         $no_community_page      =       !((x($_POST,'no_community_page'))       ? True                                          : False);
264
265         $verifyssl              =       ((x($_POST,'verifyssl'))                ? True                                          : False);
266         $proxyuser              =       ((x($_POST,'proxyuser'))                ? notags(trim($_POST['proxyuser']))             : '');
267         $proxy                  =       ((x($_POST,'proxy'))                    ? notags(trim($_POST['proxy']))                 : '');
268         $timeout                =       ((x($_POST,'timeout'))                  ? intval(trim($_POST['timeout']))               : 60);
269         $delivery_interval      =       ((x($_POST,'delivery_interval'))        ? intval(trim($_POST['delivery_interval']))     : 0);
270         $poll_interval          =       ((x($_POST,'poll_interval'))            ? intval(trim($_POST['poll_interval']))         : 0);
271         $maxloadavg             =       ((x($_POST,'maxloadavg'))               ? intval(trim($_POST['maxloadavg']))            : 50);
272         $dfrn_only              =       ((x($_POST,'dfrn_only'))                ? True                                          : False);
273         $ostatus_disabled       =       !((x($_POST,'ostatus_disabled'))        ? True                                          : False);
274         $diaspora_enabled       =       ((x($_POST,'diaspora_enabled'))         ? True                                          : False);
275         $ssl_policy             =       ((x($_POST,'ssl_policy'))               ? intval($_POST['ssl_policy'])                  : 0);
276         $new_share              =       ((x($_POST,'new_share'))                ? True                                          : False);
277         $use_fulltext_engine    =       ((x($_POST,'use_fulltext_engine'))      ? True                                          : False);
278         $itemcache              =       ((x($_POST,'itemcache'))                ? notags(trim($_POST['itemcache']))             : '');
279         $itemcache_duration     =       ((x($_POST,'itemcache_duration'))       ? intval($_POST['itemcache_duration'])          : 0);
280         $lockpath               =       ((x($_POST,'lockpath'))                 ? notags(trim($_POST['lockpath']))              : '');
281         $temppath               =       ((x($_POST,'temppath'))                 ? notags(trim($_POST['temppath']))              : '');
282         $basepath               =       ((x($_POST,'basepath'))                 ? notags(trim($_POST['basepath']))              : '');
283
284         if($ssl_policy != intval(get_config('system','ssl_policy'))) {
285                 if($ssl_policy == SSL_POLICY_FULL) {
286                         q("update `contact` set 
287                                 `url`     = replace(`url`    , 'http:' , 'https:'),
288                                 `photo`   = replace(`photo`  , 'http:' , 'https:'),
289                                 `thumb`   = replace(`thumb`  , 'http:' , 'https:'),
290                                 `micro`   = replace(`micro`  , 'http:' , 'https:'),
291                                 `request` = replace(`request`, 'http:' , 'https:'),
292                                 `notify`  = replace(`notify` , 'http:' , 'https:'),
293                                 `poll`    = replace(`poll`   , 'http:' , 'https:'),
294                                 `confirm` = replace(`confirm`, 'http:' , 'https:'),
295                                 `poco`    = replace(`poco`   , 'http:' , 'https:')
296                                 where `self` = 1"
297                         );
298                         q("update `profile` set 
299                                 `photo`   = replace(`photo`  , 'http:' , 'https:'),
300                                 `thumb`   = replace(`thumb`  , 'http:' , 'https:')
301                                 where 1 "
302                         );
303                 }
304                 elseif($ssl_policy == SSL_POLICY_SELFSIGN) {
305                         q("update `contact` set 
306                                 `url`     = replace(`url`    , 'https:' , 'http:'),
307                                 `photo`   = replace(`photo`  , 'https:' , 'http:'),
308                                 `thumb`   = replace(`thumb`  , 'https:' , 'http:'),
309                                 `micro`   = replace(`micro`  , 'https:' , 'http:'),
310                                 `request` = replace(`request`, 'https:' , 'http:'),
311                                 `notify`  = replace(`notify` , 'https:' , 'http:'),
312                                 `poll`    = replace(`poll`   , 'https:' , 'http:'),
313                                 `confirm` = replace(`confirm`, 'https:' , 'http:'),
314                                 `poco`    = replace(`poco`   , 'https:' , 'http:')
315                                 where `self` = 1"
316                         );
317                         q("update `profile` set 
318                                 `photo`   = replace(`photo`  , 'https:' , 'http:'),
319                                 `thumb`   = replace(`thumb`  , 'https:' , 'http:')
320                                 where 1 "
321                         );
322                 }
323         }
324         set_config('system','ssl_policy',$ssl_policy);
325         set_config('system','delivery_interval',$delivery_interval);
326         set_config('system','poll_interval',$poll_interval);
327         set_config('system','maxloadavg',$maxloadavg);
328         set_config('config','sitename',$sitename);
329         if ($banner==""){
330                 // don't know why, but del_config doesn't work...
331                 q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
332                         dbesc("system"),
333                         dbesc("banner")
334                 );
335         } else {
336                 set_config('system','banner', $banner);
337         }
338         set_config('system','language', $language);
339         set_config('system','theme', $theme);
340         if ( $theme_mobile === '---' ) {
341                 del_config('system','mobile-theme');
342         } else {
343                 set_config('system','mobile-theme', $theme_mobile);
344         }
345         set_config('system','maximagesize', $maximagesize);
346         set_config('system','max_image_length', $maximagelength);
347         set_config('system','jpeg_quality', $jpegimagequality);
348         
349         set_config('config','register_policy', $register_policy);
350         set_config('system','max_daily_registrations', $daily_registrations);
351         set_config('system','account_abandon_days', $abandon_days);
352         set_config('config','register_text', $register_text);
353         set_config('system','allowed_sites', $allowed_sites);
354         set_config('system','allowed_email', $allowed_email);
355         set_config('system','block_public', $block_public);
356         set_config('system','publish_all', $force_publish);
357         if ($global_directory==""){
358                 // don't know why, but del_config doesn't work...
359                 q("DELETE FROM `config` WHERE `cat` = '%s' AND `k` = '%s' LIMIT 1",
360                         dbesc("system"),
361                         dbesc("directory_submit_url")
362                 );
363         } else {
364                 set_config('system','directory_submit_url', $global_directory);
365         }
366         set_config('system','thread_allow', $thread_allow);
367         set_config('system','newuser_private', $newuser_private);
368
369         set_config('system','block_extended_register', $no_multi_reg);
370         set_config('system','no_openid', $no_openid);
371         set_config('system','no_regfullname', $no_regfullname);
372         set_config('system','no_community_page', $no_community_page);
373         set_config('system','no_utf', $no_utf);
374         set_config('system','verifyssl', $verifyssl);
375         set_config('system','proxyuser', $proxyuser);
376         set_config('system','proxy', $proxy);
377         set_config('system','curl_timeout', $timeout);
378         set_config('system','dfrn_only', $dfrn_only);
379         set_config('system','ostatus_disabled', $ostatus_disabled);
380         set_config('system','diaspora_enabled', $diaspora_enabled);
381
382         set_config('system','new_share', $new_share);
383         set_config('system','use_fulltext_engine', $use_fulltext_engine);
384         set_config('system','itemcache', $itemcache);
385         set_config('system','itemcache_duration', $itemcache_duration);
386         set_config('system','lockpath', $lockpath);
387         set_config('system','temppath', $temppath);
388         set_config('system','basepath', $basepath);
389
390
391         info( t('Site settings updated.') . EOL);
392         goaway($a->get_baseurl(true) . '/admin/site' );
393         return; // NOTREACHED
394
395 }
396
397 /**
398  * @param  App $a
399  * @return string
400  */
401 function admin_page_site(&$a) {
402         
403         /* Installed langs */
404         $lang_choices = array();
405         $langs = glob('view/*/strings.php');
406         
407         if(is_array($langs) && count($langs)) {
408                 if(! in_array('view/en/strings.php',$langs))
409                         $langs[] = 'view/en/';
410                 asort($langs);
411                 foreach($langs as $l) {
412                         $t = explode("/",$l);
413                         $lang_choices[$t[1]] = $t[1];
414                 }
415         }
416         
417         /* Installed themes */
418         $theme_choices = array();
419         $theme_choices_mobile = array();
420         $theme_choices_mobile["---"] = t("No special theme for mobile devices");
421         $files = glob('view/theme/*');
422         if($files) {
423                 foreach($files as $file) {
424                         $f = basename($file);
425                         $theme_name = ((file_exists($file . '/experimental')) ?  sprintf("%s - \x28Experimental\x29", $f) : $f);
426             if (file_exists($file . '/mobile')) {
427                 $theme_choices_mobile[$f] = $theme_name;
428             }
429                         else {
430                 $theme_choices[$f] = $theme_name;
431                         }
432                 }
433         }
434         
435         
436         /* Banner */
437         $banner = get_config('system','banner');
438         if($banner == false) 
439                 $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>';
440         $banner = htmlspecialchars($banner);
441         
442         //echo "<pre>"; var_dump($lang_choices); die("</pre>");
443
444         /* Register policy */
445         $register_choices = Array(
446                 REGISTER_CLOSED => t("Closed"),
447                 REGISTER_APPROVE => t("Requires approval"),
448                 REGISTER_OPEN => t("Open")
449         ); 
450
451         $ssl_choices = array(
452                 SSL_POLICY_NONE => t("No SSL policy, links will track page SSL state"),
453                 SSL_POLICY_FULL => t("Force all links to use SSL"),
454                 SSL_POLICY_SELFSIGN => t("Self-signed certificate, use SSL for local links only (discouraged)")
455         );
456
457         $t = get_markup_template("admin_site.tpl");
458
459         $includes = array(
460                 '$field_checkbox'       => 'field_checkbox.tpl',
461                 '$field_input'          => 'field_input.tpl',
462                 '$field_select'         => 'field_select.tpl',
463                 '$field_textarea'       => 'field_textarea.tpl',
464         );
465         $includes = set_template_includes($a->theme['template_engine'], $includes);
466
467         return replace_macros($t, $includes + array(
468                 '$title' => t('Administration'),
469                 '$page' => t('Site'),
470                 '$submit' => t('Submit'),
471                 '$registration' => t('Registration'),
472                 '$upload' => t('File upload'),
473                 '$corporate' => t('Policies'),
474                 '$advanced' => t('Advanced'),
475                 '$performance' => t('Performance'),
476                 
477                 '$baseurl' => $a->get_baseurl(true),
478                 // name, label, value, help string, extra data...
479                 '$sitename'             => array('sitename', t("Site name"), htmlentities($a->config['sitename'], ENT_QUOTES), 'UTF-8'),
480                 '$banner'               => array('banner', t("Banner/Logo"), $banner, ""),
481                 '$language'             => array('language', t("System language"), get_config('system','language'), "", $lang_choices),
482                 '$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),
483                 '$theme_mobile'         => array('theme_mobile', t("Mobile system theme"), get_config('system','mobile-theme'), t("Theme for mobile devices"), $theme_choices_mobile),
484                 '$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),
485                 '$new_share'            => array('new_share', t("'Share' element"), get_config('system','new_share'), t("Activates the bbcode element 'share' for repeating items.")),
486                 '$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.")),
487                 '$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.")),
488                 '$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.")),
489
490                 '$register_policy'      => array('register_policy', t("Register policy"), $a->config['register_policy'], "", $register_choices),
491                 '$daily_registrations'  => array('max_daily_registrations', t("Maximum Daily Registrations"), get_config('system', 'max_daily_registrations'), t("If registration is permitted above, this sets the maximum number of new user registrations to accept per day.  If register is set to closed, this setting has no effect.")),
492                 '$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.")),
493                 '$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.')),
494                 '$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")),
495                 '$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")),
496                 '$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.")),
497                 '$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.")),
498                 '$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.")),
499                 '$thread_allow'         => array('thread_allow', t("Allow threaded items"), get_config('system','thread_allow'), t("Allow infinite level threading for items on this site.")),
500                 '$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.")),
501
502                 '$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.")),
503                 '$no_openid'            => array('no_openid', t("OpenID support"), !get_config('system','no_openid'), t("OpenID support for registration and logins.")),
504                 '$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")),
505                 '$no_utf'               => array('no_utf', t("UTF-8 Regular expressions"), !get_config('system','no_utf'), t("Use PHP UTF8 regular expressions")),
506                 '$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.")),
507                 '$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.")),    
508                 '$diaspora_enabled'     => array('diaspora_enabled', t("Enable Diaspora support"), get_config('system','diaspora_enabled'), t("Provide built-in Diaspora network compatibility.")),     
509                 '$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.")),
510                 '$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.")),
511                 '$proxyuser'            => array('proxyuser', t("Proxy user"), get_config('system','proxyuser'), ""),
512                 '$proxy'                => array('proxy', t("Proxy URL"), get_config('system','proxy'), ""),
513                 '$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).")),
514                 '$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.")),
515                 '$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.")),
516                 '$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.")),
517
518                 '$use_fulltext_engine'  => array('use_fulltext_engine', t("Use MySQL full text engine"), get_config('system','use_fulltext_engine'), t("Activates the full text engine. Speeds up search - but can only search for four and more characters.")),
519                 '$itemcache'            => array('itemcache', t("Path to item cache"), get_config('system','itemcache'), "The item caches buffers generated bbcode and external images."),
520                 '$itemcache_duration'   => array('itemcache_duration', t("Cache duration in seconds"), get_config('system','itemcache_duration'), t("How long should the cache files be hold? Default value is 86400 seconds (One day).")),
521                 '$lockpath'             => array('lockpath', t("Path for lock file"), get_config('system','lockpath'), "The lock file is used to avoid multiple pollers at one time. Only define a folder here."),
522                 '$temppath'             => array('temppath', t("Temp path"), get_config('system','temppath'), "If you have a restricted system where the webserver can't access the system temp path, enter another path here."),
523                 '$basepath'             => array('basepath', t("Base path to installation"), get_config('system','basepath'), "If the system cannot detect the correct path to your installation, enter the correct path here. This setting should only be set if you are using a restricted system and symbolic links to your webroot."),
524
525         '$form_security_token' => get_form_security_token("admin_site"),
526
527         ));
528
529 }
530
531
532 function admin_page_dbsync(&$a) {
533
534         $o = '';
535
536         if($a->argc > 3 && intval($a->argv[3]) && $a->argv[2] === 'mark') {
537                 set_config('database', 'update_' . intval($a->argv[3]), 'success');
538                 $curr = get_config('system','build');
539                 if(intval($curr) == intval($a->argv[3]))
540                         set_config('system','build',intval($curr) + 1);
541                 info( t('Update has been marked successful') . EOL);
542                 goaway($a->get_baseurl(true) . '/admin/dbsync');
543         }
544
545         if($a->argc > 2 && intval($a->argv[2])) {
546                 require_once('update.php');
547                 $func = 'update_' . intval($a->argv[2]);
548                 if(function_exists($func)) {
549                         $retval = $func();
550                         if($retval === UPDATE_FAILED) {
551                                 $o .= sprintf( t('Executing %s failed. Check system logs.'), $func); 
552                         }
553                         elseif($retval === UPDATE_SUCCESS) {
554                                 $o .= sprintf( t('Update %s was successfully applied.', $func));
555                                 set_config('database',$func, 'success');
556                         }
557                         else
558                                 $o .= sprintf( t('Update %s did not return a status. Unknown if it succeeded.'), $func);
559                 }
560                 else
561                         $o .= sprintf( t('Update function %s could not be found.'), $func);
562                 return $o;
563         }
564
565         $failed = array();
566         $r = q("select * from config where `cat` = 'database' ");
567         if(count($r)) {
568                 foreach($r as $rr) {
569                         $upd = intval(substr($rr['k'],7));
570                         if($upd < 1139 || $rr['v'] === 'success')
571                                 continue;
572                         $failed[] = $upd;
573                 }
574         }
575         if(! count($failed))
576                 return '<h3>' . t('No failed updates.') . '</h3>';
577
578         $o = replace_macros(get_markup_template('failed_updates.tpl'),array(
579                 '$base' => $a->get_baseurl(true),
580                 '$banner' => t('Failed Updates'),
581                 '$desc' => t('This does not include updates prior to 1139, which did not return a status.'),
582                 '$mark' => t('Mark success (if update was manually applied)'),
583                 '$apply' => t('Attempt to execute this update step automatically'),
584                 '$failed' => $failed
585         ));     
586
587         return $o;
588
589 }
590
591 /**
592  * Users admin page
593  *
594  * @param App $a
595  */
596 function admin_page_users_post(&$a){
597         $pending = ( x($_POST, 'pending') ? $_POST['pending'] : Array() );
598         $users = ( x($_POST, 'user') ? $_POST['user'] : Array() );
599
600     check_form_security_token_redirectOnErr('/admin/users', 'admin_users');
601
602         if (x($_POST,'page_users_block')){
603                 foreach($users as $uid){
604                         q("UPDATE `user` SET `blocked`=1-`blocked` WHERE `uid`=%s",
605                                 intval( $uid )
606                         );
607                 }
608                 notice( sprintf( tt("%s user blocked/unblocked", "%s users blocked/unblocked", count($users)), count($users)) );
609         }
610         if (x($_POST,'page_users_delete')){
611                 require_once("include/Contact.php");
612                 foreach($users as $uid){
613                         user_remove($uid);
614                 }
615                 notice( sprintf( tt("%s user deleted", "%s users deleted", count($users)), count($users)) );
616         }
617         
618         if (x($_POST,'page_users_approve')){
619                 require_once("mod/regmod.php");
620                 foreach($pending as $hash){
621                         user_allow($hash);
622                 }
623         }
624         if (x($_POST,'page_users_deny')){
625                 require_once("mod/regmod.php");
626                 foreach($pending as $hash){
627                         user_deny($hash);
628                 }
629         }
630         goaway($a->get_baseurl(true) . '/admin/users' );
631         return; // NOTREACHED   
632 }
633
634 /**
635  * @param App $a
636  * @return string
637  */
638 function admin_page_users(&$a){
639         if ($a->argc>2) {
640                 $uid = $a->argv[3];
641                 $user = q("SELECT * FROM `user` WHERE `uid`=%d", intval($uid));
642                 if (count($user)==0){
643                         notice( 'User not found' . EOL);
644                         goaway($a->get_baseurl(true) . '/admin/users' );
645                         return ''; // NOTREACHED
646                 }               
647                 switch($a->argv[2]){
648                         case "delete":{
649                 check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't');
650                                 // delete user
651                                 require_once("include/Contact.php");
652                                 user_remove($uid);
653                                 
654                                 notice( sprintf(t("User '%s' deleted"), $user[0]['username']) . EOL);
655                         }; break;
656                         case "block":{
657                 check_form_security_token_redirectOnErr('/admin/users', 'admin_users', 't');
658                                 q("UPDATE `user` SET `blocked`=%d WHERE `uid`=%s",
659                                         intval( 1-$user[0]['blocked'] ),
660                                         intval( $uid )
661                                 );
662                                 notice( sprintf( ($user[0]['blocked']?t("User '%s' unblocked"):t("User '%s' blocked")) , $user[0]['username']) . EOL);
663                         }; break;
664                 }
665                 goaway($a->get_baseurl(true) . '/admin/users' );
666                 return ''; // NOTREACHED
667                 
668         }
669         
670         /* get pending */
671         $pending = q("SELECT `register`.*, `contact`.`name`, `user`.`email`
672                                  FROM `register`
673                                  LEFT JOIN `contact` ON `register`.`uid` = `contact`.`uid`
674                                  LEFT JOIN `user` ON `register`.`uid` = `user`.`uid`;");
675         
676         
677         /* get users */
678
679         $total = q("SELECT count(*) as total FROM `user` where 1");
680         if(count($total)) {
681                 $a->set_pager_total($total[0]['total']);
682                 $a->set_pager_itemspage(100);
683         }
684         
685         
686         $users = q("SELECT `user` . * , `contact`.`name` , `contact`.`url` , `contact`.`micro`, `lastitem`.`lastitem_date`
687                                 FROM
688                                         (SELECT MAX(`item`.`changed`) as `lastitem_date`, `item`.`uid`
689                                         FROM `item`
690                                         WHERE `item`.`type` = 'wall'
691                                         GROUP BY `item`.`uid`) AS `lastitem`
692                                                  RIGHT OUTER JOIN `user` ON `user`.`uid` = `lastitem`.`uid`,
693                                            `contact`
694                                 WHERE
695                                            `user`.`uid` = `contact`.`uid`
696                                                 AND `user`.`verified` =1
697                                         AND `contact`.`self` =1
698                                 ORDER BY `contact`.`name` LIMIT %d, %d
699                                 ",
700                                 intval($a->pager['start']),
701                                 intval($a->pager['itemspage'])
702                                 );
703                                         
704         function _setup_users($e){
705         $a = get_app();
706                 $accounts = Array(
707                         t('Normal Account'), 
708                         t('Soapbox Account'),
709                         t('Community/Celebrity Account'),
710                         t('Automatic Friend Account')
711                 );
712                 $e['page-flags'] = $accounts[$e['page-flags']];
713                 $e['register_date'] = relative_date($e['register_date']);
714                 $e['login_date'] = relative_date($e['login_date']);
715                 $e['lastitem_date'] = relative_date($e['lastitem_date']);
716         $e['is_admin'] = ($e['email'] === $a->config['admin_email']);
717                 return $e;
718         }
719         $users = array_map("_setup_users", $users);
720         
721         
722         $t = get_markup_template("admin_users.tpl");
723         $o = replace_macros($t, array(
724                 // strings //
725                 '$title' => t('Administration'),
726                 '$page' => t('Users'),
727                 '$submit' => t('Submit'),
728                 '$select_all' => t('select all'),
729                 '$h_pending' => t('User registrations waiting for confirm'),
730                 '$th_pending' => array( t('Request date'), t('Name'), t('Email') ),
731                 '$no_pending' =>  t('No registrations.'),
732                 '$approve' => t('Approve'),
733                 '$deny' => t('Deny'),
734                 '$delete' => t('Delete'),
735                 '$block' => t('Block'),
736                 '$unblock' => t('Unblock'),
737         '$siteadmin' => t('Site admin'),
738                 
739                 '$h_users' => t('Users'),
740                 '$th_users' => array( t('Name'), t('Email'), t('Register date'), t('Last login'), t('Last item'),  t('Account') ),
741
742                 '$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?'),
743                 '$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?'),
744
745         '$form_security_token' => get_form_security_token("admin_users"),
746
747                 // values //
748                 '$baseurl' => $a->get_baseurl(true),
749
750                 '$pending' => $pending,
751                 '$users' => $users,
752         ));
753         $o .= paginate($a);
754         return $o;
755 }
756
757
758 /**
759  * Plugins admin page
760  *
761  * @param App $a
762  * @return string
763  */
764 function admin_page_plugins(&$a){
765         
766         /**
767          * Single plugin
768          */
769         if ($a->argc == 3){
770                 $plugin = $a->argv[2];
771                 if (!is_file("addon/$plugin/$plugin.php")){
772                         notice( t("Item not found.") );
773                         return '';
774                 }
775                 
776                 if (x($_GET,"a") && $_GET['a']=="t"){
777             check_form_security_token_redirectOnErr('/admin/plugins', 'admin_themes', 't');
778
779                         // Toggle plugin status
780                         $idx = array_search($plugin, $a->plugins);
781                         if ($idx !== false){
782                                 unset($a->plugins[$idx]);
783                                 uninstall_plugin($plugin);
784                                 info( sprintf( t("Plugin %s disabled."), $plugin ) );
785                         } else {
786                                 $a->plugins[] = $plugin;
787                                 install_plugin($plugin);
788                                 info( sprintf( t("Plugin %s enabled."), $plugin ) );
789                         }
790                         set_config("system","addon", implode(", ",$a->plugins));
791                         goaway($a->get_baseurl(true) . '/admin/plugins' );
792                         return ''; // NOTREACHED
793                 }
794                 // display plugin details
795                 require_once('library/markdown.php');
796
797                 if (in_array($plugin, $a->plugins)){
798                         $status="on"; $action= t("Disable");
799                 } else {
800                         $status="off"; $action= t("Enable");
801                 }
802                 
803                 $readme=Null;
804                 if (is_file("addon/$plugin/README.md")){
805                         $readme = file_get_contents("addon/$plugin/README.md");
806                         $readme = Markdown($readme);
807                 } else if (is_file("addon/$plugin/README")){
808                         $readme = "<pre>". file_get_contents("addon/$plugin/README") ."</pre>";
809                 } 
810                 
811                 $admin_form="";
812                 if (is_array($a->plugins_admin) && in_array($plugin, $a->plugins_admin)){
813                         @require_once("addon/$plugin/$plugin.php");
814                         $func = $plugin.'_plugin_admin';
815                         $func($a, $admin_form);
816                 }
817                 
818                 $t = get_markup_template("admin_plugins_details.tpl");
819                 return replace_macros($t, array(
820                         '$title' => t('Administration'),
821                         '$page' => t('Plugins'),
822                         '$toggle' => t('Toggle'),
823                         '$settings' => t('Settings'),
824                         '$baseurl' => $a->get_baseurl(true),
825                 
826                         '$plugin' => $plugin,
827                         '$status' => $status,
828                         '$action' => $action,
829                         '$info' => get_plugin_info($plugin),
830                         '$str_author' => t('Author: '),
831                         '$str_maintainer' => t('Maintainer: '),                 
832                 
833                         '$admin_form' => $admin_form,
834                         '$function' => 'plugins',
835                         '$screenshot' => '',
836                         '$readme' => $readme,
837
838             '$form_security_token' => get_form_security_token("admin_themes"),
839                 ));
840         } 
841          
842          
843         
844         /**
845          * List plugins
846          */
847         
848         $plugins = array();
849         $files = glob("addon/*/");
850         if($files) {
851                 foreach($files as $file) {      
852                         if (is_dir($file)){
853                                 list($tmp, $id)=array_map("trim", explode("/",$file));
854                                 $info = get_plugin_info($id);
855                                 $plugins[] = array( $id, (in_array($id,  $a->plugins)?"on":"off") , $info);
856                         }
857                 }
858         }
859         
860         $t = get_markup_template("admin_plugins.tpl");
861         return replace_macros($t, array(
862                 '$title' => t('Administration'),
863                 '$page' => t('Plugins'),
864                 '$submit' => t('Submit'),
865                 '$baseurl' => $a->get_baseurl(true),
866                 '$function' => 'plugins',       
867                 '$plugins' => $plugins,
868         '$form_security_token' => get_form_security_token("admin_themes"),
869         ));
870 }
871
872 /**
873  * @param array $themes
874  * @param string $th
875  * @param int $result
876  */
877 function toggle_theme(&$themes,$th,&$result) {
878         for($x = 0; $x < count($themes); $x ++) {
879                 if($themes[$x]['name'] === $th) {
880                         if($themes[$x]['allowed']) {
881                                 $themes[$x]['allowed'] = 0;
882                                 $result = 0;
883                         }
884                         else {
885                                 $themes[$x]['allowed'] = 1;
886                                 $result = 1;
887                         }
888                 }
889         }
890 }
891
892 /**
893  * @param array $themes
894  * @param string $th
895  * @return int
896  */
897 function theme_status($themes,$th) {
898         for($x = 0; $x < count($themes); $x ++) {
899                 if($themes[$x]['name'] === $th) {
900                         if($themes[$x]['allowed']) {
901                                 return 1;
902                         }
903                         else {
904                                 return 0;
905                         }
906                 }
907         }
908         return 0;
909 }
910
911
912 /**
913  * @param array $themes
914  * @return string
915  */
916 function rebuild_theme_table($themes) {
917         $o = '';
918         if(count($themes)) {
919                 foreach($themes as $th) {
920                         if($th['allowed']) {
921                                 if(strlen($o))
922                                         $o .= ',';
923                                 $o .= $th['name'];
924                         }
925                 }
926         }
927         return $o;
928 }
929
930         
931 /**
932  * Themes admin page
933  *
934  * @param App $a
935  * @return string
936  */
937 function admin_page_themes(&$a){
938         
939         $allowed_themes_str = get_config('system','allowed_themes');
940         $allowed_themes_raw = explode(',',$allowed_themes_str);
941         $allowed_themes = array();
942         if(count($allowed_themes_raw))
943                 foreach($allowed_themes_raw as $x)
944                         if(strlen(trim($x)))
945                                 $allowed_themes[] = trim($x);
946
947         $themes = array();
948     $files = glob('view/theme/*');
949     if($files) {
950         foreach($files as $file) {
951             $f = basename($file);
952             $is_experimental = intval(file_exists($file . '/experimental'));
953                         $is_supported = 1-(intval(file_exists($file . '/unsupported'))); // Is not used yet
954                         $is_allowed = intval(in_array($f,$allowed_themes));
955                         $themes[] = array('name' => $f, 'experimental' => $is_experimental, 'supported' => $is_supported, 'allowed' => $is_allowed);
956         }
957     }
958
959         if(! count($themes)) {
960                 notice( t('No themes found.'));
961                 return '';
962         }
963
964         /**
965          * Single theme
966          */
967
968         if ($a->argc == 3){
969                 $theme = $a->argv[2];
970                 if(! is_dir("view/theme/$theme")){
971                         notice( t("Item not found.") );
972                         return '';
973                 }
974                 
975                 if (x($_GET,"a") && $_GET['a']=="t"){
976             check_form_security_token_redirectOnErr('/admin/themes', 'admin_themes', 't');
977
978                         // Toggle theme status
979
980                         toggle_theme($themes,$theme,$result);
981                         $s = rebuild_theme_table($themes);
982                         if($result)
983                                 info( sprintf('Theme %s enabled.',$theme));
984                         else
985                                 info( sprintf('Theme %s disabled.',$theme));
986
987                         set_config('system','allowed_themes',$s);
988                         goaway($a->get_baseurl(true) . '/admin/themes' );
989                         return ''; // NOTREACHED
990                 }
991
992                 // display theme details
993                 require_once('library/markdown.php');
994
995                 if (theme_status($themes,$theme)) {
996                         $status="on"; $action= t("Disable");
997                 } else {
998                         $status="off"; $action= t("Enable");
999                 }
1000                 
1001                 $readme=Null;
1002                 if (is_file("view/theme/$theme/README.md")){
1003                         $readme = file_get_contents("view/theme/$theme/README.md");
1004                         $readme = Markdown($readme);
1005                 } else if (is_file("view/theme/$theme/README")){
1006                         $readme = "<pre>". file_get_contents("view/theme/$theme/README") ."</pre>";
1007                 } 
1008                 
1009                 $admin_form="";
1010                 if (is_file("view/theme/$theme/config.php")){
1011                         require_once("view/theme/$theme/config.php");
1012                         if(function_exists("theme_admin")){
1013                                 $admin_form = theme_admin($a);
1014                         }
1015                         
1016                 }
1017                 
1018
1019                 $screenshot = array( get_theme_screenshot($theme), t('Screenshot'));
1020                 if(! stristr($screenshot[0],$theme))
1021                         $screenshot = null;             
1022
1023                 $t = get_markup_template("admin_plugins_details.tpl");
1024                 return replace_macros($t, array(
1025                         '$title' => t('Administration'),
1026                         '$page' => t('Themes'),
1027                         '$toggle' => t('Toggle'),
1028                         '$settings' => t('Settings'),
1029                         '$baseurl' => $a->get_baseurl(true),
1030                 
1031                         '$plugin' => $theme,
1032                         '$status' => $status,
1033                         '$action' => $action,
1034                         '$info' => get_theme_info($theme),
1035                         '$function' => 'themes',
1036                         '$admin_form' => $admin_form,
1037                         '$str_author' => t('Author: '),
1038                         '$str_maintainer' => t('Maintainer: '),
1039                         '$screenshot' => $screenshot,
1040                         '$readme' => $readme,
1041
1042                         '$form_security_token' => get_form_security_token("admin_themes"),
1043                 ));
1044         } 
1045          
1046          
1047         
1048         /**
1049          * List themes
1050          */
1051         
1052         $xthemes = array();
1053         if($themes) {
1054                 foreach($themes as $th) {
1055                         $xthemes[] = array($th['name'],(($th['allowed']) ? "on" : "off"), get_theme_info($th['name']));
1056                 }
1057         }
1058         
1059         $t = get_markup_template("admin_plugins.tpl");
1060         return replace_macros($t, array(
1061                 '$title' => t('Administration'),
1062                 '$page' => t('Themes'),
1063                 '$submit' => t('Submit'),
1064                 '$baseurl' => $a->get_baseurl(true),
1065                 '$function' => 'themes',
1066                 '$plugins' => $xthemes,
1067                 '$experimental' => t('[Experimental]'),
1068                 '$unsupported' => t('[Unsupported]'),
1069         '$form_security_token' => get_form_security_token("admin_themes"),
1070         ));
1071 }
1072
1073
1074 /**
1075  * Logs admin page
1076  *
1077  * @param App $a
1078  */
1079  
1080 function admin_page_logs_post(&$a) {
1081         if (x($_POST,"page_logs")) {
1082         check_form_security_token_redirectOnErr('/admin/logs', 'admin_logs');
1083
1084                 $logfile                =       ((x($_POST,'logfile'))          ? notags(trim($_POST['logfile']))       : '');
1085                 $debugging              =       ((x($_POST,'debugging'))        ? true                                                          : false);
1086                 $loglevel               =       ((x($_POST,'loglevel'))         ? intval(trim($_POST['loglevel']))      : 0);
1087
1088                 set_config('system','logfile', $logfile);
1089                 set_config('system','debugging',  $debugging);
1090                 set_config('system','loglevel', $loglevel);
1091
1092                 
1093         }
1094
1095         info( t("Log settings updated.") );
1096         goaway($a->get_baseurl(true) . '/admin/logs' );
1097         return; // NOTREACHED   
1098 }
1099
1100 /**
1101  * @param App $a
1102  * @return string
1103  */
1104 function admin_page_logs(&$a){
1105         
1106         $log_choices = Array(
1107                 LOGGER_NORMAL => 'Normal',
1108                 LOGGER_TRACE => 'Trace',
1109                 LOGGER_DEBUG => 'Debug',
1110                 LOGGER_DATA => 'Data',
1111                 LOGGER_ALL => 'All'
1112         );
1113         
1114         $t = get_markup_template("admin_logs.tpl");
1115
1116         $f = get_config('system','logfile');
1117
1118         $data = '';
1119
1120         if(!file_exists($f)) {
1121                 $data = t("Error trying to open <strong>$f</strong> log file.\r\n<br/>Check to see if file $f exist and is 
1122 readable.");
1123         }
1124         else {
1125                 $fp = fopen($f, 'r');
1126                 if(!$fp) {
1127                         $data = t("Couldn't open <strong>$f</strong> log file.\r\n<br/>Check to see if file $f is readable.");
1128                 }
1129                 else {
1130                         $fstat = fstat($fp);
1131                         $size = $fstat['size'];
1132                         if($size != 0)
1133                         {
1134                                 if($size > 5000000 || $size < 0)
1135                                         $size = 5000000;
1136                                 $seek = fseek($fp,0-$size,SEEK_END);
1137                                 if($seek === 0) {
1138                                         $data = escape_tags(fread($fp,$size));
1139                                         while(! feof($fp))
1140                                                 $data .= escape_tags(fread($fp,4096));
1141                                 }
1142                         }
1143                         fclose($fp);
1144                 }
1145         }                       
1146
1147         $includes = array(
1148                 '$field_checkbox'       => 'field_checkbox.tpl',
1149                 '$field_input'          => 'field_input.tpl',
1150                 '$field_select'         => 'field_select.tpl',
1151         );
1152         $includes = set_template_includes($a->theme['template_engine'], $includes);
1153
1154         return replace_macros($t, $includes + array(
1155                 '$title' => t('Administration'),
1156                 '$page' => t('Logs'),
1157                 '$submit' => t('Submit'),
1158                 '$clear' => t('Clear'),
1159                 '$data' => $data,
1160                 '$baseurl' => $a->get_baseurl(true),
1161                 '$logname' =>  get_config('system','logfile'),
1162                 
1163                                                                         // name, label, value, help string, extra data...
1164                 '$debugging'            => array('debugging', t("Debugging"),get_config('system','debugging'), ""),
1165                 '$logfile'                      => array('logfile', t("Log file"), get_config('system','logfile'), t("Must be writable by web server. Relative to your Friendica top-level directory.")),
1166                 '$loglevel'             => array('loglevel', t("Log level"), get_config('system','loglevel'), "", $log_choices),
1167
1168         '$form_security_token' => get_form_security_token("admin_logs"),
1169         ));
1170 }
1171
1172 /**
1173  * @param App $a
1174  */
1175 function admin_page_remoteupdate_post(&$a) {
1176         // this function should be called via ajax post
1177         if(!is_site_admin()) {
1178                 return;
1179         }
1180
1181         
1182         if (x($_POST,'remotefile') && $_POST['remotefile']!=""){
1183                 $remotefile = $_POST['remotefile'];
1184                 $ftpdata = (x($_POST['ftphost'])?$_POST:false);
1185                 doUpdate($remotefile, $ftpdata);
1186         } else {
1187                 echo "No remote file to download. Abort!";
1188         }
1189
1190         killme();
1191 }
1192
1193 /**
1194  * @param App $a
1195  * @return string
1196  */
1197 function admin_page_remoteupdate(&$a) {
1198         if(!is_site_admin()) {
1199                 return login(false);
1200         }
1201
1202         $canwrite = canWeWrite();
1203         $canftp = function_exists('ftp_connect');
1204         
1205         $needupdate = true;
1206         $u = checkUpdate();
1207         if (!is_array($u)){
1208                 $needupdate = false;
1209                 $u = array('','','');
1210         }
1211         
1212         $tpl = get_markup_template("admin_remoteupdate.tpl");
1213
1214         $includes = array(
1215                 '$field_input'          => 'field_input.tpl',
1216                 '$field_password'       => 'field_password.tpl',
1217         );
1218         $includes = set_template_includes($a->theme['template_engine'], $includes);
1219
1220         return replace_macros($tpl, $includes + array(
1221                 '$baseurl' => $a->get_baseurl(true),
1222                 '$submit' => t("Update now"),
1223                 '$close' => t("Close"),
1224                 '$localversion' => FRIENDICA_VERSION,
1225                 '$remoteversion' => $u[1],
1226                 '$needupdate' => $needupdate,
1227                 '$canwrite' => $canwrite,
1228                 '$canftp'       => $canftp,
1229                 '$ftphost'      => array('ftphost', t("FTP Host"), '',''),
1230                 '$ftppath'      => array('ftppath', t("FTP Path"), '/',''),
1231                 '$ftpuser'      => array('ftpuser', t("FTP User"), '',''),
1232                 '$ftppwd'       => array('ftppwd', t("FTP Password"), '',''),
1233                 '$remotefile'=>array('remotefile','', $u['2'],''),
1234         ));
1235         
1236 }