OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
reader
/
API
/
swagger-ui-5.17.14
/
src
/
core
/
plugins
/
auth
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
08/07/2024 04:34:11 AM
rwxr-xr-x
📄
actions.js
7.98 KB
08/07/2024 04:34:06 AM
rw-r--r--
📁
components
-
08/07/2024 04:34:34 AM
rwxr-xr-x
📁
configs-extensions
-
08/07/2024 04:34:34 AM
rwxr-xr-x
📄
index.js
2.33 KB
08/07/2024 04:34:06 AM
rw-r--r--
📄
reducers.js
1.97 KB
08/07/2024 04:34:06 AM
rw-r--r--
📄
selectors.js
3.11 KB
08/07/2024 04:34:06 AM
rw-r--r--
📁
spec-extensions
-
08/07/2024 04:34:34 AM
rwxr-xr-x
📄
wrap-actions.js
1.76 KB
08/07/2024 04:34:06 AM
rw-r--r--
Editing: index.js
Close
import reducers from "./reducers" import * as actions from "./actions" import * as selectors from "./selectors" import { execute as wrappedExecuteAction } from "./spec-extensions/wrap-actions" import { loaded as wrappedLoadedAction } from "./configs-extensions/wrap-actions" import { authorize as wrappedAuthorizeAction, logout as wrappedLogoutAction } from "./wrap-actions" import LockAuthIcon from "./components/lock-auth-icon" import UnlockAuthIcon from "./components/unlock-auth-icon" export default function() { return { afterLoad(system) { this.rootInjects = this.rootInjects || {} this.rootInjects.initOAuth = system.authActions.configureAuth this.rootInjects.preauthorizeApiKey = preauthorizeApiKey.bind(null, system) this.rootInjects.preauthorizeBasic = preauthorizeBasic.bind(null, system) }, components: { LockAuthIcon: LockAuthIcon, UnlockAuthIcon: UnlockAuthIcon, LockAuthOperationIcon: LockAuthIcon, UnlockAuthOperationIcon: UnlockAuthIcon, }, statePlugins: { auth: { reducers, actions, selectors, wrapActions: { authorize: wrappedAuthorizeAction, logout: wrappedLogoutAction, } }, configs: { wrapActions: { loaded: wrappedLoadedAction, }, }, spec: { wrapActions: { execute: wrappedExecuteAction, }, }, } } } export function preauthorizeBasic(system, key, username, password) { const { authActions: { authorize }, specSelectors: { specJson, isOAS3 } } = system const definitionBase = isOAS3() ? ["components", "securitySchemes"] : ["securityDefinitions"] const schema = specJson().getIn([...definitionBase, key]) if(!schema) { return null } return authorize({ [key]: { value: { username, password, }, schema: schema.toJS() } }) } export function preauthorizeApiKey(system, key, value) { const { authActions: { authorize }, specSelectors: { specJson, isOAS3 } } = system const definitionBase = isOAS3() ? ["components", "securitySchemes"] : ["securityDefinitions"] const schema = specJson().getIn([...definitionBase, key]) if(!schema) { return null } return authorize({ [key]: { value, schema: schema.toJS() } }) }