]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/Admin/Summary.php
Merge pull request #7194 from nupplaphil/bug/hover
[friendica.git] / src / Module / Admin / Summary.php
index 49ad59cdf68332f0edf9ba3e24f09bf22973eb25..6261ac75caf937057c7ffacf8906726e013d4b8e 100644 (file)
-<?php\r
-\r
-namespace Friendica\Module\Admin;\r
-\r
-use Friendica\Core\Addon;\r
-use Friendica\Core\Config;\r
-use Friendica\Core\L10n;\r
-use Friendica\Core\Logger;\r
-use Friendica\Core\Renderer;\r
-use Friendica\Core\System;\r
-use Friendica\Core\Update;\r
-use Friendica\Database\DBA;\r
-use Friendica\Database\DBStructure;\r
-use Friendica\Model\Register;\r
-use Friendica\Module\BaseAdminModule;\r
-use Friendica\Util\DateTimeFormat;\r
-use Friendica\Util\Network;\r
-\r
-class Summary extends BaseAdminModule\r
-{\r
-       public static function content()\r
-       {\r
-               parent::content();\r
-\r
-               $a = self::getApp();\r
-\r
-               // are there MyISAM tables in the DB? If so, trigger a warning message\r
-               $warningtext = [];\r
-               if (DBA::count('`information_schema`.`tables`', ['engine' => 'myisam', 'table_schema' => DBA::databaseName()])) {\r
-                       $warningtext[] = L10n::t('Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href="%s">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />', 'https://dev.mysql.com/doc/refman/5.7/en/converting-tables-to-innodb.html');\r
-               }\r
-\r
-               // Check if github.com/friendica/master/VERSION is higher then\r
-               // the local version of Friendica. Check is opt-in, source may be master or devel branch\r
-               if (Config::get('system', 'check_new_version_url', 'none') != 'none') {\r
-                       $gitversion = Config::get('system', 'git_friendica_version');\r
-                       if (version_compare(FRIENDICA_VERSION, $gitversion) < 0) {\r
-                               $warningtext[] = L10n::t('There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s', FRIENDICA_VERSION, $gitversion);\r
-                       }\r
-               }\r
-\r
-               if (Config::get('system', 'dbupdate', DBStructure::UPDATE_NOT_CHECKED) == DBStructure::UPDATE_NOT_CHECKED) {\r
-                       DBStructure::update($a->getBasePath(), false, true);\r
-               }\r
-\r
-               if (Config::get('system', 'dbupdate') == DBStructure::UPDATE_FAILED) {\r
-                       $warningtext[] = L10n::t('The database update failed. Please run "php bin/console.php dbstructure update" from the command line and have a look at the errors that might appear.');\r
-               }\r
-\r
-               if (Config::get('system', 'update') == Update::FAILED) {\r
-                       $warningtext[] = L10n::t('The last update failed. Please run "php bin/console.php dbstructure update" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)');\r
-               }\r
-\r
-               $last_worker_call = Config::get('system', 'last_worker_execution', false);\r
-               if (!$last_worker_call) {\r
-                       $warningtext[] = L10n::t('The worker was never executed. Please check your database structure!');\r
-               } elseif ((strtotime(DateTimeFormat::utcNow()) - strtotime($last_worker_call)) > 60 * 60) {\r
-                       $warningtext[] = L10n::t('The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.', $last_worker_call);\r
-               }\r
-\r
-               // Legacy config file warning\r
-               if (file_exists('.htconfig.php')) {\r
-                       $warningtext[] = L10n::t('Friendica\'s configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from <code>.htconfig.php</code>. See <a href="%s">the Config help page</a> for help with the transition.', $a->getBaseURL() . '/help/Config');\r
-               }\r
-\r
-               if (file_exists('config/local.ini.php')) {\r
-                       $warningtext[] = L10n::t('Friendica\'s configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from <code>config/local.ini.php</code>. See <a href="%s">the Config help page</a> for help with the transition.', $a->getBaseURL() . '/help/Config');\r
-               }\r
-\r
-               // Check server vitality\r
-               if (!self::checkSelfHostMeta()) {\r
-                       $well_known = $a->getBaseURL() . '/.well-known/host-meta';\r
-                       $warningtext[] = L10n::t('<a href="%s">%s</a> is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See <a href="%s">the installation page</a> for help.',\r
-                               $well_known, $well_known, $a->getBaseURL() . '/help/Install');\r
-               }\r
-\r
-               $accounts = [\r
-                       [L10n::t('Normal Account'), 0],\r
-                       [L10n::t('Automatic Follower Account'), 0],\r
-                       [L10n::t('Public Forum Account'), 0],\r
-                       [L10n::t('Automatic Friend Account'), 0],\r
-                       [L10n::t('Blog Account'), 0],\r
-                       [L10n::t('Private Forum Account'), 0]\r
-               ];\r
-\r
-               $users = 0;\r
-               $pageFlagsCountStmt = DBA::p('SELECT `page-flags`, COUNT(`uid`) AS `count` FROM `user` GROUP BY `page-flags`');\r
-               while ($pageFlagsCount = DBA::fetch($pageFlagsCountStmt)) {\r
-                       $accounts[$pageFlagsCount['page-flags']][1] = $pageFlagsCount['count'];\r
-                       $users += $pageFlagsCount['count'];\r
-               }\r
-               DBA::close($pageFlagsCountStmt);\r
-\r
-               Logger::log('accounts: ' . print_r($accounts, true), Logger::DATA);\r
-\r
-               $pending = Register::getPendingCount();\r
-\r
-               $queue = DBA::count('queue', []);\r
-\r
-               $deferred = DBA::count('workerqueue', ['`executed` <= ? AND NOT `done` AND `next_try` > ?',\r
-                       DBA::NULL_DATETIME, DateTimeFormat::utcNow()]);\r
-\r
-               $workerqueue = DBA::count('workerqueue', ['`executed` <= ? AND NOT `done` AND `next_try` < ?',\r
-                       DBA::NULL_DATETIME, DateTimeFormat::utcNow()]);\r
-\r
-               // We can do better, but this is a quick queue status\r
-               $queues = ['label' => L10n::t('Message queues'), 'queue' => $queue, 'deferred' => $deferred, 'workerq' => $workerqueue];\r
-\r
-               $variables = DBA::toArray(DBA::p('SHOW variables LIKE "max_allowed_packet"'));\r
-               $max_allowed_packet = $variables ? $variables[0]['Value'] : 0;\r
-\r
-               $server_settings = [\r
-                       'label' => L10n::t('Server Settings'),\r
-                       'php' => [\r
-                               'upload_max_filesize' => ini_get('upload_max_filesize'),\r
-                               'post_max_size' => ini_get('post_max_size'),\r
-                               'memory_limit' => ini_get('memory_limit')\r
-                       ],\r
-                       'mysql' => [\r
-                               'max_allowed_packet' => $max_allowed_packet\r
-                       ]\r
-               ];\r
-\r
-               $t = Renderer::getMarkupTemplate('admin/summary.tpl');\r
-               return Renderer::replaceMacros($t, [\r
-                       '$title' => L10n::t('Administration'),\r
-                       '$page' => L10n::t('Summary'),\r
-                       '$queues' => $queues,\r
-                       '$users' => [L10n::t('Registered users'), $users],\r
-                       '$accounts' => $accounts,\r
-                       '$pending' => [L10n::t('Pending registrations'), $pending],\r
-                       '$version' => [L10n::t('Version'), FRIENDICA_VERSION],\r
-                       '$baseurl' => System::baseUrl(),\r
-                       '$platform' => FRIENDICA_PLATFORM,\r
-                       '$codename' => FRIENDICA_CODENAME,\r
-                       '$build' => Config::get('system', 'build'),\r
-                       '$addons' => [L10n::t('Active addons'), Addon::getEnabledList()],\r
-                       '$serversettings' => $server_settings,\r
-                       '$warningtext' => $warningtext\r
-               ]);\r
-       }\r
-\r
-       private static function checkSelfHostMeta()\r
-       {\r
-               // Fetch the host-meta to check if this really is a vital server\r
-               return Network::curl(System::baseUrl() . '/.well-known/host-meta')->isSuccess();\r
-       }\r
-\r
-}
\ No newline at end of file
+<?php
+
+namespace Friendica\Module\Admin;
+
+use Friendica\Core\Addon;
+use Friendica\Core\Config;
+use Friendica\Core\L10n;
+use Friendica\Core\Logger;
+use Friendica\Core\Renderer;
+use Friendica\Core\Update;
+use Friendica\Database\DBA;
+use Friendica\Database\DBStructure;
+use Friendica\Model\Register;
+use Friendica\Module\BaseAdminModule;
+use Friendica\Util\Config\ConfigFileLoader;
+use Friendica\Util\DateTimeFormat;
+use Friendica\Util\Network;
+
+class Summary extends BaseAdminModule
+{
+       public static function content()
+       {
+               parent::content();
+
+               $a = self::getApp();
+
+               // are there MyISAM tables in the DB? If so, trigger a warning message
+               $warningtext = [];
+               if (DBA::count(['information_schema' => 'tables'], ['engine' => 'myisam', 'table_schema' => DBA::databaseName()])) {
+                       $warningtext[] = L10n::t('Your DB still runs with MyISAM tables. You should change the engine type to InnoDB. As Friendica will use InnoDB only features in the future, you should change this! See <a href="%s">here</a> for a guide that may be helpful converting the table engines. You may also use the command <tt>php bin/console.php dbstructure toinnodb</tt> of your Friendica installation for an automatic conversion.<br />', 'https://dev.mysql.com/doc/refman/5.7/en/converting-tables-to-innodb.html');
+               }
+
+               // Check if github.com/friendica/master/VERSION is higher then
+               // the local version of Friendica. Check is opt-in, source may be master or devel branch
+               if (Config::get('system', 'check_new_version_url', 'none') != 'none') {
+                       $gitversion = Config::get('system', 'git_friendica_version');
+                       if (version_compare(FRIENDICA_VERSION, $gitversion) < 0) {
+                               $warningtext[] = L10n::t('There is a new version of Friendica available for download. Your current version is %1$s, upstream version is %2$s', FRIENDICA_VERSION, $gitversion);
+                       }
+               }
+
+               if (Config::get('system', 'dbupdate', DBStructure::UPDATE_NOT_CHECKED) == DBStructure::UPDATE_NOT_CHECKED) {
+                       DBStructure::update($a->getBasePath(), false, true);
+               }
+
+               if (Config::get('system', 'dbupdate') == DBStructure::UPDATE_FAILED) {
+                       $warningtext[] = L10n::t('The database update failed. Please run "php bin/console.php dbstructure update" from the command line and have a look at the errors that might appear.');
+               }
+
+               if (Config::get('system', 'update') == Update::FAILED) {
+                       $warningtext[] = L10n::t('The last update failed. Please run "php bin/console.php dbstructure update" from the command line and have a look at the errors that might appear. (Some of the errors are possibly inside the logfile.)');
+               }
+
+               $last_worker_call = Config::get('system', 'last_worker_execution', false);
+               if (!$last_worker_call) {
+                       $warningtext[] = L10n::t('The worker was never executed. Please check your database structure!');
+               } elseif ((strtotime(DateTimeFormat::utcNow()) - strtotime($last_worker_call)) > 60 * 60) {
+                       $warningtext[] = L10n::t('The last worker execution was on %s UTC. This is older than one hour. Please check your crontab settings.', $last_worker_call);
+               }
+
+               // Legacy config file warning
+               if (file_exists('.htconfig.php')) {
+                       $warningtext[] = L10n::t('Friendica\'s configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from <code>.htconfig.php</code>. See <a href="%s">the Config help page</a> for help with the transition.', $a->getBaseURL() . '/help/Config');
+               }
+
+               if (file_exists('config/local.ini.php')) {
+                       $warningtext[] = L10n::t('Friendica\'s configuration now is stored in config/local.config.php, please copy config/local-sample.config.php and move your config from <code>config/local.ini.php</code>. See <a href="%s">the Config help page</a> for help with the transition.', $a->getBaseURL() . '/help/Config');
+               }
+
+               // Check server vitality
+               if (!self::checkSelfHostMeta()) {
+                       $well_known = $a->getBaseURL() . '/.well-known/host-meta';
+                       $warningtext[] = L10n::t('<a href="%s">%s</a> is not reachable on your system. This is a severe configuration issue that prevents server to server communication. See <a href="%s">the installation page</a> for help.',
+                               $well_known, $well_known, $a->getBaseURL() . '/help/Install');
+               }
+
+               // Check logfile permission
+               if (Config::get('system', 'debugging')) {
+                       $stream = Config::get('system', 'logfile');
+
+                       if (is_file($stream) &&
+                           !is_writeable($stream)) {
+                               $warningtext[] = L10n::t('The logfile \'%s\' is not writable. No logging possible', $stream);
+                       }
+
+                       $stream = Config::get('system', 'dlogfile');
+
+                       if (is_file($stream) &&
+                           !is_writeable($stream)) {
+                               $warningtext[] = L10n::t('The logfile \'%s\' is not writable. No logging possible', $stream);
+                       }
+               }
+
+               // check legacy basepath settings
+               $configLoader = new ConfigFileLoader($a->getBasePath(), $a->getMode());
+               $configCache = new Config\Cache\ConfigCache();
+               $configLoader->setupCache($configCache);
+               $confBasepath = $configCache->get('system', 'basepath');
+               $currBasepath = $a->getConfig()->get('system', 'basepath');
+               if ($confBasepath !== $currBasepath || !is_dir($currBasepath)) {
+                       if (is_dir($confBasepath) && Config::set('system', 'basepath', $confBasepath)) {
+                               $a->getLogger()->info('Friendica\'s system.basepath was updated successfully.', [
+                                       'from' => $currBasepath,
+                                       'to'   => $confBasepath,
+                               ]);
+                               $warningtext[] = L10n::t('Friendica\'s system.basepath was updated from \'%s\' to \'%s\'. Please remove the system.basepath from your db to avoid differences.',
+                                       $currBasepath,
+                                       $confBasepath);
+                       } elseif (!is_dir($currBasepath)) {
+                               $a->getLogger()->alert('Friendica\'s system.basepath is wrong.', [
+                                       'from' => $currBasepath,
+                                       'to'   => $confBasepath,
+                               ]);
+                               $warningtext[] = L10n::t('Friendica\'s current system.basepath \'%s\' is wrong and the config file \'%s\' isn\'t used.',
+                                       $currBasepath,
+                                       $confBasepath);
+                       } else {
+                               $a->getLogger()->alert('Friendica\'s system.basepath is wrong.', [
+                                       'from' => $currBasepath,
+                                       'to'   => $confBasepath,
+                               ]);
+                               $warningtext[] = L10n::t('Friendica\'s current system.basepath \'%s\' is not equal to the config file \'%s\'. Please fix your configuration.',
+                                       $currBasepath,
+                                       $confBasepath);
+                       }
+               }
+
+               $accounts = [
+                       [L10n::t('Normal Account'), 0],
+                       [L10n::t('Automatic Follower Account'), 0],
+                       [L10n::t('Public Forum Account'), 0],
+                       [L10n::t('Automatic Friend Account'), 0],
+                       [L10n::t('Blog Account'), 0],
+                       [L10n::t('Private Forum Account'), 0]
+               ];
+
+               $users = 0;
+               $pageFlagsCountStmt = DBA::p('SELECT `page-flags`, COUNT(`uid`) AS `count` FROM `user` GROUP BY `page-flags`');
+               while ($pageFlagsCount = DBA::fetch($pageFlagsCountStmt)) {
+                       $accounts[$pageFlagsCount['page-flags']][1] = $pageFlagsCount['count'];
+                       $users += $pageFlagsCount['count'];
+               }
+               DBA::close($pageFlagsCountStmt);
+
+               Logger::log('accounts: ' . print_r($accounts, true), Logger::DATA);
+
+               $pending = Register::getPendingCount();
+
+               $queue = DBA::count('queue', []);
+
+               $deferred = DBA::count('workerqueue', ['`executed` <= ? AND NOT `done` AND `next_try` > ?',
+                       DBA::NULL_DATETIME, DateTimeFormat::utcNow()]);
+
+               $workerqueue = DBA::count('workerqueue', ['`executed` <= ? AND NOT `done` AND `next_try` < ?',
+                       DBA::NULL_DATETIME, DateTimeFormat::utcNow()]);
+
+               // We can do better, but this is a quick queue status
+               $queues = ['label' => L10n::t('Message queues'), 'queue' => $queue, 'deferred' => $deferred, 'workerq' => $workerqueue];
+
+               $variables = DBA::toArray(DBA::p('SHOW variables LIKE "max_allowed_packet"'));
+               $max_allowed_packet = $variables ? $variables[0]['Value'] : 0;
+
+               $server_settings = [
+                       'label' => L10n::t('Server Settings'),
+                       'php' => [
+                               'upload_max_filesize' => ini_get('upload_max_filesize'),
+                               'post_max_size' => ini_get('post_max_size'),
+                               'memory_limit' => ini_get('memory_limit')
+                       ],
+                       'mysql' => [
+                               'max_allowed_packet' => $max_allowed_packet
+                       ]
+               ];
+
+               $t = Renderer::getMarkupTemplate('admin/summary.tpl');
+               return Renderer::replaceMacros($t, [
+                       '$title' => L10n::t('Administration'),
+                       '$page' => L10n::t('Summary'),
+                       '$queues' => $queues,
+                       '$users' => [L10n::t('Registered users'), $users],
+                       '$accounts' => $accounts,
+                       '$pending' => [L10n::t('Pending registrations'), $pending],
+                       '$version' => [L10n::t('Version'), FRIENDICA_VERSION],
+                       '$platform' => FRIENDICA_PLATFORM,
+                       '$codename' => FRIENDICA_CODENAME,
+                       '$build' => Config::get('system', 'build'),
+                       '$addons' => [L10n::t('Active addons'), Addon::getEnabledList()],
+                       '$serversettings' => $server_settings,
+                       '$warningtext' => $warningtext
+               ]);
+       }
+
+       private static function checkSelfHostMeta()
+       {
+               // Fetch the host-meta to check if this really is a vital server
+               return Network::curl(self::getApp()->getBaseURL() . '/.well-known/host-meta')->isSuccess();
+       }
+
+}