25 lines
1.1 KiB
PHP
25 lines
1.1 KiB
PHP
<?php
|
|
require $_SERVER["DOCUMENT_ROOT"]."/api/private/core.php";
|
|
api::initialize(["method" => "GET", "api" => "DiscordBot"]);
|
|
|
|
if (isset($_GET["Token"]) && isset($_GET["DiscordID"]))
|
|
{
|
|
$userInfo = db::run("SELECT * FROM users WHERE discordKey = :key", [":key" => $_GET["Token"]])->fetch(PDO::FETCH_OBJ);
|
|
if (!$userInfo) api::respond(200, false, "InvalidKey"); // check if verification key is valid
|
|
if ($userInfo->discordID != NULL) api::respond(200, false, "AlreadyVerified"); // check if mercury account is already verified
|
|
|
|
db::run(
|
|
"UPDATE users SET discordID = :id, discordVerifiedTime = UNIX_TIMESTAMP() WHERE discordKey = :key",
|
|
[":id" => $_GET["DiscordID"], ":key" => $_GET["Token"]]
|
|
);
|
|
|
|
api::respond(200, true, $userInfo->username);
|
|
}
|
|
else if (isset($_GET["DiscordID"]))
|
|
{
|
|
$username = db::run("SELECT username FROM users WHERE discordID = :id", [":id" => $_GET["DiscordID"]]);
|
|
if (!$username->rowCount()) api::respond(200, false, "NotVerified"); // check if discord account is already verified
|
|
api::respond(200, true, $username->fetchColumn());
|
|
}
|
|
|
|
api::respond(400, false, "Bad Request"); |