blob: cbe51e2626a508f4006d0c32c8140e5e5aac835d (
plain)
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
|
<?php
/**
* @author Bachsau
* @author Niklas Laxström
*/
class Asirra extends SimpleCaptcha {
public $asirra_clientscript = 'http://challenge.asirra.com/js/AsirraClientSide.js';
// As we don't have to store anything but some other things to do,
// we're going to replace that constructor completely.
function __construct() {
global $wgExtensionAssetsPath;
$this->asirra_localpath = "$wgExtensionAssetsPath/ConfirmEdit";
}
function getForm() {
global $wgOut;
$wgOut->addModules( 'ext.confirmedit.asirra' );
$js = Html::linkedScript( $this->asirra_clientscript );
$message = Xml::encodeJsVar( wfMessage( 'asirra-createaccount-fail' )->plain() );
$js .= Html::inlineScript( <<<JAVASCRIPT
var asirra_js_failed = '$message';
JAVASCRIPT
);
$js .= '<noscript>' . wfMessage( 'asirra-nojs' )->parse() . '</noscript>';
return $js;
}
function getMessage( $action ) {
$name = 'asirra-' . $action;
$text = wfMessage( $name )->text();
# Obtain a more tailored message, if possible, otherwise, fall
# back to the default for edits
return wfMessage( $name, $text )->isDisabled() ? wfMessage( 'asirra-edit' )->text() : $text;
}
function passCaptcha() {
global $wgRequest;
$ticket = $wgRequest->getVal( 'Asirra_Ticket' );
$api = 'http://challenge.asirra.com/cgi/Asirra?';
$params = array(
'action' => 'ValidateTicket',
'ticket' => $ticket,
);
$response = Http::get( $api . wfArrayToCgi( $params ) );
$xml = simplexml_load_string( $response );
$result = $xml->xpath( '/AsirraValidation/Result' );
return strval( $result[0] ) === 'Pass';
}
}
|