web-base/core/Api/GetApiKeys.class.php

46 lines
1.1 KiB
PHP
Raw Normal View History

2020-02-10 12:16:34 +01:00
<?php
namespace Api;
2020-04-02 00:02:51 +02:00
use \Driver\SQL\Condition\Compare;
2020-02-10 12:16:34 +01:00
class GetApiKeys extends Request {
public function __construct($user, $externCall = false) {
parent::__construct($user, $externCall, array());
$this->loginRequired = true;
}
public function execute($values = array()) {
if(!parent::execute($values)) {
return false;
}
2020-04-02 00:02:51 +02:00
$sql = $this->user->getSQL();
$res = $sql->select("uid", "api_key", "valid_until")
->from("ApiKey")
->where(new Compare("user_id", $this->user->getId()))
2020-04-02 15:08:14 +02:00
->where(new Compare("valid_until", $sql->currentTimestamp(), ">"))
2020-04-02 00:02:51 +02:00
->where(new Compare("active", true))
->execute();
$this->success = ($res !== FALSE);
$this->lastError = $sql->getLastError();
2020-02-10 12:16:34 +01:00
if($this->success) {
2020-04-02 16:31:17 +02:00
$this->result["api_keys"] = array();
foreach($res as $row) {
$this->result["api_keys"][] = array(
"uid" => $row["uid"],
"api_key" => $row["api_key"],
"valid_until" => (new \DateTime($row["valid_until"]))->getTimestamp(),
);
}
2020-02-10 12:16:34 +01:00
}
return $this->success;
}
};
?>