streams/mod/siteinfo.php

155 lines
5.2 KiB
PHP
Raw Normal View History

2011-10-30 22:12:07 +00:00
<?php
2012-11-16 22:13:03 +00:00
function siteinfo_init(&$a) {
2012-11-16 22:12:01 +00:00
2011-10-30 22:12:07 +00:00
if ($a->argv[1]=="json"){
$register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN');
2014-09-30 11:30:04 +00:00
$directory_mode = Array('DIRECTORY_MODE_NORMAL', 'DIRECTORY_MODE_SECONDARY','DIRECTORY_MODE_PRIMARY', 'DIRECTORY_MODE_STANDALONE');
$sql_extra = '';
2014-09-12 05:41:45 +00:00
$r = q("select * from channel left join account on account_id = channel_account_id where ( account_roles & 4096 ) and account_default_channel = channel_id");
if($r) {
$admin = array();
foreach($r as $rr) {
if($rr['channel_pageflags'] & PAGE_HUBADMIN)
$admin[] = array( 'name' => $rr['channel_name'], 'address' => $rr['channel_address'] . '@' . get_app()->get_hostname(), 'channel' => z_root() . '/channel/' . $rr['channel_address']);
}
if(! $admin) {
foreach($r as $rr) {
$admin[] = array( 'name' => $rr['channel_name'], 'address' => $rr['channel_address'] . '@' . get_app()->get_hostname(), 'channel' => z_root() . '/channel/' . $rr['channel_address']);
}
2014-09-12 05:41:45 +00:00
}
}
2014-09-12 05:41:45 +00:00
else {
2011-10-30 22:12:07 +00:00
$admin = false;
}
2014-09-12 05:52:32 +00:00
$def_service_class = get_config('system','default_service_class');
if($def_service_class)
$service_class = get_config('service_class',$def_service_class);
else
$service_class = false;
$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'];
}
sort($visible_plugins);
if(@is_dir('.git') && function_exists('shell_exec'))
2014-09-12 05:41:45 +00:00
$commit = trim(@shell_exec('git log -1 --format="%h"'));
if(! isset($commit) || strlen($commit) > 16)
$commit = '';
2014-09-12 05:41:45 +00:00
$site_info = get_config('system','info');
$site_name = get_config('system','sitename');
2014-09-28 17:31:04 +00:00
//Statistics
$channels_total_stat = intval(get_config('system','channels_total_stat'));
$channels_active_halfyear_stat = intval(get_config('system','channels_active_halfyear_stat'));
$channels_active_monthly_stat = intval(get_config('system','channels_active_monthly_stat'));
$local_posts_stat = intval(get_config('system','local_posts_stat'));
$hide_in_statistics = intval(get_config('system','hide_in_statistics'));
2014-09-28 17:31:04 +00:00
2011-10-30 22:12:07 +00:00
$data = Array(
2013-04-15 05:24:47 +00:00
'version' => RED_VERSION,
'commit' => $commit,
2011-10-30 22:12:07 +00:00
'url' => z_root(),
'plugins' => $visible_plugins,
2013-01-03 21:50:23 +00:00
'register_policy' => $register_policy[$a->config['system']['register_policy']],
2014-09-30 11:30:04 +00:00
'directory_mode' => $directory_mode[$a->config['system']['directory_mode']],
'language' => get_config('system','language'),
2014-09-12 05:41:45 +00:00
'diaspora_emulation' => get_config('system','diaspora_enabled'),
'rss_connections' => get_config('system','feed_contacts'),
2014-09-12 05:52:32 +00:00
'default_service_restrictions' => $service_class,
2011-10-30 22:12:07 +00:00
'admin' => $admin,
2014-09-12 05:41:45 +00:00
'site_name' => (($site_name) ? $site_name : ''),
2013-04-15 05:24:47 +00:00
'platform' => RED_PLATFORM,
2014-09-28 17:31:04 +00:00
'info' => (($site_info) ? $site_info : ''),
'channels_total' => $channels_total_stat,
'channels_active_halfyear' => $channels_active_halfyear_stat,
'channels_active_monthly' => $channels_active_monthly_stat,
'local_posts' => $local_posts_stat,
'hide_in_statistics' => $hide_in_statistics
2011-10-30 22:12:07 +00:00
);
2014-09-12 05:41:45 +00:00
json_return_and_die($data);
2011-10-30 22:12:07 +00:00
}
}
2012-11-16 22:12:01 +00:00
function siteinfo_content(&$a) {
if(! get_config('system','hidden_version_siteinfo')) {
2013-04-15 05:24:47 +00:00
$version = sprintf( t('Version %s'), RED_VERSION );
if(@is_dir('.git') && function_exists('shell_exec')) {
$commit = @shell_exec('git log -1 --format="%h"');
$tag = @shell_exec('git describe --tags --abbrev=0');
}
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'];
}
2013-02-21 02:56:59 +00:00
$plugins_list = '';
if(count($visible_plugins)) {
2013-02-21 02:56:59 +00:00
$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;
}
}
2013-02-21 02:56:59 +00:00
$plugins_list .= $s;
2011-10-30 22:12:07 +00:00
}
else
2013-02-21 02:56:59 +00:00
$plugins_text = t('No installed plugins/addons/apps');
$admininfo = bbcode(get_config('system','admininfo'));
if(file_exists('doc/site_donate.html'))
$donate .= file_get_contents('doc/site_donate.html');
2013-02-21 02:56:59 +00:00
$o = replace_macros(get_markup_template('siteinfo.tpl'), array(
'$title' => t('Red'),
2014-07-31 09:33:34 +00:00
'$description' => t('This is a hub of the Red Matrix - a global cooperative network of decentralized privacy enhanced websites.'),
2013-02-21 02:56:59 +00:00
'$version' => $version,
'$tag' => $tag,
'$commit' => $commit,
2013-02-21 02:56:59 +00:00
'$web_location' => t('Running at web location') . ' ' . z_root(),
'$visit' => t('Please visit <a href="http://getzot.com">GetZot.com</a> to learn more about the Red Matrix.'),
2013-02-21 02:56:59 +00:00
'$bug_text' => t('Bug reports and issues: please visit'),
'$bug_link_url' => 'https://github.com/friendica/red/issues',
'$bug_link_text' => 'redmatrix issues',
'$contact' => t('Suggestions, praise, etc. - please email "redmatrix" at librelist - dot com'),
'$donate' => $donate,
'$adminlabel' => t('Site Administrators'),
'$admininfo' => $admininfo,
2013-02-21 02:56:59 +00:00
'$plugins_text' => $plugins_text,
'$plugins_list' => $plugins_list
));
2011-10-30 22:12:07 +00:00
call_hooks('about_hook', $o);
return $o;
}