123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143 |
- const Model = require('objection').Model
- const crypto = require('crypto')
- const pem2jwk = require('pem-jwk').pem2jwk
- const _ = require('lodash')
- /**
- * Site model
- */
- module.exports = class Site extends Model {
- static get tableName () { return 'sites' }
- static get jsonSchema () {
- return {
- type: 'object',
- required: ['hostname'],
- properties: {
- id: { type: 'string' },
- hostname: { type: 'string' },
- isEnabled: { type: 'boolean', default: false }
- }
- }
- }
- static get jsonAttributes () {
- return ['config']
- }
- static async getSiteByHostname ({ hostname, forceReload = false }) {
- if (forceReload) {
- await WIKI.db.sites.reloadCache()
- }
- const siteId = WIKI.sitesMappings[hostname] || WIKI.sitesMappings['*']
- if (siteId) {
- return WIKI.sites[siteId]
- }
- return null
- }
- static async reloadCache () {
- WIKI.logger.info('Reloading site configurations...')
- const sites = await WIKI.db.sites.query().orderBy('id')
- WIKI.sites = _.keyBy(sites, 'id')
- WIKI.sitesMappings = {}
- for (const site of sites) {
- WIKI.sitesMappings[site.hostname] = site.id
- }
- WIKI.logger.info(`Loaded ${sites.length} site configurations [ OK ]`)
- }
- static async createSite (hostname, config) {
- const newSite = await WIKI.db.sites.query().insertAndFetch({
- hostname,
- isEnabled: true,
- config: _.defaultsDeep(config, {
- title: 'My Wiki Site',
- description: '',
- company: '',
- contentLicense: '',
- footerExtra: '',
- pageExtensions: ['md', 'html', 'txt'],
- defaults: {
- timezone: 'America/New_York',
- dateFormat: 'YYYY-MM-DD',
- timeFormat: '12h'
- },
- features: {
- ratings: false,
- ratingsMode: 'off',
- comments: false,
- contributions: false,
- profile: true,
- search: true
- },
- logoUrl: '',
- logoText: true,
- sitemap: true,
- robots: {
- index: true,
- follow: true
- },
- locale: 'en',
- localeNamespacing: false,
- localeNamespaces: [],
- assets: {
- logo: false,
- logoExt: 'svg',
- favicon: false,
- faviconExt: 'svg',
- loginBg: false
- },
- theme: {
- dark: false,
- colorPrimary: '#1976D2',
- colorSecondary: '#02C39A',
- colorAccent: '#FF9800',
- colorHeader: '#000000',
- colorSidebar: '#1976D2',
- injectCSS: '',
- injectHead: '',
- injectBody: '',
- contentWidth: 'full',
- sidebarPosition: 'left',
- tocPosition: 'right',
- showSharingMenu: true,
- showPrintBtn: true,
- baseFont: 'roboto',
- contentFont: 'roboto'
- }
- })
- })
- WIKI.logger.debug(`Creating new DB storage for site ${newSite.id}`)
- await WIKI.db.storage.query().insert({
- module: 'db',
- siteId: newSite.id,
- isEnabled: true,
- contentTypes: {
- activeTypes: ['pages', 'images', 'documents', 'others', 'large'],
- largeThreshold: '5MB'
- },
- assetDelivery: {
- streaming: true,
- directAccess: false
- },
- state: {
- current: 'ok'
- }
- })
- return newSite
- }
- static async updateSite (id, patch) {
- return WIKI.db.sites.query().findById(id).patch(patch)
- }
- static async deleteSite (id) {
- await WIKI.db.storage.query().delete().where('siteId', id)
- return WIKI.db.sites.query().deleteById(id)
- }
- }
|