115 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			115 lines
		
	
	
		
			3.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Api;
 | |
| 
 | |
| use DateTime;
 | |
| use Driver\SQL\Condition\Compare;
 | |
| use Driver\SQL\Condition\CondBool;
 | |
| 
 | |
| class Stats extends Request {
 | |
| 
 | |
|   private bool $mailConfigured;
 | |
|   private bool $recaptchaConfigured;
 | |
| 
 | |
|   public function __construct($user, $externalCall = false) {
 | |
|     parent::__construct($user, $externalCall, array());
 | |
|   }
 | |
| 
 | |
|   private function getUserCount() {
 | |
|     $sql = $this->user->getSQL();
 | |
|     $res = $sql->select($sql->count())->from("User")->execute();
 | |
|     $this->success = $this->success && ($res !== FALSE);
 | |
|     $this->lastError = $sql->getLastError();
 | |
| 
 | |
|     return ($this->success ? $res[0]["count"] : 0);
 | |
|   }
 | |
| 
 | |
|   private function getPageCount() {
 | |
|     $sql = $this->user->getSQL();
 | |
|     $res = $sql->select($sql->count())->from("Route")
 | |
|       ->where(new CondBool("active"))
 | |
|       ->execute();
 | |
|     $this->success = $this->success && ($res !== FALSE);
 | |
|     $this->lastError = $sql->getLastError();
 | |
| 
 | |
|     return ($this->success ? $res[0]["count"] : 0);
 | |
|   }
 | |
| 
 | |
|   private function checkSettings() {
 | |
|     $req = new \Api\Settings\Get($this->user);
 | |
|     $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"] ?? "0") === "1";
 | |
|       $this->recaptchaConfigured = ($settings["recaptcha_enabled"] ?? "0") === "1";
 | |
|     }
 | |
| 
 | |
|     return $this->success;
 | |
|   }
 | |
| 
 | |
|   private function getVisitorCount() {
 | |
|     $sql = $this->user->getSQL();
 | |
|     $date = new DateTime();
 | |
|     $monthStart = $date->format("Ym00");
 | |
|     $monthEnd = $date->modify("+1 month")->format("Ym00");
 | |
|     $res = $sql->select($sql->count($sql->distinct("cookie")))
 | |
|       ->from("Visitor")
 | |
|       ->where(new Compare("day", $monthStart, ">="))
 | |
|       ->where(new Compare("day", $monthEnd, "<"))
 | |
|       ->where(new Compare("count", 2, ">="))
 | |
|       ->execute();
 | |
| 
 | |
|     $this->success = ($res !== false);
 | |
|     $this->lastError = $sql->getLastError();
 | |
|     return ($this->success ? $res[0]["count"] : $this->success);
 | |
|   }
 | |
| 
 | |
|   public function execute($values = array()): bool {
 | |
|     if(!parent::execute($values)) {
 | |
|       return false;
 | |
|     }
 | |
| 
 | |
|     $userCount = $this->getUserCount();
 | |
|     $pageCount = $this->getPageCount();
 | |
|     $req = new \Api\Visitors\Stats($this->user);
 | |
|     $this->success = $req->execute(array("type"=>"monthly"));
 | |
|     $this->lastError = $req->getLastError();
 | |
|     if (!$this->success) {
 | |
|       return false;
 | |
|     }
 | |
| 
 | |
|     $visitorStatistics = $req->getResult()["visitors"];
 | |
|     $visitorCount = $this->getVisitorCount();
 | |
|     if (!$this->success) {
 | |
|       return false;
 | |
|     }
 | |
| 
 | |
|     $loadAvg = "Unknown";
 | |
|     if (function_exists("sys_getloadavg")) {
 | |
|       $loadAvg = sys_getloadavg();
 | |
|     }
 | |
| 
 | |
|     if (!$this->checkSettings()) {
 | |
|       return false;
 | |
|     }
 | |
| 
 | |
|     $this->result["userCount"] = $userCount;
 | |
|     $this->result["pageCount"] = $pageCount;
 | |
|     $this->result["visitors"] = $visitorStatistics;
 | |
|     $this->result["visitorsTotal"] = $visitorCount;
 | |
|     $this->result["server"] = array(
 | |
|       "version" => WEBBASE_VERSION,
 | |
|       "server" => $_SERVER["SERVER_SOFTWARE"] ?? "Unknown",
 | |
|       "memory_usage" => memory_get_usage(),
 | |
|       "load_avg" => $loadAvg,
 | |
|       "database" => $this->user->getSQL()->getStatus(),
 | |
|       "mail" => $this->mailConfigured,
 | |
|       "reCaptcha" => $this->recaptchaConfigured
 | |
|     );
 | |
| 
 | |
|     return $this->success;
 | |
|   }
 | |
| 
 | |
| } |