3 class FancyCaptcha extends SimpleCaptcha {
5 * Check if the submitted form matches the captcha session data provided
6 * by the plugin when the form was generated.
8 * @param string $answer
12 function keyMatch( $answer, $info ) {
13 global $wgCaptchaSecret;
15 $digest = $wgCaptchaSecret . $info['salt'] . $answer . $wgCaptchaSecret . $info['salt'];
16 $answerHash = substr( md5( $digest ), 0, 16 );
18 if ( $answerHash == $info['hash'] ) {
19 wfDebug( "FancyCaptcha: answer hash matches expected {$info['hash']}\n" );
22 wfDebug( "FancyCaptcha: answer hashes to $answerHash, expected {$info['hash']}\n" );
27 function addCaptchaAPI( &$resultArr ) {
28 $info = $this->pickImage();
30 $resultArr['captcha']['error'] = 'Out of images';
33 $index = $this->storeCaptcha( $info );
34 $title = SpecialPage::getTitleFor( 'Captcha', 'image' );
35 $resultArr['captcha']['type'] = 'image';
36 $resultArr['captcha']['mime'] = 'image/png';
37 $resultArr['captcha']['id'] = $index;
38 $resultArr['captcha']['url'] = $title->getLocalUrl( 'wpCaptchaId=' . urlencode( $index ) );
42 * Insert the captcha prompt into the edit form.
45 $info = $this->pickImage();
47 die( "out of captcha images; this shouldn't happen" );
50 // Generate a random key for use of this captcha image in this session.
51 // This is needed so multiple edits in separate tabs or windows can
52 // go through without extra pain.
53 $index = $this->storeCaptcha( $info );
55 wfDebug( "Captcha id $index using hash ${info['hash']}, salt ${info['salt']}.\n" );
57 $title = SpecialPage::getTitleFor( 'Captcha', 'image' );
60 Xml::element( 'img', array(
61 'src' => $title->getLocalUrl( 'wpCaptchaId=' . urlencode( $index ) ),
62 'width' => $info['width'],
63 'height' => $info['height'],
66 Xml::element( 'input', array(
68 'name' => 'wpCaptchaId',
69 'id' => 'wpCaptchaId',
70 'value' => $index ) ) .
72 Xml::element( 'input', array(
73 'name' => 'wpCaptchaWord',
74 'id' => 'wpCaptchaWord',
75 'tabindex' => 1 ) ) . // tab in before the edit textarea
80 * Select a previously generated captcha image from the queue.
81 * @fixme subject to race conditions if lots of files vanish
82 * @return mixed tuple of (salt key, text hash) or false if no image to find
84 function pickImage() {
85 global $wgCaptchaDirectory, $wgCaptchaDirectoryLevels;
86 return $this->pickImageDir(
88 $wgCaptchaDirectoryLevels );
91 function pickImageDir( $directory, $levels ) {
95 // Check which subdirs are actually present...
96 $dir = opendir( $directory );
97 while ( false !== ( $entry = readdir( $dir ) ) ) {
98 if ( ctype_xdigit( $entry ) && strlen( $entry ) == 1 ) {
104 $place = mt_rand( 0, count( $dirs ) - 1 );
105 // In case all dirs are not filled,
106 // cycle through next digits...
107 for ( $j = 0; $j < count( $dirs ); $j++ ) {
108 $char = $dirs[( $place + $j ) % count( $dirs )];
109 $return = $this->pickImageDir( "$directory/$char", $levels - 1 );
114 // Didn't find any images in this directory... empty?
117 return $this->pickImageFromDir( $directory );
121 function pickImageFromDir( $directory ) {
122 if ( !is_dir( $directory ) ) {
125 $n = mt_rand( 0, $this->countFiles( $directory ) - 1 );
126 $dir = opendir( $directory );
130 $entry = readdir( $dir );
132 while ( false !== $entry ) {
133 $entry = readdir( $dir );
134 if ( preg_match( '/^image_([0-9a-f]+)_([0-9a-f]+)\\.png$/', $entry, $matches ) ) {
135 $size = getimagesize( "$directory/$entry" );
137 'salt' => $matches[1],
138 'hash' => $matches[2],
140 'height' => $size[1],
143 if ( $count++ == $n ) {
153 * Count the number of files in a directory.
156 function countFiles( $dirname ) {
157 $dir = opendir( $dirname );
159 while ( false !== ( $entry = readdir( $dir ) ) ) {
160 if ( $entry != '.' && $entry != '..' ) {
168 function showImage() {
173 $info = $this->retrieveCaptcha();
176 // Be a little less restrictive for now; in at least some circumstances,
177 // Konqueror tries to reload the image even if you haven't navigated
178 // away from the page.
179 if( $info['viewed'] ) {
180 wfHttpError( 403, 'Access Forbidden', "Can't view captcha image a second time." );
185 $info['viewed'] = wfTimestamp();
186 $this->storeCaptcha( $info );
188 $salt = $info['salt'];
189 $hash = $info['hash'];
190 $file = $this->imagePath( $salt, $hash );
192 if ( file_exists( $file ) ) {
194 require_once "$IP/includes/StreamFile.php";
195 header( "Cache-Control: private, s-maxage=0, max-age=3600" );
196 wfStreamFile( $file );
200 wfHttpError( 500, 'Internal Error', 'Requested bogus captcha image' );
204 function imagePath( $salt, $hash ) {
205 global $wgCaptchaDirectory, $wgCaptchaDirectoryLevels;
206 $file = $wgCaptchaDirectory;
207 $file .= DIRECTORY_SEPARATOR;
208 for ( $i = 0; $i < $wgCaptchaDirectoryLevels; $i++ ) {
209 $file .= $hash { $i } ;
210 $file .= DIRECTORY_SEPARATOR;
212 $file .= "image_{$salt}_{$hash}.png";
217 * Show a message asking the user to enter a captcha on edit
218 * The result will be treated as wiki text
220 * @param $action Action being performed
223 function getMessage( $action ) {
224 $name = 'fancycaptcha-' . $action;
225 $text = wfMsg( $name );
226 # Obtain a more tailored message, if possible, otherwise, fall back to
227 # the default for edits
228 return wfEmptyMsg( $name, $text ) ? wfMsg( 'fancycaptcha-edit' ) : $text;
232 * Delete a solved captcha image, if $wgCaptchaDeleteOnSolve is true.
234 function passCaptcha() {
235 global $wgCaptchaDeleteOnSolve;
237 $info = $this->retrieveCaptcha(); // get the captcha info before it gets deleted
238 $pass = parent::passCaptcha();
240 if ( $pass && $wgCaptchaDeleteOnSolve ) {
241 $filename = $this->imagePath( $info['salt'], $info['hash'] );
242 if ( file_exists( $filename ) ) {