88 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			88 lines
		
	
	
		
			2.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Core\API;
 | |
| 
 | |
| use Core\Driver\SQL\Expression\Count;
 | |
| use Core\Driver\SQL\Expression\Distinct;
 | |
| use Core\Driver\SQL\Query\Insert;
 | |
| use Core\Objects\DatabaseEntity\Group;
 | |
| use Core\Objects\DatabaseEntity\Route;
 | |
| use Core\Objects\DatabaseEntity\User;
 | |
| use DateTime;
 | |
| use Core\Driver\SQL\Condition\Compare;
 | |
| use Core\Driver\SQL\Condition\CondBool;
 | |
| use Core\Objects\Context;
 | |
| 
 | |
| class Stats extends Request {
 | |
| 
 | |
|   private bool $mailConfigured;
 | |
|   private bool $recaptchaConfigured;
 | |
| 
 | |
|   public function __construct(Context $context, $externalCall = false) {
 | |
|     parent::__construct($context, $externalCall, array());
 | |
|   }
 | |
| 
 | |
|   private function checkSettings(): bool {
 | |
|     $req = new \Core\API\Settings\Get($this->context);
 | |
|     $this->success = $req->execute(array("key" => "^(mail_enabled|recaptcha_enabled)$"));
 | |
|     $this->lastError = $req->getLastError();
 | |
| 
 | |
|     if ($this->success) {
 | |
|       $settings = $req->getResult()["settings"];
 | |
|       $this->mailConfigured = $settings["mail_enabled"];
 | |
|       $this->recaptchaConfigured = $settings["recaptcha_enabled"];
 | |
|     }
 | |
| 
 | |
|     return $this->success;
 | |
|   }
 | |
| 
 | |
|   public function _execute(): bool {
 | |
|     $sql = $this->context->getSQL();
 | |
|     $userCount = User::count($sql);
 | |
|     $pageCount = Route::count($sql, new CondBool("active"));
 | |
|     $groupCount = Group::count($sql);
 | |
| 
 | |
|     $req = new \Core\API\Logs\Get($this->context, false);
 | |
|     $success = $req->execute([
 | |
|       "since" => (new \DateTime())->modify("-48 hours"),
 | |
|       "severity" => "error"
 | |
|     ]);
 | |
| 
 | |
|     if ($success) {
 | |
|       $errorCount = $req->getResult()["pagination"]["total"];
 | |
|     } else {
 | |
|       $errorCount = "Unknown";
 | |
|     }
 | |
| 
 | |
|     $loadAvg = "Unknown";
 | |
|     if (function_exists("sys_getloadavg")) {
 | |
|       $loadAvg = sys_getloadavg();
 | |
|     }
 | |
| 
 | |
|     if (!$this->checkSettings()) {
 | |
|       return false;
 | |
|     }
 | |
| 
 | |
|     $this->result["data"] = [
 | |
|       "userCount" => $userCount,
 | |
|       "pageCount" => $pageCount,
 | |
|       "groupCount" => $groupCount,
 | |
|       "errorCount" => $errorCount,
 | |
|       "server" => [
 | |
|         "version" => WEBBASE_VERSION,
 | |
|         "server" => $_SERVER["SERVER_SOFTWARE"] ?? "Unknown",
 | |
|         "memory_usage" => memory_get_usage(),
 | |
|         "load_avg" => $loadAvg,
 | |
|         "database" => $this->context->getSQL()->getStatus(),
 | |
|         "mail" => $this->mailConfigured,
 | |
|         "reCaptcha" => $this->recaptchaConfigured
 | |
|       ],
 | |
|     ];
 | |
|     
 | |
|     return $this->success;
 | |
|   }
 | |
| 
 | |
|   public static function getDefaultACL(Insert $insert): void {
 | |
|     $insert->addRow(self::getEndpoint(), [Group::ADMIN, Group::SUPPORT], "Allows users to view site statistics", true);
 | |
|   }
 | |
| } |