]> git.mxchange.org Git - friendica.git/blobdiff - mod/friendica.php
Normalize uses of Strings::formatNetworkName to $network_link
[friendica.git] / mod / friendica.php
index 7f48ae3d4a4eed258c57800dd664f7bfe863ac62..81275df6fb7a0053be199acd0c699a30febfdffc 100644 (file)
@@ -1,22 +1,34 @@
 <?php
+/**
+ * @file mod/friendica.php
+ */
 
 use Friendica\App;
-use Friendica\Core\System;
+use Friendica\Core\Addon;
 use Friendica\Core\Config;
-use Friendica\Database\DBM;
+use Friendica\Core\L10n;
+use Friendica\Core\System;
+use Friendica\Database\DBA;
 
-function friendica_init(App $a) {
-       if ($a->argv[1] == "json"){
-               $register_policy = ['REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN'];
+function friendica_init(App $a)
+{
+       if (!empty($a->argv[1]) && ($a->argv[1] == "json")) {
+               $register_policies = ['REGISTER_CLOSED', 'REGISTER_APPROVE', 'REGISTER_OPEN'];
+
+               $register_policy = $register_policies[intval(Config::get('config', 'register_policy'))];
+
+               if ($register_policy == 'REGISTER_OPEN' && Config::get('config', 'invitation_only')) {
+                       $register_policy = 'REGISTER_INVITATION';
+               }
 
                $sql_extra = '';
-               if (x($a->config,'admin_nickname')) {
-                       $sql_extra = sprintf(" AND `nickname` = '%s' ", dbesc($a->config['admin_nickname']));
+               if (!empty($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'],
@@ -25,19 +37,11 @@ function friendica_init(App $a) {
                        $admin = false;
                }
 
-               $visible_plugins = [];
-               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 = Addon::getVisibleList();
 
                Config::load('feature_lock');
                $locked_features = [];
-               if (is_array($a->config['feature_lock']) && count($a->config['feature_lock'])) {
+               if (!empty($a->config['feature_lock'])) {
                        foreach ($a->config['feature_lock'] as $k => $v) {
                                if ($k === 'config_loaded') {
                                        continue;
@@ -48,54 +52,50 @@ function friendica_init(App $a) {
                }
 
                $data = [
-                       'version'         => FRIENDICA_VERSION,
-                       'url'             => System::baseUrl(),
-                       'plugins'         => $visible_plugins,
-                       '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'   => System::baseUrl().'/noscrape'
+                       'version'          => FRIENDICA_VERSION,
+                       'url'              => System::baseUrl(),
+                       'addons'           => $visible_addons,
+                       'locked_features'  => $locked_features,
+                       'explicit_content' => (int)Config::get('system', 'explicit_content', false),
+                       'language'         => Config::get('system','language'),
+                       'register_policy'  => $register_policy,
+                       'admin'            => $admin,
+                       'site_name'        => Config::get('config', 'sitename'),
+                       'platform'         => FRIENDICA_PLATFORM,
+                       'info'             => Config::get('config', 'info'),
+                       'no_scrape_url'    => System::baseUrl().'/noscrape'
                ];
 
+               header('Content-type: application/json; charset=utf-8');
                echo json_encode($data);
                killme();
        }
 }
 
-function friendica_content(App $a) {
+function friendica_content(App $a)
+{
        $o = '<h1>Friendica</h1>' . PHP_EOL;
        $o .= '<p>';
-       $o .= t('This is Friendica, version') . ' <strong>' . FRIENDICA_VERSION . '</strong> ';
-       $o .= 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.',
+               '<strong>' . FRIENDICA_VERSION . '</strong>', System::baseUrl(), '<strong>' . DB_UPDATE_VERSION . '</strong>',
+               '<strong>' . Config::get("system", "post_update_version") . '</strong>');
        $o .= '</p>' . PHP_EOL;
 
        $o .= '<p>';
-       $o .= t('Please visit <a href="https://friendi.ca">Friendi.ca</a> to learn more about the Friendica project.') . PHP_EOL;
+       $o .= L10n::t('Please visit <a href="https://friendi.ca">Friendi.ca</a> to learn more about the Friendica project.') . PHP_EOL;
        $o .= '</p>' . PHP_EOL;
 
        $o .= '<p>';
-       $o .= t('Bug reports and issues: please visit') . ' ' . '<a href="https://github.com/friendica/friendica/issues?state=open">'.t('the bugtracker at github').'</a>';
+       $o .= L10n::t('Bug reports and issues: please visit') . ' ' . '<a href="https://github.com/friendica/friendica/issues?state=open">'.L10n::t('the bugtracker at github').'</a>';
        $o .= '</p>' . PHP_EOL;
        $o .= '<p>';
-       $o .= t('Suggestions, praise, donations, etc. - please email "Info" at Friendica - dot com');
+       $o .= L10n::t('Suggestions, praise, etc. - please email "info" at "friendi - dot - ca');
        $o .= '</p>' . PHP_EOL;
 
-       $visible_plugins = [];
-       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'];
-                       }
-               }
-       }
-
-       if (count($visible_plugins)) {
-               $o .= '<p>' . t('Installed plugins/addons/apps:') . '</p>' . PHP_EOL;
-               $sorted = $visible_plugins;
+       $visible_addons = Addon::getVisibleList();
+       if (count($visible_addons)) {
+               $o .= '<p>' . L10n::t('Installed addons/apps:') . '</p>' . PHP_EOL;
+               $sorted = $visible_addons;
                $s = '';
                sort($sorted);
                foreach ($sorted as $p) {
@@ -106,22 +106,27 @@ function friendica_content(App $a) {
                                $s .= $p;
                        }
                }
-               $o .= '<div style="margin-left: 25px; margin-right: 25px;">' . $s . '</div>' . PHP_EOL;
+               $o .= '<div style="margin-left: 25px; margin-right: 25px; margin-bottom: 25px;">' . $s . '</div>' . PHP_EOL;
        } else {
-               $o .= '<p>' . t('No installed plugins/addons/apps') . '</p>' . PHP_EOL;
+               $o .= '<p>' . L10n::t('No installed addons/apps') . '</p>' . PHP_EOL;
+       }
+
+       if (Config::get('system', 'tosdisplay'))
+       {
+               $o .= '<p>'.L10n::t('Read about the <a href="%1$s/tos">Terms of Service</a> of this node.', System::baseurl()).'</p>';
        }
 
-       $blocklist = Config::get('system', 'blocklist');
-       if (count($blocklist)) {
-               $o .= '<div id="about_blocklist"><p>' . t('On this server the following remote servers are blocked.') . '</p>' . PHP_EOL;
-               $o .= '<table class="table"><thead><tr><th>' . t('Blocked domain') . '</th><th>' . t('Reason for the block') . '</th></thead><tbody>' . PHP_EOL;
+       $blocklist = Config::get('system', 'blocklist', []);
+       if (!empty($blocklist)) {
+               $o .= '<div id="about_blocklist"><p>' . L10n::t('On this server the following remote servers are blocked.') . '</p>' . PHP_EOL;
+               $o .= '<table class="table"><thead><tr><th>' . L10n::t('Blocked domain') . '</th><th>' . L10n::t('Reason for the block') . '</th></thead><tbody>' . PHP_EOL;
                foreach ($blocklist as $b) {
                        $o .= '<tr><td>' . $b['domain'] .'</td><td>' . $b['reason'] . '</td></tr>' . PHP_EOL;
                }
                $o .= '</tbody></table></div>' . PHP_EOL;
        }
 
-       call_hooks('about_hook', $o);
+       Addon::callHooks('about_hook', $o);
 
        return $o;
 }