2005-10-14 05:07:24 +00:00
|
|
|
<?php
|
2006-01-27 08:00:32 +00:00
|
|
|
/**
|
|
|
|
* Experimental image-based captcha plugin, using images generated by an
|
|
|
|
* external tool.
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005, 2006 Brion Vibber <brion@pobox.com>
|
|
|
|
* http://www.mediawiki.org/
|
|
|
|
*
|
|
|
|
* 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.,
|
2010-06-21 13:45:17 +00:00
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
2006-01-27 08:00:32 +00:00
|
|
|
* http://www.gnu.org/copyleft/gpl.html
|
|
|
|
*
|
2010-06-06 15:12:22 +00:00
|
|
|
* @file
|
|
|
|
* @ingroup Extensions
|
2006-01-27 08:00:32 +00:00
|
|
|
*/
|
2005-10-14 05:07:24 +00:00
|
|
|
|
2007-11-12 07:42:25 +00:00
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
2005-10-14 05:07:24 +00:00
|
|
|
|
2015-05-21 15:32:51 +00:00
|
|
|
require_once __DIR__ . '/ConfirmEdit.php';
|
2011-10-14 23:09:19 +00:00
|
|
|
$wgCaptchaClass = 'FancyCaptcha';
|
|
|
|
|
2012-09-16 17:31:47 +00:00
|
|
|
/**
|
|
|
|
* The name of a file backend ($wgFileBackends) to be used for storing files.
|
|
|
|
* Defaults to FSFileBackend using $wgCaptchaDirectory as a base path.
|
|
|
|
*/
|
|
|
|
$wgCaptchaFileBackend = '';
|
|
|
|
|
2005-10-14 05:07:24 +00:00
|
|
|
global $wgCaptchaDirectory;
|
|
|
|
$wgCaptchaDirectory = "$wgUploadDirectory/captcha"; // bad default :D
|
|
|
|
|
2007-02-19 20:09:03 +00:00
|
|
|
global $wgCaptchaDirectoryLevels;
|
|
|
|
$wgCaptchaDirectoryLevels = 0; // To break into subdirectories
|
|
|
|
|
2005-10-14 05:07:24 +00:00
|
|
|
global $wgCaptchaSecret;
|
|
|
|
$wgCaptchaSecret = "CHANGE_THIS_SECRET!";
|
|
|
|
|
2010-08-29 13:31:31 +00:00
|
|
|
/**
|
|
|
|
* By default the FancyCaptcha rotates among all available captchas.
|
2012-01-12 08:58:40 +00:00
|
|
|
* Setting $wgCaptchaDeleteOnSolve to true will delete the captcha
|
|
|
|
* files when they are correctly solved. Thus the user will need
|
2010-08-29 13:31:31 +00:00
|
|
|
* something like a cron creating new thumbnails to avoid drying up.
|
|
|
|
*/
|
|
|
|
$wgCaptchaDeleteOnSolve = false;
|
|
|
|
|
2015-05-21 15:32:51 +00:00
|
|
|
$wgMessagesDirs['FancyCaptcha'] = __DIR__ . '/FancyCaptcha/i18n';
|
|
|
|
$wgExtensionMessagesFiles['FancyCaptcha'] = __DIR__ . '/FancyCaptcha.i18n.php';
|
|
|
|
$wgAutoloadClasses['FancyCaptcha'] = __DIR__ . '/FancyCaptcha.class.php';
|
2013-01-17 02:00:09 +00:00
|
|
|
|
|
|
|
$wgResourceModules['ext.confirmEdit.fancyCaptcha.styles'] = array(
|
2015-04-28 13:41:47 +00:00
|
|
|
'position' => 'top',
|
2015-05-21 15:32:51 +00:00
|
|
|
'localBasePath' => __DIR__ . '/resources',
|
2013-01-17 02:00:09 +00:00
|
|
|
'remoteExtPath' => 'ConfirmEdit/resources',
|
2013-11-26 22:07:03 +00:00
|
|
|
'targets' => array( 'mobile', 'desktop' ),
|
2013-01-17 02:00:09 +00:00
|
|
|
'styles' => 'ext.confirmEdit.fancyCaptcha.css',
|
|
|
|
);
|
|
|
|
|
|
|
|
$wgResourceModules['ext.confirmEdit.fancyCaptcha'] = array(
|
2015-05-21 15:32:51 +00:00
|
|
|
'localBasePath' => __DIR__ . '/resources',
|
2013-01-17 02:00:09 +00:00
|
|
|
'remoteExtPath' => 'ConfirmEdit/resources',
|
|
|
|
'scripts' => 'ext.confirmEdit.fancyCaptcha.js',
|
|
|
|
'dependencies' => 'mediawiki.api',
|
|
|
|
);
|
|
|
|
|
2013-11-26 22:07:03 +00:00
|
|
|
// FIXME: remove, add mobile target to ext.confirmEdit.fancyCaptcha and update
|
|
|
|
// MobileFrontend accordingly when bug 57629 is resolved
|
|
|
|
$wgResourceModules['ext.confirmEdit.fancyCaptchaMobile'] = array(
|
2015-05-21 15:32:51 +00:00
|
|
|
'localBasePath' => __DIR__ . '/resources',
|
2013-11-26 22:07:03 +00:00
|
|
|
'remoteExtPath' => 'ConfirmEdit/resources',
|
|
|
|
'scripts' => 'ext.confirmEdit.fancyCaptcha.js',
|
|
|
|
'targets' => array( 'mobile', 'desktop' ),
|
|
|
|
'dependencies' => 'mobile.startup',
|
|
|
|
);
|
|
|
|
|
2015-05-21 15:32:51 +00:00
|
|
|
$wgAutoloadClasses['ApiFancyCaptchaReload'] = __DIR__ . '/ApiFancyCaptchaReload.php';
|
2013-01-17 02:00:09 +00:00
|
|
|
$wgAPIModules['fancycaptchareload'] = 'ApiFancyCaptchaReload';
|