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