]> git.mxchange.org Git - friendica.git/blobdiff - mod/admin.php
Move admin/federation to src/Module
[friendica.git] / mod / admin.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
  *