mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/OATHAuth
synced 2024-11-11 17:01:13 +00:00
dac8cb27dc
Standardises code Bug: T270971 Change-Id: If4ec8443afde189ce69d305857f94249a605dd42
206 lines
4.2 KiB
JSON
206 lines
4.2 KiB
JSON
{
|
|
"name": "OATHAuth",
|
|
"version": "0.5.0",
|
|
"author": [
|
|
"Ryan Lane",
|
|
"Robert Vogel <vogel@hallowelt.com>",
|
|
"Dejan Savuljesku <savuljesku@hallowelt.com>"
|
|
],
|
|
"url": "https://www.mediawiki.org/wiki/Extension:OATHAuth",
|
|
"descriptionmsg": "oathauth-desc",
|
|
"type": "other",
|
|
"requires": {
|
|
"MediaWiki": ">= 1.37.0"
|
|
},
|
|
"license-name": "GPL-2.0-or-later AND GPL-3.0-or-later",
|
|
"attributes": {
|
|
"OATHAuth": {
|
|
"Modules": {
|
|
"totp": "\\MediaWiki\\Extension\\OATHAuth\\Module\\TOTP::factory"
|
|
}
|
|
}
|
|
},
|
|
"AutoloadNamespaces": {
|
|
"MediaWiki\\Extension\\OATHAuth\\": "src/"
|
|
},
|
|
"TestAutoloadNamespaces": {
|
|
"MediaWiki\\Extension\\OATHAuth\\Tests\\": "tests/phpunit/"
|
|
},
|
|
"AuthManagerAutoConfig": {
|
|
"secondaryauth": {
|
|
"OATHSecondaryAuthenticationProvider": {
|
|
"class": "\\MediaWiki\\Extension\\OATHAuth\\Auth\\SecondaryAuthenticationProvider",
|
|
"sort": 50
|
|
}
|
|
}
|
|
},
|
|
"ServiceWiringFiles": [
|
|
"ServiceWiring.php"
|
|
],
|
|
"ExtensionMessagesFiles": {
|
|
"OATHAuthAlias": "OATHAuth.alias.php"
|
|
},
|
|
"Hooks": {
|
|
"AuthChangeFormFields": "main",
|
|
"LoadExtensionSchemaUpdates": "updater",
|
|
"GetPreferences": "main",
|
|
"getUserPermissionsErrors": "main",
|
|
"UserEffectiveGroups": "main",
|
|
"UserGetRights": "main",
|
|
"BeforeCreateEchoEvent": "\\MediaWiki\\Extension\\OATHAuth\\Notifications\\Manager::onBeforeCreateEchoEvent"
|
|
},
|
|
"HookHandlers": {
|
|
"main": {
|
|
"class": "\\MediaWiki\\Extension\\OATHAuth\\Hook\\HookHandler",
|
|
"services": [
|
|
"OATHUserRepository",
|
|
"PermissionManager",
|
|
"MainConfig",
|
|
"UserGroupManager"
|
|
]
|
|
},
|
|
"updater": {
|
|
"class": "MediaWiki\\Extension\\OATHAuth\\Hook\\UpdateTables"
|
|
}
|
|
},
|
|
"MessagesDirs": {
|
|
"OATHAuth": [
|
|
"i18n",
|
|
"i18n/api"
|
|
]
|
|
},
|
|
"config": {
|
|
"OATHAuthWindowRadius": {
|
|
"value": 4
|
|
},
|
|
"OATHAuthDatabase": {
|
|
"value": false
|
|
},
|
|
"OATHAuthAccountPrefix": {
|
|
"value": false
|
|
},
|
|
"OATHExclusiveRights": {
|
|
"value": []
|
|
},
|
|
"OATHRequiredForGroups": {
|
|
"value": []
|
|
}
|
|
},
|
|
"ResourceModules": {
|
|
"ext.oath.totp.showqrcode": {
|
|
"scripts": [
|
|
"totp/jquery.qrcode.js",
|
|
"totp/qrcode.js",
|
|
"totp/ext.oath.showqrcode.js"
|
|
],
|
|
"targets": [
|
|
"desktop",
|
|
"mobile"
|
|
]
|
|
},
|
|
"ext.oath.totp.showqrcode.styles": {
|
|
"styles": [
|
|
"totp/ext.oath.showqrcode.styles.css"
|
|
],
|
|
"targets": [
|
|
"desktop",
|
|
"mobile"
|
|
]
|
|
}
|
|
},
|
|
"ResourceFileModulePaths": {
|
|
"localBasePath": "modules",
|
|
"remoteExtPath": "OATHAuth/modules"
|
|
},
|
|
"SpecialPages": {
|
|
"DisableOATHForUser": {
|
|
"class": "\\MediaWiki\\Extension\\OATHAuth\\Special\\DisableOATHForUser",
|
|
"services": [
|
|
"OATHUserRepository",
|
|
"UserFactory"
|
|
]
|
|
},
|
|
"OATHManage": {
|
|
"class": "\\MediaWiki\\Extension\\OATHAuth\\Special\\OATHManage",
|
|
"services": [
|
|
"OATHUserRepository",
|
|
"OATHAuth"
|
|
]
|
|
},
|
|
"VerifyOATHForUser": {
|
|
"class": "\\MediaWiki\\Extension\\OATHAuth\\Special\\VerifyOATHForUser",
|
|
"services": [
|
|
"OATHUserRepository",
|
|
"UserFactory"
|
|
]
|
|
}
|
|
},
|
|
"AvailableRights": [
|
|
"oathauth-enable",
|
|
"oathauth-api-all",
|
|
"oathauth-disable-for-user",
|
|
"oathauth-verify-user",
|
|
"oathauth-view-log"
|
|
],
|
|
"GroupPermissions": {
|
|
"*": {
|
|
"oathauth-disable-for-user": false,
|
|
"oathauth-view-log": false
|
|
},
|
|
"user": {
|
|
"oathauth-enable": true
|
|
},
|
|
"sysop": {
|
|
"oathauth-disable-for-user": true,
|
|
"oathauth-verify-user": true,
|
|
"oathauth-view-log": true
|
|
}
|
|
},
|
|
"GrantPermissions": {
|
|
"oath": {
|
|
"oathauth-api-all": true,
|
|
"oathauth-verify-user": true
|
|
}
|
|
},
|
|
"GrantPermissionGroups": {
|
|
"oath": "authentication"
|
|
},
|
|
"APIModules": {
|
|
"oathvalidate": "\\MediaWiki\\Extension\\OATHAuth\\Api\\Module\\ApiOATHValidate"
|
|
},
|
|
"APIMetaModules": {
|
|
"oath": "\\MediaWiki\\Extension\\OATHAuth\\Api\\Module\\ApiQueryOATH"
|
|
},
|
|
"RateLimits": {
|
|
"badoath": {
|
|
"&can-bypass": false,
|
|
"user": [ 10, 60 ],
|
|
"user-global": [ 10, 60 ]
|
|
}
|
|
},
|
|
"ReauthenticateTime": {
|
|
"oathauth-enable": 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"
|
|
},
|
|
"ActionFilteredLogs": {
|
|
"oath": {
|
|
"verify": [ "verify" ],
|
|
"disable-other": [ "disable-other" ]
|
|
}
|
|
},
|
|
"manifest_version": 2
|
|
}
|