summaryrefslogtreecommitdiff
path: root/www/wiki/extensions/ConfirmEdit/MathCaptcha
diff options
context:
space:
mode:
authorYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
committerYaco <franco@reevo.org>2020-06-04 11:01:00 -0300
commitfc7369835258467bf97eb64f184b93691f9a9fd5 (patch)
treedaabd60089d2dd76d9f5fb416b005fbe159c799d /www/wiki/extensions/ConfirmEdit/MathCaptcha
first commit
Diffstat (limited to 'www/wiki/extensions/ConfirmEdit/MathCaptcha')
-rw-r--r--www/wiki/extensions/ConfirmEdit/MathCaptcha/MathCaptcha.class.php126
-rw-r--r--www/wiki/extensions/ConfirmEdit/MathCaptcha/MathCaptcha.php14
-rw-r--r--www/wiki/extensions/ConfirmEdit/MathCaptcha/extension.json10
3 files changed, 150 insertions, 0 deletions
diff --git a/www/wiki/extensions/ConfirmEdit/MathCaptcha/MathCaptcha.class.php b/www/wiki/extensions/ConfirmEdit/MathCaptcha/MathCaptcha.class.php
new file mode 100644
index 00000000..0c7dee0a
--- /dev/null
+++ b/www/wiki/extensions/ConfirmEdit/MathCaptcha/MathCaptcha.class.php
@@ -0,0 +1,126 @@
+<?php
+
+use MediaWiki\Auth\AuthenticationRequest;
+
+class MathCaptcha extends SimpleCaptcha {
+
+ /**
+ * Validate a captcha response
+ * @param string $answer
+ * @param array $info
+ * @return bool
+ */
+ function keyMatch( $answer, $info ) {
+ return (int)$answer == (int)$info['answer'];
+ }
+
+ /**
+ * @param array &$resultArr
+ */
+ function addCaptchaAPI( &$resultArr ) {
+ list( $sum, $answer ) = $this->pickSum();
+ $html = $this->fetchMath( $sum );
+ $index = $this->storeCaptcha( [ 'answer' => $answer ] );
+ $resultArr['captcha'] = $this->describeCaptchaType();
+ $resultArr['captcha']['id'] = $index;
+ $resultArr['captcha']['question'] = $html;
+ }
+
+ /**
+ * @return array
+ */
+ public function describeCaptchaType() {
+ return [
+ 'type' => 'math',
+ 'mime' => 'text/html',
+ ];
+ }
+
+ /**
+ * @param int $tabIndex
+ * @return array
+ */
+ function getFormInformation( $tabIndex = 1 ) {
+ list( $sum, $answer ) = $this->pickSum();
+ $index = $this->storeCaptcha( [ 'answer' => $answer ] );
+
+ $form = '<table><tr><td>' . $this->fetchMath( $sum ) . '</td>';
+ $form .= '<td>' . Html::input( 'wpCaptchaWord', false, false, [
+ 'tabindex' => $tabIndex,
+ 'autocomplete' => 'off',
+ 'required'
+ ] ) . '</td></tr></table>';
+ $form .= Html::hidden( 'wpCaptchaId', $index );
+ return [ 'html' => $form ];
+ }
+
+ /**
+ * Pick a random sum
+ * @return array
+ */
+ function pickSum() {
+ $a = mt_rand( 0, 100 );
+ $b = mt_rand( 0, 10 );
+ $op = mt_rand( 0, 1 ) ? '+' : '-';
+ $sum = "{$a} {$op} {$b} = ";
+ $ans = $op == '+' ? ( $a + $b ) : ( $a - $b );
+ return [ $sum, $ans ];
+ }
+
+ /**
+ * Fetch the math
+ * @param int $sum
+ * @return string
+ */
+ function fetchMath( $sum ) {
+ if ( class_exists( 'MathRenderer' ) ) {
+ $math = MathRenderer::getRenderer( $sum, [], 'png' );
+ } else {
+ throw new LogicException(
+ 'MathCaptcha requires the Math extension for MediaWiki versions 1.18 and above.' );
+ }
+ $math->render();
+ $html = $math->getHtmlOutput();
+ return preg_replace( '/alt=".*?"/', '', $html );
+ }
+
+ /**
+ * @return array
+ */
+ public function getCaptcha() {
+ list( $sum, $answer ) = $this->pickSum();
+ return [ 'question' => $sum, 'answer' => $answer ];
+ }
+
+ /**
+ * @param array $captchaData
+ * @param string $id
+ * @return mixed
+ */
+ public function getCaptchaInfo( $captchaData, $id ) {
+ $sum = $captchaData['question'];
+ return $this->fetchMath( $sum );
+ }
+
+ /**
+ * @param array $requests
+ * @param array $fieldInfo
+ * @param array &$formDescriptor
+ * @param string $action
+ */
+ public function onAuthChangeFormFields( array $requests, array $fieldInfo,
+ array &$formDescriptor, $action ) {
+ /** @var CaptchaAuthenticationRequest $req */
+ $req = AuthenticationRequest::getRequestByClass(
+ $requests,
+ CaptchaAuthenticationRequest::class,
+ true
+ );
+ if ( !$req ) {
+ return;
+ }
+
+ $formDescriptor['captchaInfo']['raw'] = true;
+ $formDescriptor['captchaWord']['label-message'] = null;
+ }
+}
diff --git a/www/wiki/extensions/ConfirmEdit/MathCaptcha/MathCaptcha.php b/www/wiki/extensions/ConfirmEdit/MathCaptcha/MathCaptcha.php
new file mode 100644
index 00000000..7a5ef8da
--- /dev/null
+++ b/www/wiki/extensions/ConfirmEdit/MathCaptcha/MathCaptcha.php
@@ -0,0 +1,14 @@
+<?php
+if ( function_exists( 'wfLoadExtension' ) ) {
+ wfLoadExtension( 'ConfirmEdit/MathCaptcha' );
+ // Keep i18n globals so mergeMessageFileList.php doesn't break
+ $wgMessagesDirs['MathCaptcha'] = __DIR__ . '/i18n';
+ /* wfWarn(
+ 'Deprecated PHP entry point used for MathCaptcha extension. ' .
+ 'Please use wfLoadExtension instead, ' .
+ 'see https://www.mediawiki.org/wiki/Extension_registration for more details.'
+ ); */
+ return;
+} else {
+ die( 'This version of the MathCaptcha extension requires MediaWiki 1.25+' );
+}
diff --git a/www/wiki/extensions/ConfirmEdit/MathCaptcha/extension.json b/www/wiki/extensions/ConfirmEdit/MathCaptcha/extension.json
new file mode 100644
index 00000000..8ef10c53
--- /dev/null
+++ b/www/wiki/extensions/ConfirmEdit/MathCaptcha/extension.json
@@ -0,0 +1,10 @@
+{
+ "name": "MathCaptcha",
+ "AutoloadClasses": {
+ "MathCaptcha": "MathCaptcha.class.php"
+ },
+ "config": {
+ "CaptchaClass": "MathCaptcha"
+ },
+ "manifest_version": 1
+}