| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102 | import { Model } from 'objection'import fs from 'node:fs/promises'import path from 'node:path'import { defaultTo, forOwn, isBoolean, replace, sortBy } from 'lodash-es'import yaml from 'js-yaml'import { parseModuleProps } from '../helpers/common.mjs'/** * Analytics model */export class Analytics extends Model {  static get tableName() { return 'analytics' }  static get jsonSchema () {    return {      type: 'object',      required: ['module', 'isEnabled'],      properties: {        id: { type: 'string' },        module: { type: 'string' },        isEnabled: { type: 'boolean', default: false }      }    }  }  static get jsonAttributes() {    return ['config']  }  static async getProviders(isEnabled) {    const providers = await WIKI.db.analytics.query().where(isBoolean(isEnabled) ? { isEnabled } : {})    return sortBy(providers, ['module'])  }  static async refreshProvidersFromDisk() {    try {      // -> Fetch definitions from disk      const analyticsDirs = await fs.readdir(path.join(WIKI.SERVERPATH, 'modules/analytics'))      WIKI.data.analytics = []      for (const dir of analyticsDirs) {        const def = await fs.readFile(path.join(WIKI.SERVERPATH, 'modules/analytics', dir, 'definition.yml'), 'utf8')        const defParsed = yaml.load(def)        defParsed.key = dir        defParsed.props = parseModuleProps(defParsed.props)        WIKI.data.analytics.push(defParsed)        WIKI.logger.debug(`Loaded analytics module definition ${dir}: [ OK ]`)      }      WIKI.logger.info(`Loaded ${WIKI.data.analytics.length} analytics module definitions: [ OK ]`)    } catch (err) {      WIKI.logger.error(`Failed to scan or load analytics providers: [ FAILED ]`)      WIKI.logger.error(err)    }  }  static async getCode ({ cache = false } = {}) {    if (cache) {      const analyticsCached = await WIKI.cache.get('analytics')      if (analyticsCached) {        return analyticsCached      }    }    try {      const analyticsCode = {        head: '',        bodyStart: '',        bodyEnd: ''      }      const providers = await WIKI.db.analytics.getProviders(true)      for (let provider of providers) {        const def = await fs.readFile(path.join(WIKI.SERVERPATH, 'modules/analytics', provider.key, 'code.yml'), 'utf8')        let code = yaml.safeLoad(def)        code.head = defaultTo(code.head, '')        code.bodyStart = defaultTo(code.bodyStart, '')        code.bodyEnd = defaultTo(code.bodyEnd, '')        forOwn(provider.config, (value, key) => {          code.head = replace(code.head, new RegExp(`{{${key}}}`, 'g'), value)          code.bodyStart = replace(code.bodyStart, `{{${key}}}`, value)          code.bodyEnd = replace(code.bodyEnd, `{{${key}}}`, value)        })        analyticsCode.head += code.head        analyticsCode.bodyStart += code.bodyStart        analyticsCode.bodyEnd += code.bodyEnd      }      await WIKI.cache.set('analytics', analyticsCode, 300)      return analyticsCode    } catch (err) {      WIKI.logger.warn('Error while getting analytics code: ', err)      return {        head: '',        bodyStart: '',        bodyEnd: ''      }    }  }}
 |