Compare commits

..

3 Commits

Author SHA1 Message Date
tracer 108bafe299 code cleanup 2022-01-22 17:08:05 +01:00
tracer 3363414aa0 added example config 2022-01-22 16:49:24 +01:00
tracer ed5fe80edc renamed $statement to $sql 2022-01-22 16:43:06 +01:00
3 changed files with 31 additions and 27 deletions

1
bindAPI/.gitignore vendored
View File

@ -1,3 +1,4 @@
.idea
/vendor/
/config.json

View File

@ -1,16 +1,14 @@
#!/usr/bin/keyhelp-php81
<?php
if (php_sapi_name() !== 'cli') {
exit;
}
require dirname(__DIR__) . '/vendor/autoload.php';
require dirname(path: __DIR__) . '/vendor/autoload.php';
use App\Controller\BindAPI;
// read config
$configFile = __DIR__ ."/../config.json";
$configFile = dirname(path: __DIR__) ."/config.json";
$configJSON = file_get_contents($configFile);
$config = json_decode($configJSON, associative: true);

View File

@ -20,13 +20,13 @@ class ApiUsers
*/
public function findAll(): bool|array
{
$statement = "
$sql = "
SELECT id, api_token_prefix, api_token
FROM user";
try {
$statement = $this->dbConnection->query($statement);
return $statement->fetchAll(PDO::FETCH_ASSOC);
$statement = $this->dbConnection->query($sql);
return $statement->fetchAll(mode: PDO::FETCH_ASSOC);
} catch (PDOException $e) {
exit($e->getMessage());
}
@ -40,40 +40,46 @@ class ApiUsers
*/
public function findByID(Int $id): bool|array
{
$statement = "
$sql = "
SELECT api_token_prefix, api_token
FROM user
WHERE id = :id;
";
try {
$statement = $this->dbConnection->prepare($statement);
$statement->bindParam(':id', $id);
$statement = $this->dbConnection->prepare($sql);
$statement->bindParam(param: ':id', var: $id);
$statement->execute();
return $statement->fetchAll(PDO::FETCH_ASSOC);
return $statement->fetch(mode: PDO::FETCH_ASSOC);
} catch (PDOException $e) {
exit($e->getMessage());
}
}
/**
* @param String $prefix
*
* @return bool|array
*/
public function findByPrefix(String $prefix): bool|array
{
$statement = "
$sql = "
SELECT api_token
FROM user
WHERE api_token_prefix = :prefix;
";
WHERE api_token_prefix = :prefix";
try {
$statement = $this->dbConnection->prepare($statement);
$statement->bindParam(':prefix', $prefix);
$statement = $this->dbConnection->prepare($sql);
$statement->bindParam(param: ':prefix', var: $prefix);
$statement->execute();
return $statement->fetch(PDO::FETCH_ASSOC);
return $statement->fetch(mode: PDO::FETCH_ASSOC);
} catch (PDOException $e) {
exit($e->getMessage());
}
}
/**
* @return array|void
*/
@ -82,22 +88,22 @@ class ApiUsers
$tokenPrefix = uniqid();
$result['tokenPrefix'] = $tokenPrefix;
try {
$key = bin2hex(random_bytes(24));
$key = bin2hex(random_bytes(length: 24));
$result['key'] = $key;
} catch (Exception $e) {
echo $e->getMessage() . PHP_EOL;
exit(1);
}
$token = password_hash($tokenPrefix . '.' . $key, PASSWORD_ARGON2ID);
$token = password_hash(password: $tokenPrefix . '.' . $key, algo: PASSWORD_ARGON2ID);
$statement = "
$sql = "
INSERT INTO user (api_token_prefix, api_token)
VALUES (:token_prefix, :token)";
try {
$statement = $this->dbConnection->prepare($statement);
$statement->bindParam(':token_prefix', $tokenPrefix);
$statement->bindParam(':token', $token);
$statement = $this->dbConnection->prepare($sql);
$statement->bindParam(param: ':token_prefix', var: $tokenPrefix);
$statement->bindParam(param: ':token', var: $token);
$statement->execute();
$result['row'] = $this->dbConnection->lastInsertId();
return $result;
@ -114,13 +120,13 @@ class ApiUsers
*/
public function delete($id): int
{
$statement = "
$sql = "
DELETE FROM user
WHERE id = :id";
try {
$statement = $this->dbConnection->prepare($statement);
$statement->bindParam('id', $id);
$statement = $this->dbConnection->prepare($sql);
$statement->bindParam(param: 'id', var: $id);
$statement->execute();
return $statement->rowCount();
} catch (PDOException $e) {
@ -128,5 +134,4 @@ class ApiUsers
}
}
}