40 lines
900 B
PHP
40 lines
900 B
PHP
<?php
|
|
|
|
namespace Api;
|
|
|
|
use \Driver\SQL\Keyword;
|
|
use \Driver\SQL\Condition\Compare;
|
|
|
|
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;
|
|
}
|
|
|
|
$sql = $this->user->getSQL();
|
|
$res = $sql->select("uid", "api_key", "valid_until")
|
|
->from("ApiKey")
|
|
->where(new Compare("user_id", $this->user->getId()))
|
|
->where(new Compare("valid_until", new Keyword($sql->currentTimestamp()), ">"))
|
|
->where(new Compare("active", true))
|
|
->execute();
|
|
|
|
$this->success = ($res !== FALSE);
|
|
$this->lastError = $sql->getLastError();
|
|
|
|
if($this->success) {
|
|
$this->result["api_keys"] = $res;
|
|
}
|
|
|
|
return $this->success;
|
|
}
|
|
};
|
|
|
|
?>
|