2011-10-30 23:12:07 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function friendica_init(&$a) {
|
|
|
|
if ($a->argv[1]=="json"){
|
|
|
|
$register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN');
|
|
|
|
|
2012-03-30 03:22:20 +02:00
|
|
|
$sql_extra = '';
|
|
|
|
if(x($a->config,'admin_nickname')) {
|
|
|
|
$sql_extra = sprintf(" AND nickname = '%s' ",dbesc($a->config['admin_nickname']));
|
|
|
|
}
|
2011-10-30 23:12:07 +01:00
|
|
|
if (isset($a->config['admin_email']) && $a->config['admin_email']!=''){
|
2013-12-02 00:11:31 +01:00
|
|
|
$adminlist = explode(",", str_replace(" ", "", $a->config['admin_email']));
|
|
|
|
|
|
|
|
//$r = q("SELECT username, nickname FROM user WHERE email='%s' $sql_extra", dbesc($a->config['admin_email']));
|
|
|
|
$r = q("SELECT username, nickname FROM user WHERE email='%s' $sql_extra", dbesc($adminlist[0]));
|
2011-10-30 23:12:07 +01:00
|
|
|
$admin = array(
|
|
|
|
'name' => $r[0]['username'],
|
|
|
|
'profile'=> $a->get_baseurl().'/profile/'.$r[0]['nickname'],
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
$admin = false;
|
|
|
|
}
|
|
|
|
|
2012-05-01 08:07:52 +02:00
|
|
|
$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'];
|
|
|
|
}
|
|
|
|
|
2016-01-17 03:25:17 +01:00
|
|
|
load_config('feature_lock');
|
|
|
|
$locked_features = array();
|
|
|
|
if(is_array($a->config['feature_lock']) && count($a->config['feature_lock'])) {
|
|
|
|
foreach($a->config['feature_lock'] as $k => $v) {
|
|
|
|
if($k === 'config_loaded')
|
|
|
|
continue;
|
|
|
|
$locked_features[$k] = intval($v);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-30 23:12:07 +01:00
|
|
|
$data = Array(
|
2011-11-24 08:17:26 +01:00
|
|
|
'version' => FRIENDICA_VERSION,
|
2011-10-30 23:12:07 +01:00
|
|
|
'url' => z_root(),
|
2012-05-01 08:07:52 +02:00
|
|
|
'plugins' => $visible_plugins,
|
2016-01-17 03:25:17 +01:00
|
|
|
'locked_features' => $locked_features,
|
2011-10-30 23:12:07 +01:00
|
|
|
'register_policy' => $register_policy[$a->config['register_policy']],
|
|
|
|
'admin' => $admin,
|
|
|
|
'site_name' => $a->config['sitename'],
|
2011-11-24 08:17:26 +01:00
|
|
|
'platform' => FRIENDICA_PLATFORM,
|
2014-08-10 12:45:34 +02:00
|
|
|
'info' => ((x($a->config,'info')) ? $a->config['info'] : ''),
|
2015-02-08 12:07:35 +01:00
|
|
|
'no_scrape_url' => $a->get_baseurl().'/noscrape'
|
2011-10-30 23:12:07 +01:00
|
|
|
);
|
|
|
|
|
|
|
|
echo json_encode($data);
|
|
|
|
killme();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
|
|
|
|
|
2011-10-30 23:12:07 +01:00
|
|
|
function friendica_content(&$a) {
|
|
|
|
|
|
|
|
$o = '';
|
|
|
|
$o .= '<h3>Friendica</h3>';
|
|
|
|
|
|
|
|
|
|
|
|
$o .= '<p></p><p>';
|
|
|
|
|
2011-11-24 08:17:26 +01:00
|
|
|
$o .= t('This is Friendica, version') . ' ' . FRIENDICA_VERSION . ' ';
|
2011-10-30 23:12:07 +01:00
|
|
|
$o .= t('running at web location') . ' ' . z_root() . '</p><p>';
|
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
$o .= t('Please visit <a href="http://friendica.com">Friendica.com</a> to learn more about the Friendica project.') . '</p><p>';
|
2011-10-30 23:12:07 +01:00
|
|
|
|
2015-07-08 13:15:14 +02:00
|
|
|
$o .= t('Bug reports and issues: please visit') . ' ' . '<a href="https://github.com/friendica/friendica/issues?state=open">'.t('the bugtracker at github').'</a></p><p>';
|
2011-10-30 23:12:07 +01:00
|
|
|
$o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com') . '</p>';
|
|
|
|
|
|
|
|
$o .= '<p></p>';
|
|
|
|
|
2012-05-01 08:07:52 +02:00
|
|
|
$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'];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(count($visible_plugins)) {
|
2012-03-25 06:50:04 +02:00
|
|
|
$o .= '<p>' . t('Installed plugins/addons/apps:') . '</p>';
|
2012-05-01 08:07:52 +02:00
|
|
|
$sorted = $visible_plugins;
|
2012-03-25 06:50:04 +02:00
|
|
|
$s = '';
|
|
|
|
sort($sorted);
|
|
|
|
foreach($sorted as $p) {
|
|
|
|
if(strlen($p)) {
|
|
|
|
if(strlen($s)) $s .= ', ';
|
|
|
|
$s .= $p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$o .= '<div style="margin-left: 25px; margin-right: 25px;">' . $s . '</div>';
|
2011-10-30 23:12:07 +01:00
|
|
|
}
|
|
|
|
else
|
2012-03-25 06:50:04 +02:00
|
|
|
$o .= '<p>' . t('No installed plugins/addons/apps') . '</p>';
|
2011-10-30 23:12:07 +01:00
|
|
|
|
2016-02-07 15:11:34 +01:00
|
|
|
call_hooks('about_hook', $o);
|
2011-10-30 23:12:07 +01:00
|
|
|
|
|
|
|
return $o;
|
2016-02-07 15:11:34 +01:00
|
|
|
|
2011-10-30 23:12:07 +01:00
|
|
|
}
|