| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 | const Model = require('objection').Modelconst fs = require('fs-extra')const path = require('path')const _ = require('lodash')const yaml = require('js-yaml')const commonHelper = require('../helpers/common')/** * Authentication model */module.exports = class Authentication extends Model {  static get tableName() { return 'authentication' }  static get jsonSchema () {    return {      type: 'object',      required: ['module'],      properties: {        id: { type: 'string' },        module: { type: 'string' },        isEnabled: { type: 'boolean' },        selfRegistration: {type: 'boolean'}      }    }  }  static get jsonAttributes() {    return ['config', 'domainWhitelist', 'autoEnrollGroups']  }  static async getStrategy(key) {    return WIKI.db.authentication.query().findOne({ key })  }  static async getStrategies({ enabledOnly = false } = {}) {    const strategies = await WIKI.db.authentication.query().where(enabledOnly ? { isEnabled: true } : {})    return strategies.map(str => ({      ...str,      domainWhitelist: _.get(str.domainWhitelist, 'v', []),      autoEnrollGroups: _.get(str.autoEnrollGroups, 'v', [])    }))  }  static async refreshStrategiesFromDisk() {    try {      // -> Fetch definitions from disk      const authenticationDirs = await fs.readdir(path.join(WIKI.SERVERPATH, 'modules/authentication'))      WIKI.data.authentication = []      for (const dir of authenticationDirs) {        const def = await fs.readFile(path.join(WIKI.SERVERPATH, 'modules/authentication', dir, 'definition.yml'), 'utf8')        const defParsed = yaml.load(def)        if (!defParsed.isAvailable) { continue }        defParsed.key = dir        defParsed.props = commonHelper.parseModuleProps(defParsed.props)        WIKI.data.authentication.push(defParsed)        WIKI.logger.debug(`Loaded authentication module definition ${dir}: [ OK ]`)      }      WIKI.logger.info(`Loaded ${WIKI.data.authentication.length} authentication module definitions: [ OK ]`)    } catch (err) {      WIKI.logger.error(`Failed to scan or load authentication providers: [ FAILED ]`)      WIKI.logger.error(err)    }  }}
 |