mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/ConfirmEdit
synced 2024-11-12 01:11:15 +00:00
f786536715
* ext.confirmEdit.CaptchaInputWidget.js: Based on code from ve.init.mw.CaptchaSaveErrorHandler.js * ext.confirmEdit.CaptchaInputWidget.less: Based on code from mw/ext/VE repo in ve.ui.MWSaveDialog.css * ConfirmEditHooks.php: Based on code from mw/ext/VE repo in VisualEditorHooks.php Change-Id: I6605017fd31a4f96c529dd0beb69e9f4433cebc1
174 lines
4.4 KiB
JSON
174 lines
4.4 KiB
JSON
{
|
|
"@doc": "Please read README.md",
|
|
"name": "ConfirmEdit",
|
|
"version": "1.6.0",
|
|
"author": [
|
|
"Brion Vibber",
|
|
"Florian Schmidt",
|
|
"Sam Reed",
|
|
"..."
|
|
],
|
|
"url": "https://www.mediawiki.org/wiki/Extension:ConfirmEdit",
|
|
"descriptionmsg": "captcha-desc",
|
|
"license-name": "GPL-2.0-or-later",
|
|
"type": "antispam",
|
|
"requires": {
|
|
"MediaWiki": ">= 1.35.0"
|
|
},
|
|
"GroupPermissions": {
|
|
"*": {
|
|
"skipcaptcha": false
|
|
},
|
|
"user": {
|
|
"skipcaptcha": false
|
|
},
|
|
"autoconfirmed": {
|
|
"skipcaptcha": false
|
|
},
|
|
"bot": {
|
|
"skipcaptcha": true
|
|
},
|
|
"sysop": {
|
|
"skipcaptcha": true
|
|
}
|
|
},
|
|
"AvailableRights": [
|
|
"skipcaptcha"
|
|
],
|
|
"GrantPermissions": {
|
|
"basic": {
|
|
"skipcaptcha": true
|
|
}
|
|
},
|
|
"ExtensionFunctions": [
|
|
"ConfirmEditHooks::confirmEditSetup"
|
|
],
|
|
"SpecialPages": {
|
|
"Captcha": "SpecialCaptcha"
|
|
},
|
|
"MessagesDirs": {
|
|
"ConfirmEdit": [
|
|
"i18n",
|
|
"i18n/api"
|
|
]
|
|
},
|
|
"ExtensionMessagesFiles": {
|
|
"ConfirmEditAlias": "ConfirmEdit.alias.php"
|
|
},
|
|
"AutoloadClasses": {
|
|
"ConfirmEditHooks": "includes/ConfirmEditHooks.php",
|
|
"HTMLFancyCaptchaField": "FancyCaptcha/includes/HTMLFancyCaptchaField.php",
|
|
"HTMLReCaptchaNoCaptchaField": "ReCaptchaNoCaptcha/includes/HTMLReCaptchaNoCaptchaField.php",
|
|
"SimpleCaptcha": "SimpleCaptcha/SimpleCaptcha.php",
|
|
"CaptchaStore": "includes/store/CaptchaStore.php",
|
|
"CaptchaSessionStore": "includes/store/CaptchaSessionStore.php",
|
|
"CaptchaCacheStore": "includes/store/CaptchaCacheStore.php",
|
|
"CaptchaHashStore": "includes/store/CaptchaHashStore.php",
|
|
"CaptchaTriggers": "includes/CaptchaTriggers.php",
|
|
"SpecialCaptcha": "includes/specials/SpecialCaptcha.php",
|
|
"CaptchaPreAuthenticationProvider": "includes/auth/CaptchaPreAuthenticationProvider.php",
|
|
"CaptchaAuthenticationRequest": "includes/auth/CaptchaAuthenticationRequest.php",
|
|
"ReCaptchaNoCaptchaAuthenticationRequest": "ReCaptchaNoCaptcha/includes/ReCaptchaNoCaptchaAuthenticationRequest.php"
|
|
},
|
|
"ResourceModules": {
|
|
"ext.confirmEdit.editPreview.ipwhitelist.styles": {
|
|
"styles": "ext.confirmEdit.editPreview.ipwhitelist.styles.css"
|
|
},
|
|
"ext.confirmEdit.visualEditor": {
|
|
"scripts": "ve-confirmedit/ve.init.mw.CaptchaSaveErrorHandler.js",
|
|
"dependencies": "ext.confirmEdit.CaptchaInputWidget",
|
|
"targets": [
|
|
"desktop",
|
|
"mobile"
|
|
]
|
|
},
|
|
"ext.confirmEdit.simpleCaptcha": {
|
|
"styles": "../SimpleCaptcha/resources/ext.confirmEdit.simpleCaptcha.css"
|
|
}
|
|
},
|
|
"attributes": {
|
|
"VisualEditor": {
|
|
"PluginModules": [
|
|
"ext.confirmEdit.visualEditor"
|
|
]
|
|
}
|
|
},
|
|
"ResourceFileModulePaths": {
|
|
"localBasePath": "resources",
|
|
"remoteExtPath": "ConfirmEdit/resources"
|
|
},
|
|
"Hooks": {
|
|
"EditPageBeforeEditButtons": "ConfirmEditHooks::confirmEditPage",
|
|
"EmailUserForm": "ConfirmEditHooks::injectEmailUser",
|
|
"EmailUser": "ConfirmEditHooks::confirmEmailUser",
|
|
"PageContentSaveComplete": "ConfirmEditHooks::onPageContentSaveComplete",
|
|
"EditPage::showEditForm:fields": "ConfirmEditHooks::showEditFormFields",
|
|
"EditFilterMergedContent": "ConfirmEditHooks::confirmEditMerged",
|
|
"APIGetAllowedParams": "ConfirmEditHooks::onAPIGetAllowedParams",
|
|
"TitleReadWhitelist": "ConfirmEditHooks::onTitleReadWhitelist",
|
|
"AlternateEditPreview": "ConfirmEditHooks::onAlternateEditPreview",
|
|
"AuthChangeFormFields": "ConfirmEditHooks::onAuthChangeFormFields",
|
|
"ResourceLoaderRegisterModules": "ConfirmEditHooks::onResourceLoaderRegisterModules"
|
|
},
|
|
"AuthManagerAutoConfig": {
|
|
"preauth": {
|
|
"CaptchaPreAuthenticationProvider": {
|
|
"class": "CaptchaPreAuthenticationProvider",
|
|
"sort": 10
|
|
}
|
|
}
|
|
},
|
|
"config": {
|
|
"CaptchaWhitelistIP": {
|
|
"value": false
|
|
},
|
|
"Captcha": {
|
|
"value": null
|
|
},
|
|
"CaptchaTriggers": {
|
|
"value": {
|
|
"edit": false,
|
|
"create": false,
|
|
"sendemail": false,
|
|
"addurl": true,
|
|
"createaccount": true,
|
|
"badlogin": true,
|
|
"badloginperuser": true
|
|
},
|
|
"merge_strategy": "array_plus"
|
|
},
|
|
"CaptchaTriggersOnNamespace": {
|
|
"value": {},
|
|
"merge_strategy": "array_plus_2d"
|
|
},
|
|
"CaptchaStorageClass": {
|
|
"value": "CaptchaSessionStore"
|
|
},
|
|
"CaptchaSessionExpiration": {
|
|
"value": 1800
|
|
},
|
|
"CaptchaBadLoginExpiration": {
|
|
"value": 300
|
|
},
|
|
"CaptchaBadLoginPerUserExpiration": {
|
|
"value": 600
|
|
},
|
|
"AllowConfirmedEmail": {
|
|
"value": false
|
|
},
|
|
"CaptchaBadLoginAttempts": {
|
|
"value": 3
|
|
},
|
|
"CaptchaBadLoginPerUserAttempts": {
|
|
"value": 20
|
|
},
|
|
"CaptchaWhitelist": {
|
|
"value": false
|
|
},
|
|
"CaptchaRegexes": {
|
|
"value": []
|
|
}
|
|
},
|
|
"manifest_version": 2
|
|
}
|