2015-08-23 22:38:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function siteinfo_init(&$a) {
|
2015-12-06 02:08:25 +01:00
|
|
|
if (argv(1) === 'json') {
|
|
|
|
$data = get_site_info();
|
2015-08-23 22:38:18 +02:00
|
|
|
json_return_and_die($data);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
function siteinfo_content(&$a) {
|
|
|
|
|
|
|
|
if(! get_config('system','hidden_version_siteinfo')) {
|
|
|
|
$version = sprintf( t('Version %s'), RED_VERSION );
|
|
|
|
if(@is_dir('.git') && function_exists('shell_exec')) {
|
|
|
|
$commit = @shell_exec('git log -1 --format="%h"');
|
2016-01-12 02:47:38 +01:00
|
|
|
$tag = get_std_version(); // @shell_exec('git describe --tags --abbrev=0');
|
2015-08-23 22:38:18 +02:00
|
|
|
}
|
|
|
|
if(! isset($commit) || strlen($commit) > 16)
|
|
|
|
$commit = '';
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$version = $commit = '';
|
|
|
|
}
|
|
|
|
$visible_plugins = array();
|
|
|
|
if(is_array($a->plugins) && count($a->plugins)) {
|
|
|
|
$r = q("select * from addon where hidden = 0");
|
|
|
|
if(count($r))
|
|
|
|
foreach($r as $rr)
|
|
|
|
$visible_plugins[] = $rr['name'];
|
|
|
|
}
|
|
|
|
|
|
|
|
$plugins_list = '';
|
|
|
|
if(count($visible_plugins)) {
|
|
|
|
$plugins_text = t('Installed plugins/addons/apps:');
|
|
|
|
$sorted = $visible_plugins;
|
|
|
|
$s = '';
|
|
|
|
sort($sorted);
|
|
|
|
foreach($sorted as $p) {
|
|
|
|
if(strlen($p)) {
|
|
|
|
if(strlen($s)) $s .= ', ';
|
|
|
|
$s .= $p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$plugins_list .= $s;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
$plugins_text = t('No installed plugins/addons/apps');
|
|
|
|
|
|
|
|
$txt = get_config('system','admininfo');
|
|
|
|
$admininfo = bbcode($txt);
|
|
|
|
|
|
|
|
if(file_exists('doc/site_donate.html'))
|
|
|
|
$donate .= file_get_contents('doc/site_donate.html');
|
|
|
|
|
2015-10-24 13:04:14 +02:00
|
|
|
if(function_exists('sys_getloadavg'))
|
|
|
|
$loadavg = sys_getloadavg();
|
|
|
|
|
2015-08-23 22:38:18 +02:00
|
|
|
$o = replace_macros(get_markup_template('siteinfo.tpl'), array(
|
|
|
|
'$title' => t('$Projectname'),
|
|
|
|
'$description' => t('This is a hub of $Projectname - a global cooperative network of decentralized privacy enhanced websites.'),
|
|
|
|
'$version' => $version,
|
|
|
|
'$tag_txt' => t('Tag: '),
|
|
|
|
'$tag' => $tag,
|
|
|
|
'$polled' => t('Last background fetch: '),
|
|
|
|
'$lastpoll' => get_poller_runtime(),
|
2015-10-24 13:04:14 +02:00
|
|
|
'$load_average' => t('Current load average: '),
|
|
|
|
'$loadavg_all' => $loadavg[0] . ', ' . $loadavg[1] . ', ' . $loadavg[2],
|
2015-08-23 22:38:18 +02:00
|
|
|
'$commit' => $commit,
|
|
|
|
'$web_location' => t('Running at web location') . ' ' . z_root(),
|
2015-10-24 13:04:14 +02:00
|
|
|
'$visit' => t('Please visit <a href="http://hubzilla.org">hubzilla.org</a> to learn more about $Projectname.'),
|
2015-08-23 22:38:18 +02:00
|
|
|
'$bug_text' => t('Bug reports and issues: please visit'),
|
|
|
|
'$bug_link_url' => 'https://github.com/redmatrix/hubzilla/issues',
|
|
|
|
'$bug_link_text' => t('$projectname issues'),
|
|
|
|
'$contact' => t('Suggestions, praise, etc. - please email "redmatrix" at librelist - dot com'),
|
|
|
|
'$donate' => $donate,
|
|
|
|
'$adminlabel' => t('Site Administrators'),
|
|
|
|
'$admininfo' => $admininfo,
|
|
|
|
'$plugins_text' => $plugins_text,
|
|
|
|
'$plugins_list' => $plugins_list
|
|
|
|
));
|
|
|
|
|
|
|
|
call_hooks('about_hook', $o);
|
|
|
|
|
|
|
|
return $o;
|
|
|
|
|
|
|
|
}
|