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