1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128
|
<?php
namespace LAM\PLUGINS\CAPTCHA;
use htmlElement;
use htmlScript;
/*
This code is part of LDAP Account Manager (http://www.ldap-account-manager.org/)
Copyright (C) 2022 - 2024 Roland Gruber
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/**
* hCaptcha provider.
*
* @author Roland Gruber
*/
/**
* hCaptcha provider.
*
* @package LAM\PLUGINS\CAPTCHA
*/
class HCaptcha implements CaptchaProvider {
/**
* @inheritDoc
*/
public function getLabel(): string {
return 'hCaptcha';
}
/**
* @inheritDoc
*/
public function getId(): string {
return 'hCaptcha';
}
/**
* @inheritDoc
*/
public function getCaptchaElement(string $siteKey): htmlElement {
return new htmlHCaptcha($siteKey);
}
/**
* @inheritDoc
*/
public function isValid(string $secretKey, string $siteKey): bool {
$url = 'https://hcaptcha.com/siteverify';
$vars = [
'secret' => $secretKey,
'response' => $_POST['h-captcha-response'],
'sitekey' => $siteKey];
$options = [
'http' => [
'header' => "Content-type: application/x-www-form-urlencoded\r\n",
'method' => 'POST',
'content' => http_build_query($vars)
]
];
$context = stream_context_create($options);
$result = file_get_contents($url, false, $context);
if ($result === FALSE) {
logNewMessage(LOG_ERR, 'hCaptcha validation failed, invalid server response.');
return false;
}
$responseJSON = json_decode($result);
logNewMessage(LOG_DEBUG, "hCaptcha result: " . $result);
return $responseJSON->{'success'} === true;
}
}
/**
* Creates a hCaptcha element.
*
* @package LAM\PLUGINS\CAPTCHA
*/
class htmlHCaptcha extends htmlElement {
/** site key */
private $key;
/**
* Constructor.
*
* @param String $key site key
*/
function __construct($key) {
$this->key = htmlspecialchars($key);
}
/**
* Prints the HTML code for this element.
*
* @param string $module Name of account module
* @param array $input List of meta-HTML elements
* @param array $values List of values which override the defaults in $input (name => value)
* @param boolean $restricted If true then no buttons will be displayed
* @param string $scope Account type
* @return array List of input field names and their type (name => type)
*/
function generateHTML($module, $input, $values, $restricted, $scope) {
$script = new htmlScript('https://js.hcaptcha.com/1/api.js');
$script->generateHTML($module, $input, $values, $restricted, $scope);
echo '<div class="h-captcha" data-sitekey="' . $this->key . '"></div>';
return [];
}
}
|