X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffriendica.php;h=f1b0fb4761b83fe782df41f379b8cf2c3a8e0d61;hb=303aef34f0804f9becc10610ae85985835f9d9bf;hp=f613dfd39cef05e171db82c410fc75be35714507;hpb=be7041c3e06ee5a799851ac3612849dde55a8198;p=friendica.git diff --git a/mod/friendica.php b/mod/friendica.php index f613dfd39c..f1b0fb4761 100644 --- a/mod/friendica.php +++ b/mod/friendica.php @@ -1,111 +1,139 @@ argv[1]=="json"){ - $register_policy = Array('REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN'); +/** + * @file mod/friendica.php + */ + +use Friendica\App; +use Friendica\Core\Addon; +use Friendica\Core\Config; +use Friendica\Core\L10n; +use Friendica\Core\System; +use Friendica\Database\DBM; + +function friendica_init(App $a) +{ + if (!empty($a->argv[1]) && ($a->argv[1] == "json")) { + $register_policy = ['REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN']; $sql_extra = ''; - if(x($a->config,'admin_nickname')) { - $sql_extra = sprintf(" AND nickname = '%s' ",dbesc($a->config['admin_nickname'])); + if (x($a->config, 'admin_nickname')) { + $sql_extra = sprintf(" AND `nickname` = '%s' ", dbesc(Config::get('config', 'admin_nickname'))); } - if (isset($a->config['admin_email']) && $a->config['admin_email']!=''){ - $adminlist = explode(",", str_replace(" ", "", $a->config['admin_email'])); + if (!empty(Config::get('config', 'admin_email'))) { + $adminlist = explode(",", str_replace(" ", "", Config::get('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])); - $admin = array( + $r = q("SELECT `username`, `nickname` FROM `user` WHERE `email` = '%s' $sql_extra", dbesc($adminlist[0])); + $admin = [ 'name' => $r[0]['username'], - 'profile'=> App::get_baseurl().'/profile/'.$r[0]['nickname'], - ); + 'profile'=> System::baseUrl() . '/profile/' . $r[0]['nickname'], + ]; } else { $admin = false; } - $visible_plugins = array(); - if(is_array($a->plugins) && count($a->plugins)) { - $r = q("select * from addon where hidden = 0"); - if (dbm::is_result($r)) - foreach($r as $rr) - $visible_plugins[] = $rr['name']; + $visible_addons = []; + if (is_array($a->addons) && count($a->addons)) { + $r = q("SELECT * FROM `addon` WHERE `hidden` = 0"); + if (DBM::is_result($r)) { + foreach ($r as $rr) { + $visible_addons[] = $rr['name']; + } + } } Config::load('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') + $locked_features = []; + if (!empty($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); } } - $data = Array( - 'version' => FRIENDICA_VERSION, - 'url' => z_root(), - 'plugins' => $visible_plugins, + $data = [ + 'version' => FRIENDICA_VERSION, + 'url' => System::baseUrl(), + 'addons' => $visible_addons, 'locked_features' => $locked_features, - 'register_policy' => $register_policy[$a->config['register_policy']], - 'admin' => $admin, - 'site_name' => $a->config['sitename'], - 'platform' => FRIENDICA_PLATFORM, - 'info' => ((x($a->config,'info')) ? $a->config['info'] : ''), - 'no_scrape_url' => App::get_baseurl().'/noscrape' - ); + 'register_policy' => $register_policy[intval(Config::get('config', 'register_policy'))], + 'admin' => $admin, + 'site_name' => Config::get('config', 'sitename'), + 'platform' => FRIENDICA_PLATFORM, + 'info' => Config::get('config', 'info'), + 'no_scrape_url' => System::baseUrl().'/noscrape' + ]; echo json_encode($data); killme(); } } - - -function friendica_content(App $a) { - - $o = ''; - $o .= '

Friendica

'; - - - $o .= '

'; - - $o .= t('This is Friendica, version') . ' ' . FRIENDICA_VERSION . ' '; - $o .= t('running at web location') . ' ' . z_root() . '

'; - - $o .= t('Please visit Friendica.com to learn more about the Friendica project.') . '

'; - - $o .= t('Bug reports and issues: please visit') . ' ' . ''.t('the bugtracker at github').'

'; - $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com') . '

'; - - $o .= '

'; - - $visible_plugins = array(); - if(is_array($a->plugins) && count($a->plugins)) { - $r = q("select * from addon where hidden = 0"); - if (dbm::is_result($r)) - foreach($r as $rr) - $visible_plugins[] = $rr['name']; +function friendica_content(App $a) +{ + $o = '

Friendica

' . PHP_EOL; + $o .= '

'; + $o .= L10n::t('This is Friendica, version') . ' ' . FRIENDICA_VERSION . ' '; + $o .= L10n::t('running at web location') . ' ' . System::baseUrl(); + $o .= '

' . PHP_EOL; + + $o .= '

'; + $o .= L10n::t('Please visit Friendi.ca to learn more about the Friendica project.') . PHP_EOL; + $o .= '

' . PHP_EOL; + + $o .= '

'; + $o .= L10n::t('Bug reports and issues: please visit') . ' ' . ''.L10n::t('the bugtracker at github').''; + $o .= '

' . PHP_EOL; + $o .= '

'; + $o .= L10n::t('Suggestions, praise, etc. - please email "info" at "friendi - dot - ca'); + $o .= '

' . PHP_EOL; + + $visible_addons = []; + if (is_array($a->addons) && count($a->addons)) { + $r = q("SELECT * FROM `addon` WHERE `hidden` = 0"); + if (DBM::is_result($r)) { + foreach ($r as $rr) { + $visible_addons[] = $rr['name']; + } + } } - - if(count($visible_plugins)) { - $o .= '

' . t('Installed plugins/addons/apps:') . '

'; - $sorted = $visible_plugins; + if (count($visible_addons)) { + $o .= '

' . L10n::t('Installed addons/apps:') . '

' . PHP_EOL; + $sorted = $visible_addons; $s = ''; sort($sorted); - foreach($sorted as $p) { - if(strlen($p)) { - if(strlen($s)) $s .= ', '; + foreach ($sorted as $p) { + if (strlen($p)) { + if (strlen($s)) { + $s .= ', '; + } $s .= $p; } } - $o .= '
' . $s . '
'; + $o .= '
' . $s . '
' . PHP_EOL; + } else { + $o .= '

' . L10n::t('No installed addons/apps') . '

' . PHP_EOL; } - else - $o .= '

' . t('No installed plugins/addons/apps') . '

'; - call_hooks('about_hook', $o); + if (Config::get('system', 'tosdisplay')) + { + $o .= '

'.L10n::t('Read about the Terms of Service of this node.', System::baseurl()).'

'; + } - return $o; + $blocklist = Config::get('system', 'blocklist', []); + if (!empty($blocklist)) { + $o .= '

' . L10n::t('On this server the following remote servers are blocked.') . '

' . PHP_EOL; + $o .= '' . PHP_EOL; + foreach ($blocklist as $b) { + $o .= '' . PHP_EOL; + } + $o .= '
' . L10n::t('Blocked domain') . '' . L10n::t('Reason for the block') . '
' . $b['domain'] .'' . $b['reason'] . '
' . PHP_EOL; + } + Addon::callHooks('about_hook', $o); + + return $o; }