]> git.mxchange.org Git - friendica.git/commitdiff
Move admin/federation to src/Module
authorHypolite Petovan <hypolite@mrpetovan.com>
Sun, 14 Apr 2019 15:20:44 +0000 (11:20 -0400)
committerHypolite Petovan <hypolite@mrpetovan.com>
Thu, 2 May 2019 13:52:42 +0000 (09:52 -0400)
- Add Module\Admin\Federation class
- Add missing abstract keyword in Module\BaseAdminModule
- Add route for admin/federation
- Remove admin_page_federation()  from mod/admin.php

mod/admin.php
src/App/Router.php
src/Module/Admin/Federation.php [new file with mode: 0644]
src/Module/BaseAdminModule.php

index 0c7724573dfd8cb1f4bb4a2c44dce845147ecd09..dd441023d0f651f29b25250951a0c29621d9ec01 100644 (file)
@@ -280,9 +280,6 @@ function admin_content(App $a)
                        case 'workerqueue':
                                $o = admin_page_workerqueue($a, false);
                                break;
-                       case 'federation':
-                               $o = admin_page_federation($a);
-                               break;
                        case 'contactblock':
                                $o = admin_page_contactblock($a);
                                break;
@@ -594,196 +591,6 @@ function admin_page_deleteitem_post(App $a)
        return; // NOTREACHED
 }
 
-/**
- * @brief Subpage with some stats about "the federation" network
- *
- * This function generates the "Federation Statistics" subpage for the admin
- * panel. The page lists some numbers to the part of "The Federation" known to
- * the node. This data includes the different connected networks (e.g.
- * Diaspora, Hubzilla, GNU Social) and the used versions in the different
- * networks.
- *
- * The returned string contains the HTML code of the subpage for display.
- *
- * @param App $a
- * @return string
- * @throws \Friendica\Network\HTTPException\InternalServerErrorException
- */
-function admin_page_federation(App $a)
-{
-       // get counts on active friendica, diaspora, redmatrix, hubzilla, gnu
-       // social and statusnet nodes this node is knowing
-       //
-       // We are looking for the following platforms in the DB, "Red" should find
-       // all variants of that platform ID string as the q() function is stripping
-       // off one % two of them are needed in the query
-       // Add more platforms if you like, when one returns 0 known nodes it is not
-       // displayed on the stats page.
-       $platforms = ['Friendi%%a', 'Diaspora', '%%red%%', 'Hubzilla', 'BlaBlaNet', 'GNU Social', 'StatusNet', 'Mastodon', 'Pleroma', 'socialhome', 'ganggo'];
-       $colors = [
-               'Friendi%%a' => '#ffc018', // orange from the logo
-               'Diaspora'   => '#a1a1a1', // logo is black and white, makes a gray
-               '%%red%%'    => '#c50001', // fire red from the logo
-               'Hubzilla'   => '#43488a', // blue from the logo
-               'BlaBlaNet'  => '#3B5998', // blue from the navbar at blablanet-dot-com
-               'GNU Social' => '#a22430', // dark red from the logo
-               'StatusNet'  => '#789240', // the green from the logo (red and blue have already others
-               'Mastodon'   => '#1a9df9', // blue from the Mastodon logo
-               'Pleroma'    => '#E46F0F', // Orange from the text that is used on Pleroma instances
-               'socialhome' => '#52056b' , // lilac from the Django Image used at the Socialhome homepage
-               'ganggo'     => '#69d7e2' // from the favicon
-       ];
-       $counts = [];
-       $total = 0;
-       $users = 0;
-
-       foreach ($platforms as $p) {
-               // get a total count for the platform, the name and version of the
-               // highest version and the protocol tpe
-               $c = q('SELECT COUNT(*) AS `total`, SUM(`registered-users`) AS `users`, ANY_VALUE(`platform`) AS `platform`,
-                               ANY_VALUE(`network`) AS `network`, MAX(`version`) AS `version` FROM `gserver`
-                               WHERE `platform` LIKE "%s" AND `last_contact` >= `last_failure`
-                               ORDER BY `version` ASC;', $p);
-               $total += $c[0]['total'];
-               $users += $c[0]['users'];
-
-               // what versions for that platform do we know at all?
-               // again only the active nodes
-               $v = q('SELECT COUNT(*) AS `total`, `version` FROM `gserver`
-                               WHERE `last_contact` >= `last_failure` AND `platform` LIKE "%s"
-                               GROUP BY `version`
-                               ORDER BY `version`;', $p);
-
-               //
-               // clean up version numbers
-               //
-               // some platforms do not provide version information, add a unkown there
-               // to the version string for the displayed list.
-               foreach ($v as $key => $value) {
-                       if ($v[$key]['version'] == '') {
-                               $v[$key] = ['total' => $v[$key]['total'], 'version' => L10n::t('unknown')];
-                       }
-               }
-
-               // Reformat and compact version numbers
-               if ($p == 'Pleroma') {
-                       $compacted = [];
-
-                       foreach ($v as $key => $value) {
-                               $version = $v[$key]['version'];
-                               $parts = explode(' ', trim($version));
-                               do {
-                                       $part = array_pop($parts);
-                               } while (!empty($parts) && ((strlen($part) >= 40) || (strlen($part) <= 3)));
-                               // only take the x.x.x part of the version, not the "release" after the dash
-                               $part = array_shift(explode('-', $part));
-
-                               if (!empty($part)) {
-                                       if (empty($compacted[$part])) {
-                                               $compacted[$part] = $v[$key]['total'];
-                                       } else {
-                                               $compacted[$part] += $v[$key]['total'];
-                                       }
-                               }
-                       }
-
-                       $v = [];
-                       foreach ($compacted as $version => $pl_total) {
-                               $v[] = ['version' => $version, 'total' => $pl_total];
-                       }
-               }
-
-               // in the DB the Diaspora versions have the format x.x.x.x-xx the last
-               // part (-xx) should be removed to clean up the versions from the "head
-               // commit" information and combined into a single entry for x.x.x.x
-               if ($p == 'Diaspora') {
-                       $newV = [];
-                       $newVv = [];
-                       foreach ($v as $vv) {
-                               $newVC = $vv['total'];
-                               $newVV = $vv['version'];
-                               $posDash = strpos($newVV, '-');
-                               if ($posDash) {
-                                       $newVV = substr($newVV, 0, $posDash);
-                               }
-                               if (isset($newV[$newVV])) {
-                                       $newV[$newVV] += $newVC;
-                               } else {
-                                       $newV[$newVV] = $newVC;
-                               }
-                       }
-                       foreach ($newV as $key => $value) {
-                               array_push($newVv, ['total' => $value, 'version' => $key]);
-                       }
-                       $v = $newVv;
-               }
-
-               // early friendica versions have the format x.x.xxxx where xxxx is the
-               // DB version stamp; those should be operated out and versions be
-               // conbined
-               if ($p == 'Friendi%%a') {
-                       $newV = [];
-                       $newVv = [];
-                       foreach ($v as $vv) {
-                               $newVC = $vv['total'];
-                               $newVV = $vv['version'];
-                               $lastDot = strrpos($newVV, '.');
-                               $len = strlen($newVV) - 1;
-                               if (($lastDot == $len - 4) && (!strrpos($newVV, '-rc') == $len - 3)) {
-                                       $newVV = substr($newVV, 0, $lastDot);
-                               }
-                               if (isset($newV[$newVV])) {
-                                       $newV[$newVV] += $newVC;
-                               } else {
-                                       $newV[$newVV] = $newVC;
-                               }
-                       }
-                       foreach ($newV as $key => $value) {
-                               array_push($newVv, ['total' => $value, 'version' => $key]);
-                       }
-                       $v = $newVv;
-               }
-
-               // Assure that the versions are sorted correctly
-               $v2 = [];
-               $versions = [];
-               foreach ($v as $vv) {
-                       $version = trim(strip_tags($vv["version"]));
-                       $v2[$version] = $vv;
-                       $versions[] = $version;
-               }
-
-               usort($versions, 'version_compare');
-
-               $v = [];
-               foreach ($versions as $version) {
-                       $v[] = $v2[$version];
-               }
-
-               // the 3rd array item is needed for the JavaScript graphs as JS does
-               // not like some characters in the names of variables...
-               $counts[$p] = [$c[0], $v, str_replace([' ', '%'], '', $p), $colors[$p]];
-       }
-
-       // some helpful text
-       $intro = L10n::t('This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of.');
-       $hint = L10n::t('The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here.');
-
-       // load the template, replace the macros and return the page content
-       $t = Renderer::getMarkupTemplate('admin/federation.tpl');
-       return Renderer::replaceMacros($t, [
-               '$title' => L10n::t('Administration'),
-               '$page' => L10n::t('Federation Statistics'),
-               '$intro' => $intro,
-               '$hint' => $hint,
-               '$autoactive' => Config::get('system', 'poco_completion'),
-               '$counts' => $counts,
-               '$version' => FRIENDICA_VERSION,
-               '$legendtext' => L10n::t('Currently this node is aware of %d nodes with %d registered users from the following platforms:', $total, $users),
-               '$baseurl' => System::baseUrl(),
-       ]);
-}
-
 /**
  * @brief Admin Inspect Worker Queue Page
  *
index 85134bf444895314cab6416b505adccb37defc14..4137c4ada498692ca88f88b7d7fa392d00b9da2c 100644 (file)
@@ -120,6 +120,7 @@ class Router
 
                $this->routeCollector->addGroup('/admin', function (RouteCollector $collector) {
                        $collector->addRoute(['GET']        , '[/]'                     , Module\Admin\Summary::class);
+                       $collector->addRoute(['GET']        , '/federation'             , Module\Admin\Federation::class);
                });
        }
 
diff --git a/src/Module/Admin/Federation.php b/src/Module/Admin/Federation.php
new file mode 100644 (file)
index 0000000..3d697a7
--- /dev/null
@@ -0,0 +1,200 @@
+<?php\r
+\r
+namespace Friendica\Module\Admin;\r
+\r
+use Friendica\Core\Config;\r
+use Friendica\Core\L10n;\r
+use Friendica\Core\Renderer;\r
+use Friendica\Core\System;\r
+use Friendica\Database\DBA;\r
+use Friendica\Module\BaseAdminModule;\r
+\r
+class Federation extends BaseAdminModule\r
+{\r
+       public static function content()\r
+       {\r
+               parent::content();\r
+\r
+               // get counts on active friendica, diaspora, redmatrix, hubzilla, gnu\r
+               // social and statusnet nodes this node is knowing\r
+               //\r
+               // We are looking for the following platforms in the DB, "Red" should find\r
+               // all variants of that platform ID string as the q() function is stripping\r
+               // off one % two of them are needed in the query\r
+               // Add more platforms if you like, when one returns 0 known nodes it is not\r
+               // displayed on the stats page.\r
+               $platforms = ['Friendi%%a', 'Diaspora', '%%red%%', 'Hubzilla', 'BlaBlaNet', 'GNU Social', 'StatusNet', 'Mastodon', 'Pleroma', 'socialhome', 'ganggo'];\r
+               $colors = [\r
+                       'Friendi%%a' => '#ffc018', // orange from the logo\r
+                       'Diaspora'   => '#a1a1a1', // logo is black and white, makes a gray\r
+                       '%%red%%'    => '#c50001', // fire red from the logo\r
+                       'Hubzilla'   => '#43488a', // blue from the logo\r
+                       'BlaBlaNet'  => '#3B5998', // blue from the navbar at blablanet-dot-com\r
+                       'GNU Social' => '#a22430', // dark red from the logo\r
+                       'StatusNet'  => '#789240', // the green from the logo (red and blue have already others\r
+                       'Mastodon'   => '#1a9df9', // blue from the Mastodon logo\r
+                       'Pleroma'    => '#E46F0F', // Orange from the text that is used on Pleroma instances\r
+                       'socialhome' => '#52056b', // lilac from the Django Image used at the Socialhome homepage\r
+                       'ganggo'     => '#69d7e2', // from the favicon\r
+               ];\r
+               $counts = [];\r
+               $total = 0;\r
+               $users = 0;\r
+\r
+               foreach ($platforms as $platform) {\r
+                       // get a total count for the platform, the name and version of the\r
+                       // highest version and the protocol tpe\r
+                       $platformCountStmt = DBA::p('SELECT\r
+                               COUNT(*) AS `total`,\r
+                               SUM(`registered-users`) AS `users`,\r
+                               ANY_VALUE(`platform`) AS `platform`,\r
+                               ANY_VALUE(`network`) AS `network`,\r
+                               MAX(`version`) AS `version` FROM `gserver`\r
+                               WHERE `platform` LIKE ?\r
+                               AND `last_contact` >= `last_failure`\r
+                               ORDER BY `version` ASC', $platform);\r
+                       $platformCount = DBA::fetch($platformCountStmt);\r
+                       $total += $platformCount['total'];\r
+                       $users += $platformCount['users'];\r
+\r
+                       DBA::close($platformCountStmt);\r
+\r
+                       // what versions for that platform do we know at all?\r
+                       // again only the active nodes\r
+                       $versionCountsStmt = DBA::p('SELECT\r
+                               COUNT(*) AS `total`,\r
+                               `version` FROM `gserver`\r
+                               WHERE `last_contact` >= `last_failure`\r
+                               AND `platform` LIKE ?\r
+                               GROUP BY `version`\r
+                               ORDER BY `version`;', $platform);\r
+                       $versionCounts = DBA::toArray($versionCountsStmt);\r
+\r
+                       //\r
+                       // clean up version numbers\r
+                       //\r
+                       // some platforms do not provide version information, add a unkown there\r
+                       // to the version string for the displayed list.\r
+                       foreach ($versionCounts as $key => $value) {\r
+                               if ($versionCounts[$key]['version'] == '') {\r
+                                       $versionCounts[$key] = ['total' => $versionCounts[$key]['total'], 'version' => L10n::t('unknown')];\r
+                               }\r
+                       }\r
+\r
+                       // Reformat and compact version numbers\r
+                       if ($platform == 'Pleroma') {\r
+                               $compacted = [];\r
+\r
+                               foreach ($versionCounts as $key => $value) {\r
+                                       $version = $versionCounts[$key]['version'];\r
+                                       $parts = explode(' ', trim($version));\r
+                                       do {\r
+                                               $part = array_pop($parts);\r
+                                       } while (!empty($parts) && ((strlen($part) >= 40) || (strlen($part) <= 3)));\r
+\r
+                                       if (!empty($part)) {\r
+                                               if (empty($compacted[$part])) {\r
+                                                       $compacted[$part] = $versionCounts[$key]['total'];\r
+                                               } else {\r
+                                                       $compacted[$part] += $versionCounts[$key]['total'];\r
+                                               }\r
+                                       }\r
+                               }\r
+\r
+                               $versionCounts = [];\r
+                               foreach ($compacted as $version => $pl_total) {\r
+                                       $versionCounts[] = ['version' => $version, 'total' => $pl_total];\r
+                               }\r
+                       }\r
+\r
+                       // in the DB the Diaspora versions have the format x.x.x.x-xx the last\r
+                       // part (-xx) should be removed to clean up the versions from the "head\r
+                       // commit" information and combined into a single entry for x.x.x.x\r
+                       if ($platform == 'Diaspora') {\r
+                               $newV = [];\r
+                               $newVv = [];\r
+                               foreach ($versionCounts as $vv) {\r
+                                       $newVC = $vv['total'];\r
+                                       $newVV = $vv['version'];\r
+                                       $posDash = strpos($newVV, '-');\r
+                                       if ($posDash) {\r
+                                               $newVV = substr($newVV, 0, $posDash);\r
+                                       }\r
+                                       if (isset($newV[$newVV])) {\r
+                                               $newV[$newVV] += $newVC;\r
+                                       } else {\r
+                                               $newV[$newVV] = $newVC;\r
+                                       }\r
+                               }\r
+                               foreach ($newV as $key => $value) {\r
+                                       array_push($newVv, ['total' => $value, 'version' => $key]);\r
+                               }\r
+                               $versionCounts = $newVv;\r
+                       }\r
+\r
+                       // early friendica versions have the format x.x.xxxx where xxxx is the\r
+                       // DB version stamp; those should be operated out and versions be\r
+                       // conbined\r
+                       if ($platform == 'Friendi%%a') {\r
+                               $newV = [];\r
+                               $newVv = [];\r
+                               foreach ($versionCounts as $vv) {\r
+                                       $newVC = $vv['total'];\r
+                                       $newVV = $vv['version'];\r
+                                       $lastDot = strrpos($newVV, '.');\r
+                                       $len = strlen($newVV) - 1;\r
+                                       if (($lastDot == $len - 4) && (!strrpos($newVV, '-rc') == $len - 3)) {\r
+                                               $newVV = substr($newVV, 0, $lastDot);\r
+                                       }\r
+                                       if (isset($newV[$newVV])) {\r
+                                               $newV[$newVV] += $newVC;\r
+                                       } else {\r
+                                               $newV[$newVV] = $newVC;\r
+                                       }\r
+                               }\r
+                               foreach ($newV as $key => $value) {\r
+                                       array_push($newVv, ['total' => $value, 'version' => $key]);\r
+                               }\r
+                               $versionCounts = $newVv;\r
+                       }\r
+\r
+                       // Assure that the versions are sorted correctly\r
+                       $v2 = [];\r
+                       $versions = [];\r
+                       foreach ($versionCounts as $vv) {\r
+                               $version = trim(strip_tags($vv["version"]));\r
+                               $v2[$version] = $vv;\r
+                               $versions[] = $version;\r
+                       }\r
+\r
+                       usort($versions, 'version_compare');\r
+\r
+                       $versionCounts = [];\r
+                       foreach ($versions as $version) {\r
+                               $versionCounts[] = $v2[$version];\r
+                       }\r
+\r
+                       // the 3rd array item is needed for the JavaScript graphs as JS does\r
+                       // not like some characters in the names of variables...\r
+                       $counts[$platform] = [$platformCount, $versionCounts, str_replace([' ', '%'], '', $platform), $colors[$platform]];\r
+               }\r
+\r
+               // some helpful text\r
+               $intro = L10n::t('This page offers you some numbers to the known part of the federated social network your Friendica node is part of. These numbers are not complete but only reflect the part of the network your node is aware of.');\r
+               $hint = L10n::t('The <em>Auto Discovered Contact Directory</em> feature is not enabled, it will improve the data displayed here.');\r
+\r
+               // load the template, replace the macros and return the page content\r
+               $t = Renderer::getMarkupTemplate('admin/federation.tpl');\r
+               return Renderer::replaceMacros($t, [\r
+                       '$title' => L10n::t('Administration'),\r
+                       '$page' => L10n::t('Federation Statistics'),\r
+                       '$intro' => $intro,\r
+                       '$hint' => $hint,\r
+                       '$autoactive' => Config::get('system', 'poco_completion'),\r
+                       '$counts' => $counts,\r
+                       '$version' => FRIENDICA_VERSION,\r
+                       '$legendtext' => L10n::t('Currently this node is aware of %d nodes with %d registered users from the following platforms:', $total, $users),\r
+                       '$baseurl' => System::baseUrl(),\r
+               ]);\r
+       }\r
+}\r
index 4664c90fc06b6748b3c3a4664ea359c6896ab3f3..2df7a6b8259dda11852441267c33a80589e16b00 100644 (file)
@@ -7,7 +7,7 @@ use Friendica\Core\L10n;
 use Friendica\Core\Renderer;\r
 use Friendica\Database\DBA;\r
 \r
-class BaseAdminModule extends BaseModule\r
+abstract class BaseAdminModule extends BaseModule\r
 {\r
        public static function post()\r
        {\r
@@ -50,6 +50,7 @@ class BaseAdminModule extends BaseModule
                $aside_sub = [\r
                        'information' => [L10n::t('Information'), [\r
                                'overview'     => ['admin'             , L10n::t('Overview')                , 'overview'],\r
+                               'federation'   => ['admin/federation'  , L10n::t('Federation Statistics')   , 'federation']\r
                        ]],\r
                ];\r
 \r