1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586 |
- const _ = require('lodash')
- const fs = require('fs-extra')
- const path = require('path')
- const graphHelper = require('../../helpers/graph')
- // const getFieldNames = require('graphql-list-fields')
- /* global WIKI */
- module.exports = {
- Query: {
- async authentication() { return {} }
- },
- Mutation: {
- async authentication() { return {} }
- },
- AuthenticationQuery: {
- async strategies(obj, args, context, info) {
- let strategies = await WIKI.db.authentication.getStrategies()
- strategies = strategies.map(stg => ({
- ...stg,
- config: _.sortBy(_.transform(stg.config, (res, value, key) => {
- res.push({ key, value: JSON.stringify(value) })
- }, []), 'key')
- }))
- if (args.filter) { strategies = graphHelper.filter(strategies, args.filter) }
- if (args.orderBy) { strategies = graphHelper.orderBy(strategies, args.orderBy) }
- return strategies
- }
- },
- AuthenticationMutation: {
- async login(obj, args, context) {
- try {
- let authResult = await WIKI.db.users.login(args, context)
- return {
- ...authResult,
- responseResult: graphHelper.generateSuccess('Login success')
- }
- } catch (err) {
- return graphHelper.generateError(err)
- }
- },
- async loginTFA(obj, args, context) {
- try {
- let authResult = await WIKI.db.users.loginTFA(args, context)
- return {
- ...authResult,
- responseResult: graphHelper.generateSuccess('TFA success')
- }
- } catch (err) {
- return graphHelper.generateError(err)
- }
- },
- async updateStrategies(obj, args, context) {
- try {
- for (let str of args.strategies) {
- await WIKI.db.authentication.query().patch({
- isEnabled: str.isEnabled,
- config: _.reduce(str.config, (result, value, key) => {
- _.set(result, `${value.key}.value`, value.value)
- return result
- }, {}),
- selfRegistration: str.selfRegistration,
- domainWhitelist: { v: str.domainWhitelist },
- autoEnrollGroups: { v: str.autoEnrollGroups }
- }).where('key', str.key)
- }
- return {
- responseResult: graphHelper.generateSuccess('Strategies updated successfully')
- }
- } catch (err) {
- return graphHelper.generateError(err)
- }
- }
- },
- AuthenticationStrategy: {
- icon (ap, args) {
- return fs.readFile(path.join(WIKI.ROOTPATH, `assets/svg/auth-icon-${ap.key}.svg`), 'utf8').catch(err => {
- if (err.code === 'ENOENT') {
- return null
- }
- throw err
- })
- }
- }
- }
|