context = DatabaseConnection::i()->getContext(); $this->users = $this->context->table("profiles"); $this->aliases = $this->context->table("aliases"); } private function toUser(?ActiveRow $ar): ?User { return is_null($ar) ? NULL : new User($ar); } function get(int $id): ?User { return $this->toUser($this->users->get($id)); } function getByShortURL(string $url): ?User { $shortcode = $this->toUser($this->users->where("shortcode", $url)->fetch()); if ($shortcode) return $shortcode; $alias = (new Aliases)->getByShortcode($url); if (!$alias) return NULL; if ($alias->getType() !== "user") return NULL; return $alias->getUser(); } function getByChandlerUser(ChandlerUser $user): ?User { return $this->toUser($this->users->where("user", $user->getId())->fetch()); } function find(string $query): Util\EntityStream { $query = "%$query%"; $result = $this->users->where("CONCAT_WS(' ', first_name, last_name, pseudo, shortcode) LIKE ?", $query)->where("deleted", 0); return new Util\EntityStream("User", $result); } function getStatistics(): object { return (object) [ "all" => sizeof(clone $this->users), "active" => sizeof((clone $this->users)->where("online > 0")), "online" => sizeof((clone $this->users)->where("online >= ?", time() - 900)), ]; } function getByAddress(string $address): ?User { if(substr_compare($address, "/", -1) === 0) $address = substr($address, 0, iconv_strlen($address) - 1); $serverUrl = ovk_scheme(true) . $_SERVER["SERVER_NAME"]; if(strpos($address, $serverUrl . "/") === 0) $address = substr($address, iconv_strlen($serverUrl) + 1); if(strpos($address, "id") === 0) { $user = $this->get((int) substr($address, 2)); if($user) return $user; } return $this->getByShortUrl($address); } /** * If you need to check if the user is an instance administrator, use `$user->getChandlerUser()->can("access")->model("admin")->whichBelongsTo(NULL)`. * This method is more suitable for instance administrators lists */ function getInstanceAdmins(bool $excludeHidden = true): \Traversable { $query = "SELECT DISTINCT(`profiles`.`id`) FROM `ChandlerACLRelations` JOIN `profiles` ON `ChandlerACLRelations`.`user` = `profiles`.`user` COLLATE utf8mb4_unicode_520_ci WHERE `ChandlerACLRelations`.`group` IN (SELECT `group` FROM `ChandlerACLGroupsPermissions` WHERE `model` = \"admin\" AND `permission` = \"access\")"; if($excludeHidden) $query .= " AND `ChandlerACLRelations`.`user` NOT IN (SELECT `user` FROM `ChandlerACLRelations` WHERE `group` IN (SELECT `group` FROM `ChandlerACLGroupsPermissions` WHERE `model` = \"hidden_admin\" AND `permission` = \"be\"))"; $query .= " ORDER BY `profiles`.`id`;"; $result = DatabaseConnection::i()->getConnection()->query($query); foreach($result as $entry) yield $this->get($entry->id); } use \Nette\SmartObject; }