X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffriendica.php;h=f2cb5c50b6fe1b55f9ad07053da15d1d2dcc03c0;hb=f8b74033a4f990e421814ea5bf8b443104e61feb;hp=6c143634caf980ae9cc430e46dfc8c53f0b380ca;hpb=334d3921549a538130220f8b627f39f3e0877e26;p=friendica.git diff --git a/mod/friendica.php b/mod/friendica.php index 6c143634ca..f2cb5c50b6 100644 --- a/mod/friendica.php +++ b/mod/friendica.php @@ -2,26 +2,27 @@ /** * @file mod/friendica.php */ + use Friendica\App; use Friendica\Core\Addon; -use Friendica\Core\System; use Friendica\Core\Config; use Friendica\Core\L10n; -use Friendica\Database\DBM; +use Friendica\Core\System; +use Friendica\Database\DBA; function friendica_init(App $a) { - if ($a->argv[1] == "json") { + 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'])); + $sql_extra = sprintf(" AND `nickname` = '%s' ", DBA::escape(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($adminlist[0])); + $r = q("SELECT `username`, `nickname` FROM `user` WHERE `email` = '%s' $sql_extra", DBA::escape($adminlist[0])); $admin = [ 'name' => $r[0]['username'], 'profile'=> System::baseUrl() . '/profile/' . $r[0]['nickname'], @@ -33,7 +34,7 @@ function friendica_init(App $a) $visible_addons = []; if (is_array($a->addons) && count($a->addons)) { $r = q("SELECT * FROM `addon` WHERE `hidden` = 0"); - if (DBM::is_result($r)) { + if (DBA::isResult($r)) { foreach ($r as $rr) { $visible_addons[] = $rr['name']; } @@ -42,7 +43,7 @@ function friendica_init(App $a) Config::load('feature_lock'); $locked_features = []; - if (is_array($a->config['feature_lock']) && count($a->config['feature_lock'])) { + if (!empty($a->config['feature_lock']) && count($a->config['feature_lock'])) { foreach ($a->config['feature_lock'] as $k => $v) { if ($k === 'config_loaded') { continue; @@ -55,13 +56,13 @@ function friendica_init(App $a) $data = [ 'version' => FRIENDICA_VERSION, 'url' => System::baseUrl(), - 'addons' => $visible_addons, + 'addons' => $visible_addons, 'locked_features' => $locked_features, - 'register_policy' => $register_policy[$a->config['register_policy']], + 'register_policy' => $register_policy[intval(Config::get('config', 'register_policy'))], 'admin' => $admin, - 'site_name' => $a->config['sitename'], + 'site_name' => Config::get('config', 'sitename'), 'platform' => FRIENDICA_PLATFORM, - 'info' => ((x($a->config, 'info')) ? $a->config['info'] : ''), + 'info' => Config::get('config', 'info'), 'no_scrape_url' => System::baseUrl().'/noscrape' ]; @@ -74,8 +75,9 @@ 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 .= L10n::t('This is Friendica, version %s that is running at the web location %s. The database version is %s, the post update version is %s.', + '' . FRIENDICA_VERSION . '', System::baseUrl(), '' . DB_UPDATE_VERSION . '', + '' . Config::get("system", "post_update_version") . ''); $o .= '

' . PHP_EOL; $o .= '

'; @@ -92,7 +94,7 @@ function friendica_content(App $a) $visible_addons = []; if (is_array($a->addons) && count($a->addons)) { $r = q("SELECT * FROM `addon` WHERE `hidden` = 0"); - if (DBM::is_result($r)) { + if (DBA::isResult($r)) { foreach ($r as $rr) { $visible_addons[] = $rr['name']; } @@ -116,14 +118,14 @@ function friendica_content(App $a) } else { $o .= '

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

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

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

'; } - $blocklist = Config::get('system', 'blocklist'); - if (count($blocklist)) { + $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) {
' . L10n::t('Blocked domain') . '' . L10n::t('Reason for the block') . '