mediawiki-extensions-OATHAuth/extension.json
Amir Sarabadani 808df6dc55 Add private logging when user disables 2fa for someone else
It's better that we add for when someone enables or disables for self too
But that can be done in a follow-up patch

Bug: T180896
Change-Id: Ic173ebb7e39d22e40fea23c2b906d246adef1e05
2019-04-12 12:10:43 +00:00

142 lines
3.2 KiB
JSON

{
"name": "OATHAuth",
"version": "0.2.2",
"author": "Ryan Lane",
"url": "https://www.mediawiki.org/wiki/Extension:OATHAuth",
"descriptionmsg": "oathauth-desc",
"type": "other",
"requires": {
"MediaWiki": ">= 1.32.0"
},
"license-name": "GPL-2.0-or-later AND GPL-3.0-or-later",
"AutoloadClasses": {
"ApiOATHValidate": "includes/api/ApiOATHValidate.php",
"ApiQueryOATH": "includes/api/ApiQueryOATH.php",
"OATHAuthHooks": "includes/OATHAuthHooks.php",
"OATHAuthKey": "includes/OATHAuthKey.php",
"OATHAuthUtils": "includes/OATHAuthUtils.php",
"OATHUserRepository": "includes/OATHUserRepository.php",
"OATHUser": "includes/OATHUser.php",
"SpecialOATH": "includes/special/SpecialOATH.php",
"SpecialOATHEnable": "includes/special/SpecialOATHEnable.php",
"SpecialOATHDisable": "includes/special/SpecialOATHDisable.php",
"SpecialDisableOATHForUser": "includes/special/SpecialDisableOATHForUser.php",
"ProxySpecialPage": "includes/special/ProxySpecialPage.php",
"TOTPAuthenticationRequest": "includes/auth/TOTPAuthenticationRequest.php",
"TOTPSecondaryAuthenticationProvider": "includes/auth/TOTPSecondaryAuthenticationProvider.php"
},
"AuthManagerAutoConfig": {
"secondaryauth": {
"TOTPSecondaryAuthenticationProvider":{
"class": "TOTPSecondaryAuthenticationProvider",
"sort": 50
}
}
},
"ExtensionMessagesFiles": {
"OATHAuthAlias": "OATHAuth.alias.php"
},
"Hooks": {
"AuthChangeFormFields": [
"OATHAuthHooks::onAuthChangeFormFields"
],
"TwoFactorIsEnabled": [
"OATHAuthHooks::onTwoFactorIsEnabled"
],
"LoadExtensionSchemaUpdates": [
"OATHAuthHooks::onLoadExtensionSchemaUpdates"
],
"GetPreferences": [
"OATHAuthHooks::onGetPreferences"
]
},
"MessagesDirs": {
"OATHAuth": [
"i18n"
]
},
"config": {
"OATHAuthWindowRadius": 4,
"OATHAuthDatabase": false,
"OATHAuthSecret": false,
"OATHAuthAccountPrefix": false
},
"ResourceModules": {
"ext.oath.showqrcode": {
"scripts": [
"jquery.qrcode.js",
"qrcode.js",
"ext.oath.showqrcode.js"
]
},
"ext.oath.showqrcode.styles": {
"styles": [
"ext.oath.showqrcode.styles.css"
]
}
},
"ResourceFileModulePaths": {
"localBasePath": "modules",
"remoteExtPath": "OATHAuth"
},
"SpecialPages": {
"OATH": "SpecialOATH",
"DisableOATHForUser": "SpecialDisableOATHForUser"
},
"AvailableRights": [
"oathauth-enable",
"oathauth-api-all",
"oathauth-disable-for-user",
"oathauth-view-log"
],
"GroupPermissions": {
"*": {
"oathauth-enable": true,
"oathauth-disable-for-user": false,
"oathauth-view-log": false
},
"sysop": {
"oathauth-disable-for-user": true,
"oathauth-view-log": true
}
},
"GrantPermissions": {
"oath": {
"oathauth-api-all": true
}
},
"GrantPermissionGroups": {
"oath": "authentication"
},
"APIModules": {
"oathvalidate": "ApiOATHValidate"
},
"APIMetaModules": {
"oath": "ApiQueryOATH"
},
"RateLimits": {
"badoath": {
"&can-bypass": false,
"user": [
10,
60
]
}
},
"load_composer_autoloader": true,
"LogTypes": [ "oath" ],
"LogNames": {
"oath": "oath-log-name"
},
"LogHeaders": {
"oath": "oath-log-header"
},
"LogActionsHandlers": {
"oath/*": "LogFormatter"
},
"LogRestrictions": {
"oath": "oathauth-view-log"
},
"manifest_version": 1
}