]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Admin/Federation.php
Remove DI dependency from Module\Contact\Profile
[friendica.git] / src / Module / Admin / Federation.php
index b336f5ecda2783255cf21cfde4b1ee2b9a0d37fb..51b83ccb4acce93388d473e5f801bc7c3594ea8b 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2022, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -21,6 +21,7 @@
 
 namespace Friendica\Module\Admin;
 
+use Friendica\App;
 use Friendica\Core\Protocol;
 use Friendica\Core\Renderer;
 use Friendica\Database\DBA;
@@ -38,23 +39,28 @@ class Federation extends BaseAdmin
                // We list the more common systems by name. The rest is counted as "other"
                $systems = [
                        'friendica'    => ['name' => 'Friendica', 'color' => '#ffc018'], // orange from the logo
+                       'akkoma'       => ['name' => 'Akkoma', 'color' => '#9574cd'], // Color from the page
                        'birdsitelive' => ['name' => 'BirdsiteLIVE', 'color' => '#1b6ec2'], // Color from the page
                        'bookwyrm'     => ['name' => 'BookWyrm', 'color' => '#00d1b2'], // Color from the page
                        'castopod'     => ['name' => 'Castopod', 'color' => '#00564a'], // Background color from the page
                        'diaspora'     => ['name' => 'Diaspora', 'color' => '#a1a1a1'], // logo is black and white, makes a gray
+                       'calckey'      => ['name' => 'firefish (Calckey)', 'color' => '#1c4a5c'], // Color from the page
+                       'foundkey'     => ['name' => 'Foundkey', 'color' => '#609926'], // Some random color from the repository
                        'funkwhale'    => ['name' => 'Funkwhale', 'color' => '#4082B4'], // From the homepage
+                       'gancio'       => ['name' => 'Gancio', 'color' => '#7253ed'], // Fontcolor from the page
                        'gnusocial'    => ['name' => 'GNU Social/Statusnet', 'color' => '#a22430'], // dark red from the logo
                        'gotosocial'   => ['name' => 'GoToSocial', 'color' => '#df8958'], // Some color from their mascot
                        'hometown'     => ['name' => 'Hometown', 'color' => '#1f70c1'], // Color from the Patreon page
                        'honk'         => ['name' => 'Honk', 'color' => '##0d0d0d'], // Background color from the page
                        'hubzilla'     => ['name' => 'Hubzilla/Red Matrix', 'color' => '#43488a'], // blue from the logo
+                       'kbin'         => ['name' => 'kbin', 'color' => '#61366b'], // Color from their main instance
                        'lemmy'        => ['name' => 'Lemmy', 'color' => '#00c853'], // Green from the page
                        'mastodon'     => ['name' => 'Mastodon', 'color' => '#1a9df9'], // blue from the Mastodon logo
                        'microblog'    => ['name' => 'Microblog', 'color' => '#fdb52b'], // Color from the page
                        'misskey'      => ['name' => 'Misskey', 'color' => '#ccfefd'], // Font color of the homepage
                        'mobilizon'    => ['name' => 'Mobilizon', 'color' => '#ffd599'], // Background color of parts of the homepage
                        'nextcloud'    => ['name' => 'Nextcloud', 'color' => '#1cafff'], // Logo color
-                       'mistpark'     => ['name' => 'Nomad projects (Mistpark, Osada, Roadhouse, Zap)', 'color' => '#348a4a'], // Green like the Mistpark green
+                       'nomad'        => ['name' => 'Nomad projects (Mistpark, Osada, Roadhouse, Streams. Zap)', 'color' => '#348a4a'], // Green like the Mistpark green
                        'owncast'      => ['name' => 'Owncast', 'color' => '#007bff'], // Font color of the homepage
                        'peertube'     => ['name' => 'Peertube', 'color' => '#ffad5c'], // One of the logo colors
                        'pixelfed'     => ['name' => 'Pixelfed', 'color' => '#11da47'], // One of the logo colors
@@ -62,6 +68,8 @@ class Federation extends BaseAdmin
                        'plume'        => ['name' => 'Plume', 'color' => '#7765e3'], // From the homepage
                        'relay'        => ['name' => 'ActivityPub Relay', 'color' => '#888888'], // Grey like the second color of the ActivityPub logo
                        'socialhome'   => ['name' => 'SocialHome', 'color' => '#52056b'], // lilac from the Django Image used at the Socialhome homepage
+                       'takahe'       => ['name' => 'TakahÄ“', 'color' => '#26323c'], // Background color of the homepage
+                       'wildebeest'   => ['name' => 'Wildebeest', 'color' => '#0055dc'], // Color of the mascot
                        'wordpress'    => ['name' => 'WordPress', 'color' => '#016087'], // Background color of the homepage
                        'write.as'     => ['name' => 'Write.as', 'color' => '#00ace3'], // Border color of the homepage
                        'writefreely'  => ['name' => 'WriteFreely', 'color' => '#292929'], // Font color of the homepage
@@ -104,10 +112,12 @@ class Federation extends BaseAdmin
 
                                if (in_array($gserver['platform'], ['Red Matrix', 'redmatrix', 'red'])) {
                                        $version['version'] = 'Red ' . $version['version'];
-                               } elseif (in_array($gserver['platform'], ['osada', 'mistpark', 'roadhouse', 'zap', 'macgirvin', 'mkultra'])) {
+                               } elseif (in_array($gserver['platform'], ['osada', 'mistpark', 'roadhouse', 'streams', 'zap'])) {
                                        $version['version'] = $gserver['platform'] . ' ' . $version['version'];
                                } elseif (in_array($gserver['platform'], ['activityrelay', 'pub-relay', 'selective-relay', 'aoderelay'])) {
                                        $version['version'] = $gserver['platform'] . '-' . $version['version'];
+                               } elseif (in_array($gserver['platform'], ['calckey', 'firefish'])) {
+                                       $version['version'] = $gserver['platform'] . '-' . $version['version'];
                                }
 
                                $versionCounts[] = $version;
@@ -118,14 +128,18 @@ class Federation extends BaseAdmin
 
                        if ($platform == 'friendika') {
                                $platform = 'friendica';
+                       } elseif (in_array($platform, ['calckey', 'firefish'])) {
+                               $platform = 'calckey';
                        } elseif (in_array($platform, ['red matrix', 'redmatrix', 'red'])) {
                                $platform = 'hubzilla';
-                       } elseif (in_array($platform, ['osada', 'mistpark', 'roadhouse', 'zap', 'macgirvin', 'mkultra'])) {
-                               $platform = 'mistpark';
+                       } elseif (in_array($platform, ['osada', 'mistpark', 'roadhouse', 'streams', 'zap'])) {
+                               $platform = 'nomad';
                        } elseif(stristr($platform, 'pleroma')) {
                                $platform = 'pleroma';
                        } elseif(stristr($platform, 'statusnet')) {
                                $platform = 'gnusocial';
+                       } elseif(stristr($platform, 'nextcloud')) {
+                               $platform = 'nextcloud';
                        } elseif(stristr($platform, 'wordpress')) {
                                $platform = 'wordpress';
                        } elseif (in_array($platform, ['activityrelay', 'pub-relay', 'selective-relay', 'aoderelay'])) {
@@ -153,7 +167,7 @@ class Federation extends BaseAdmin
 
                        if ($platform == 'friendica') {
                                $versionCounts = self::reformaFriendicaVersions($versionCounts);
-                       } elseif ($platform == 'pleroma') {
+                       } elseif (in_array($platform, ['pleroma', 'akkoma'])) {
                                $versionCounts = self::reformaPleromaVersions($versionCounts);
                        } elseif ($platform == 'diaspora') {
                                $versionCounts = self::reformaDiasporaVersions($versionCounts);
@@ -201,7 +215,7 @@ class Federation extends BaseAdmin
                        '$page' => DI::l10n()->t('Federation Statistics'),
                        '$intro' => $intro,
                        '$counts' => $counts,
-                       '$version' => FRIENDICA_VERSION,
+                       '$version' => App::VERSION,
                        '$legendtext' => DI::l10n()->tt('Currently this node is aware of %2$s node (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:', 'Currently this node is aware of %2$s nodes (%3$s active users last month, %4$s active users last six months, %5$s registered users in total) from the following platforms:', $total, number_format($total), number_format($month), number_format($halfyear), number_format($users)),
                ]);
        }
@@ -382,7 +396,7 @@ class Federation extends BaseAdmin
                //
                // clean up version numbers
                //
-               // some platforms do not provide version information, add a unkown there
+               // some platforms do not provide version information, add a unknown there
                // to the version string for the displayed list.
                foreach ($versionCounts as $key => $value) {
                        if ($versionCounts[$key]['version'] == '') {