mirror of https://github.com/requarks/wiki
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.0 KiB
67 lines
2.0 KiB
const Model = require('objection').Model
|
|
const fs = require('fs-extra')
|
|
const path = require('path')
|
|
const _ = require('lodash')
|
|
const yaml = require('js-yaml')
|
|
const commonHelper = require('../helpers/common')
|
|
|
|
/* global WIKI */
|
|
|
|
/**
|
|
* 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' },
|
|
selfRegistration: {type: 'boolean'}
|
|
}
|
|
}
|
|
}
|
|
|
|
static get jsonAttributes() {
|
|
return ['config', 'domainWhitelist', 'autoEnrollGroups']
|
|
}
|
|
|
|
static async getStrategy(key) {
|
|
return WIKI.models.authentication.query().findOne({ key })
|
|
}
|
|
|
|
static async getStrategies() {
|
|
const strategies = await WIKI.models.authentication.query().orderBy('order')
|
|
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)
|
|
defParsed.key = dir
|
|
defParsed.props = commonHelper.parseModuleProps(defParsed.props)
|
|
WIKI.data.analytics.push(defParsed)
|
|
WIKI.logger.debug(`Loaded authentication module definition ${dir}: [ OK ]`)
|
|
}
|
|
|
|
WIKI.logger.info(`Loaded ${WIKI.data.analytics.length} authentication module definitions: [ OK ]`)
|
|
} catch (err) {
|
|
WIKI.logger.error(`Failed to scan or load authentication providers: [ FAILED ]`)
|
|
WIKI.logger.error(err)
|
|
}
|
|
}
|
|
}
|