keyoxide-web/server/verifyLobsters.php
2020-06-30 12:42:47 +02:00

29 lines
709 B
PHP

<?php
$fingerprint = htmlspecialchars($_GET["fp"]);
$user = htmlspecialchars($_GET["user"]);
$url = "https://lobste.rs/u/$user.json";
$check = "\[Verifying my OpenPGP key: openpgp4fpr:$fingerprint\]";
$ch = curl_init();
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, $url);
$result = curl_exec($ch);
curl_close($ch);
$data = json_decode($result, true);
$response = array();
$response["verified"] = false;
$response["fingerprint"] = $fingerprint;
$response["user"] = $user;
$response["comment"] = $comment;
if (preg_match("/{$check}/i", $data["about"])) {
$response["verified"] = true;
}
echo json_encode($response);
?>