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.
22 lines
718 B
22 lines
718 B
const fs = require('fs-extra')
|
|
const path = require('path')
|
|
|
|
/* global WIKI */
|
|
|
|
module.exports = {
|
|
ext: {},
|
|
async init () {
|
|
const extDirs = await fs.readdir(path.join(WIKI.SERVERPATH, 'modules/extensions'))
|
|
WIKI.logger.info(`Checking for installed optional extensions...`)
|
|
for (let dir of extDirs) {
|
|
WIKI.extensions.ext[dir] = require(path.join(WIKI.SERVERPATH, 'modules/extensions', dir, 'ext.js'))
|
|
const isInstalled = await WIKI.extensions.ext[dir].check()
|
|
if (isInstalled) {
|
|
WIKI.logger.info(`Optional extension ${dir} is installed. [ OK ]`)
|
|
} else {
|
|
WIKI.logger.info(`Optional extension ${dir} was not found on this system. [ SKIPPED ]`)
|
|
}
|
|
}
|
|
}
|
|
}
|