]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Admin/Federation.php
post/thread views are renamed, search bugs fixed
[friendica.git] / src / Module / Admin / Federation.php
index ae7445d9e594352a7065650c128c94d2c55e7e49..f5d7cb07bc63be56b2d0fa474ebac085151bba49 100644 (file)
-<?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\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
-                               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
-                                       // only take the x.x.x part of the version, not the "release" after the dash\r
-                                       $part = array_shift(explode('-', $part));\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
-               ]);\r
-       }\r
-}\r
+<?php
+/**
+ * @copyright Copyright (C) 2020, Friendica
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
+
+namespace Friendica\Module\Admin;
+
+use Friendica\Core\Renderer;
+use Friendica\Database\DBA;
+use Friendica\DI;
+use Friendica\Module\BaseAdmin;
+
+class Federation extends BaseAdmin
+{
+       public static function content(array $parameters = [])
+       {
+               parent::content($parameters);
+
+               // get counts on active federation systems this node is knowing
+               // We list the more common systems by name. The rest is counted as "other"
+               $systems = [
+                       'friendica'   => ['name' => 'Friendica', 'color' => '#ffc018'], // orange from the logo
+                       'diaspora'    => ['name' => 'Diaspora', 'color' => '#a1a1a1'], // logo is black and white, makes a gray
+                       'funkwhale'   => ['name' => 'Funkwhale', 'color' => '#4082B4'], // From the homepage
+                       'gnusocial'   => ['name' => 'GNU Social/Statusnet', 'color' => '#a22430'], // dark red from the logo
+                       'hubzilla'    => ['name' => 'Hubzilla/Red Matrix', 'color' => '#43488a'], // blue from the logo
+                       'mastodon'    => ['name' => 'Mastodon', 'color' => '#1a9df9'], // blue from the Mastodon logo
+                       'misskey'     => ['name' => 'Misskey', 'color' => '#ccfefd'], // Font color of the homepage
+                       'nextcloud'   => ['name' => 'Nextcloud', 'color' => '#1cafff'], // Logo color
+                       'peertube'    => ['name' => 'Peertube', 'color' => '#ffad5c'], // One of the logo colors
+                       'pixelfed'    => ['name' => 'Pixelfed', 'color' => '#11da47'], // One of the logo colors
+                       'pleroma'     => ['name' => 'Pleroma', 'color' => '#E46F0F'], // Orange from the text that is used on Pleroma instances
+                       'plume'       => ['name' => 'Plume', 'color' => '#7765e3'], // From the homepage
+                       'socialhome'  => ['name' => 'SocialHome', 'color' => '#52056b'], // lilac from the Django Image used at the Socialhome homepage
+                       'wordpress'   => ['name' => 'WordPress', 'color' => '#016087'], // Background color of the homepage
+                       'writefreely' => ['name' => 'WriteFreely', 'color' => '#292929'], // Font color of the homepage
+                       'other'       => ['name' => DI::l10n()->t('Other'), 'color' => '#F1007E'], // ActivityPub main color
+               ];
+
+               $platforms = array_keys($systems);
+
+               $counts = [];
+               foreach ($platforms as $platform) {
+                       $counts[$platform] = [];
+               }
+
+               $total = 0;
+               $users = 0;
+
+               $gservers = DBA::p("SELECT COUNT(*) AS `total`, SUM(`registered-users`) AS `users`, `platform`,
+                       ANY_VALUE(`network`) AS `network`, MAX(`version`) AS `version`
+                       FROM `gserver` WHERE NOT `failed` GROUP BY `platform`");
+               while ($gserver = DBA::fetch($gservers)) {
+                       $total += $gserver['total'];
+                       $users += $gserver['users'];
+
+                       $versionCounts = [];
+                       $versions = DBA::p("SELECT COUNT(*) AS `total`, `version` FROM `gserver`
+                               WHERE NOT `failed` AND `platform` = ?
+                               GROUP BY `version` ORDER BY `version`", $gserver['platform']);
+                       while ($version = DBA::fetch($versions)) {
+                               $version['version'] = str_replace(["\n", "\r", "\t"], " ", $version['version']);
+
+                               if (in_array($gserver['platform'], ['Red Matrix', 'redmatrix', 'red'])) {
+                                       $version['version'] = 'Red ' . $version['version'];
+                               }
+
+                               $versionCounts[] = $version;
+                       }
+                       DBA::close($versions);
+
+                       $platform = $gserver['platform'] = strtolower($gserver['platform']);
+
+                       if ($platform == 'friendika') {
+                               $platform = 'friendica';
+                       } elseif (in_array($platform, ['red matrix', 'redmatrix', 'red'])) {
+                               $platform = 'hubzilla';
+                       } elseif(stristr($platform, 'pleroma')) {
+                               $platform = 'pleroma';
+                       } elseif(stristr($platform, 'statusnet')) {
+                               $platform = 'gnusocial';
+                       } elseif(stristr($platform, 'wordpress')) {
+                               $platform = 'wordpress';
+                       } elseif (!in_array($platform, $platforms)) {
+                               $platform = 'other';
+                       }
+
+                       if ($platform != $gserver['platform']) {
+                               if ($platform == 'other') {
+                                       $versionCounts = $counts[$platform][1] ?? [];
+                                       $versionCounts[] = ['version' => $gserver['platform'] ?: DI::l10n()->t('unknown'), 'total' => $gserver['total']];
+                                       $gserver['version'] = '';
+                               } else {
+                                       $versionCounts = array_merge($versionCounts, $counts[$platform][1] ?? []);
+                               }
+
+                               $gserver['platform'] = $platform;
+                               $gserver['total'] += $counts[$platform][0]['total'] ?? 0;
+                               $gserver['users'] += $counts[$platform][0]['users'] ?? 0;
+                       }
+
+                       if ($platform == 'friendica') {
+                               $versionCounts = self::reformaFriendicaVersions($versionCounts);
+                       } elseif ($platform == 'pleroma') {
+                               $versionCounts = self::reformaPleromaVersions($versionCounts);
+                       } elseif ($platform == 'diaspora') {
+                               $versionCounts = self::reformaDiasporaVersions($versionCounts);
+                       }
+
+                       $versionCounts = self::sortVersion($versionCounts);
+
+                       $gserver['platform'] = $systems[$platform]['name'];
+
+                       $counts[$platform] = [$gserver, $versionCounts, str_replace([' ', '%'], '', $platform), $systems[$platform]['color']];
+               }
+               DBA::close($gserver);
+
+               // some helpful text
+               $intro = DI::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.');
+
+               // load the template, replace the macros and return the page content
+               $t = Renderer::getMarkupTemplate('admin/federation.tpl');
+               return Renderer::replaceMacros($t, [
+                       '$title' => DI::l10n()->t('Administration'),
+                       '$page' => DI::l10n()->t('Federation Statistics'),
+                       '$intro' => $intro,
+                       '$counts' => $counts,
+                       '$version' => FRIENDICA_VERSION,
+                       '$legendtext' => DI::l10n()->t('Currently this node is aware of %d nodes with %d registered users from the following platforms:', $total, $users),
+               ]);
+       }
+
+       /**
+        * early friendica versions have the format x.x.xxxx where xxxx is the
+        * DB version stamp; those should be operated out and versions be combined
+        *
+        * @param array $versionCounts list of version numbers
+        * @return array with cleaned version numbers
+        */
+       private static function reformaFriendicaVersions(array $versionCounts)
+       {
+               $newV = [];
+               $newVv = [];
+               foreach ($versionCounts as $vv) {
+                       $newVC = $vv['total'];
+                       $newVV = $vv['version'];
+                       $lastDot = strrpos($newVV, '.');
+                       $firstDash = strpos($newVV, '-');
+                       $len = strlen($newVV) - 1;
+                       if (($lastDot == $len - 4) && (!strrpos($newVV, '-rc') == $len - 3) && (!$firstDash == $len - 1)) {
+                               $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]);
+               }
+               $versionCounts = $newVv;
+
+               return $versionCounts;
+       }
+
+       /**
+        * 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
+        *
+        * @param array $versionCounts list of version numbers
+        * @return array with cleaned version numbers
+        */
+       private static function reformaDiasporaVersions(array $versionCounts)
+       {
+               $newV = [];
+               $newVv = [];
+               foreach ($versionCounts 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]);
+               }
+               $versionCounts = $newVv;
+
+               return $versionCounts;
+       }
+
+       /**
+        * Clean up Pleroma version numbers
+        *
+        * @param array $versionCounts list of version numbers
+        * @return array with cleaned version numbers
+        */
+       private static function reformaPleromaVersions(array $versionCounts)
+       {
+               $compacted = [];
+               foreach ($versionCounts as $key => $value) {
+                       $version = $versionCounts[$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
+                       if (!empty($part) && strpos($part, '-')) {
+                               $part = explode('-', $part)[0];
+                       }
+                       if (!empty($part)) {
+                               if (empty($compacted[$part])) {
+                                       $compacted[$part] = $versionCounts[$key]['total'];
+                               } else {
+                                       $compacted[$part] += $versionCounts[$key]['total'];
+                               }
+                       }
+               }
+
+               $versionCounts = [];
+               foreach ($compacted as $version => $pl_total) {
+                       $versionCounts[] = ['version' => $version, 'total' => $pl_total];
+               }
+
+               return $versionCounts;
+       }
+
+       /**
+        * Reformat, sort and compact version numbers
+        *
+        * @param array $versionCounts list of version numbers
+        * @return array with reformatted version numbers
+        */
+       private static function sortVersion(array $versionCounts)
+       {
+               //
+               // clean up version numbers
+               //
+               // some platforms do not provide version information, add a unkown there
+               // to the version string for the displayed list.
+               foreach ($versionCounts as $key => $value) {
+                       if ($versionCounts[$key]['version'] == '') {
+                               $versionCounts[$key] = ['total' => $versionCounts[$key]['total'], 'version' => DI::l10n()->t('unknown')];
+                       }
+               }
+
+               // Assure that the versions are sorted correctly
+               $v2 = [];
+               $versions = [];
+               foreach ($versionCounts as $vv) {
+                       $version = trim(strip_tags($vv["version"]));
+                       $v2[$version] = $vv;
+                       $versions[] = $version;
+               }
+
+               usort($versions, 'version_compare');
+
+               $versionCounts = [];
+               foreach ($versions as $version) {
+                       $versionCounts[] = $v2[$version];
+               }
+
+               return $versionCounts;
+       }
+}