2015-12-17 21:09:57 +00:00
|
|
|
{
|
|
|
|
"name": "OATHAuth",
|
|
|
|
"version": "0.2.1",
|
|
|
|
"author": "Ryan Lane",
|
2016-01-19 22:13:44 +00:00
|
|
|
"url": "https://www.mediawiki.org/wiki/Extension:OATHAuth",
|
2015-12-17 21:09:57 +00:00
|
|
|
"descriptionmsg": "oathauth-desc",
|
|
|
|
"type": "other",
|
|
|
|
"AutoloadClasses": {
|
|
|
|
"OATHAuthHooks": "OATHAuth.hooks.php",
|
2015-11-16 02:52:23 +00:00
|
|
|
"OATHAuthLegacyHooks": "OATHAuth.hooks.legacy.php",
|
2014-05-19 00:05:59 +00:00
|
|
|
"OATHAuthKey": "OATHAuthKey.php",
|
2016-03-31 04:23:48 +00:00
|
|
|
"OATHAuthUtils": "OATHAuthUtils.php",
|
2014-05-19 00:05:59 +00:00
|
|
|
"OATHUserRepository": "OATHUserRepository.php",
|
2015-12-17 21:09:57 +00:00
|
|
|
"HOTP": "lib/hotp.php",
|
|
|
|
"HOTPResult": "lib/hotp.php",
|
|
|
|
"Base32": "lib/base32.php",
|
|
|
|
"OATHUser": "OATHUser.php",
|
2014-05-22 07:33:40 +00:00
|
|
|
"SpecialOATH": "special/SpecialOATH.php",
|
|
|
|
"SpecialOATHEnable": "special/SpecialOATHEnable.php",
|
|
|
|
"SpecialOATHDisable": "special/SpecialOATHDisable.php",
|
2014-05-27 18:00:21 +00:00
|
|
|
"SpecialOATHLogin": "special/SpecialOATHLogin.php",
|
2015-11-16 02:52:23 +00:00
|
|
|
"ProxySpecialPage": "special/ProxySpecialPage.php",
|
|
|
|
"TOTPAuthenticationRequest": "auth/TOTPAuthenticationRequest.php",
|
|
|
|
"TOTPSecondaryAuthenticationProvider": "auth/TOTPSecondaryAuthenticationProvider.php"
|
2015-12-17 21:09:57 +00:00
|
|
|
},
|
|
|
|
"ExtensionMessagesFiles": {
|
|
|
|
"OATHAuthAlias": "OATHAuth.alias.php"
|
|
|
|
},
|
2015-11-16 02:52:23 +00:00
|
|
|
"callback": "OATHAuthHooks::onRegistration",
|
2015-12-17 21:09:57 +00:00
|
|
|
"Hooks": {
|
2016-04-01 20:32:05 +00:00
|
|
|
"TwoFactorIsEnabled": [
|
2015-11-16 02:52:23 +00:00
|
|
|
"OATHAuthHooks::onTwoFactorIsEnabled"
|
2016-04-01 20:32:05 +00:00
|
|
|
],
|
2015-12-17 21:09:57 +00:00
|
|
|
"LoadExtensionSchemaUpdates": [
|
2015-11-16 02:52:23 +00:00
|
|
|
"OATHAuthHooks::onLoadExtensionSchemaUpdates"
|
2015-12-17 21:09:57 +00:00
|
|
|
],
|
|
|
|
"GetPreferences": [
|
2015-11-16 02:52:23 +00:00
|
|
|
"OATHAuthHooks::onGetPreferences"
|
2015-12-17 21:09:57 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"MessagesDirs": {
|
|
|
|
"OATHAuth": [
|
|
|
|
"i18n"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"config": {
|
2015-05-25 23:47:03 +00:00
|
|
|
"OATHAuthWindowRadius": 4,
|
2016-03-31 04:23:48 +00:00
|
|
|
"OATHAuthDatabase": false,
|
|
|
|
"OATHAuthSecret": false
|
2015-12-17 21:09:57 +00:00
|
|
|
},
|
|
|
|
"ResourceModules": {
|
|
|
|
"ext.oathauth": {
|
|
|
|
"scripts": [
|
2016-06-20 07:34:42 +00:00
|
|
|
"jquery.qrcode.js",
|
|
|
|
"qrcode.js"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"ext.oath.showqrcode": {
|
|
|
|
"scripts": [
|
|
|
|
"ext.oath.showqrcode.js"
|
2015-12-17 21:09:57 +00:00
|
|
|
],
|
2016-06-20 07:34:42 +00:00
|
|
|
"dependencies": [
|
|
|
|
"ext.oathauth"
|
|
|
|
]
|
2015-12-17 21:09:57 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"ResourceFileModulePaths": {
|
2016-06-20 07:34:42 +00:00
|
|
|
"localBasePath": "modules",
|
2015-12-17 21:09:57 +00:00
|
|
|
"remoteExtPath": "OATHAuth"
|
|
|
|
},
|
|
|
|
"SpecialPages": {
|
|
|
|
"OATH": "SpecialOATH"
|
|
|
|
},
|
2015-05-26 00:08:47 +00:00
|
|
|
"AvailableRights": [
|
|
|
|
"oathauth-enable"
|
|
|
|
],
|
|
|
|
"GroupPermissions": {
|
|
|
|
"*": {
|
|
|
|
"oathauth-enable": true
|
|
|
|
}
|
|
|
|
},
|
2015-12-17 21:09:57 +00:00
|
|
|
"manifest_version": 1
|
|
|
|
}
|