mirror of https://github.com/requarks/wiki
parent
803d86ff63
commit
2817c72ec3
@ -0,0 +1,7 @@
|
|||||||
|
key: box
|
||||||
|
title: Box
|
||||||
|
author: requarks.io
|
||||||
|
props:
|
||||||
|
clientId: String
|
||||||
|
clientSecret: String
|
||||||
|
rootFolder: String
|
@ -0,0 +1,23 @@
|
|||||||
|
module.exports = {
|
||||||
|
async activated() {
|
||||||
|
|
||||||
|
},
|
||||||
|
async deactivated() {
|
||||||
|
|
||||||
|
},
|
||||||
|
async init() {
|
||||||
|
|
||||||
|
},
|
||||||
|
async created() {
|
||||||
|
|
||||||
|
},
|
||||||
|
async updated() {
|
||||||
|
|
||||||
|
},
|
||||||
|
async deleted() {
|
||||||
|
|
||||||
|
},
|
||||||
|
async renamed() {
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
@ -1,5 +1,8 @@
|
|||||||
key: disk
|
key: disk
|
||||||
title: Local FS
|
title: Local File System
|
||||||
author: requarks.io
|
author: requarks.io
|
||||||
props:
|
props:
|
||||||
path: String
|
path:
|
||||||
|
type: String
|
||||||
|
title: Path
|
||||||
|
hint: Absolute path without a trailing slash (e.g. /home/wiki/backup, C:\wiki\backup)
|
||||||
|
@ -1,23 +1,68 @@
|
|||||||
|
const fs = require('fs-extra')
|
||||||
|
const path = require('path')
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Get file extension based on content type
|
||||||
|
*/
|
||||||
|
const getFileExtension = (contentType) => {
|
||||||
|
switch (contentType) {
|
||||||
|
case 'markdown':
|
||||||
|
return 'md'
|
||||||
|
case 'html':
|
||||||
|
return 'html'
|
||||||
|
default:
|
||||||
|
return 'txt'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Inject page metadata into contents
|
||||||
|
*/
|
||||||
|
const injectMetadata = (page) => {
|
||||||
|
let meta = [
|
||||||
|
['title', page.title],
|
||||||
|
['description', page.description]
|
||||||
|
]
|
||||||
|
let metaFormatted = ''
|
||||||
|
switch (page.contentType) {
|
||||||
|
case 'markdown':
|
||||||
|
metaFormatted = meta.map(mt => `[//]: # ${mt[0]}: ${mt[1]}`).join('\n')
|
||||||
|
break
|
||||||
|
case 'html':
|
||||||
|
metaFormatted = meta.map(mt => `<!-- ${mt[0]}: ${mt[1]} -->`).join('\n')
|
||||||
|
break
|
||||||
|
default:
|
||||||
|
metaFormatted = meta.map(mt => `#WIKI ${mt[0]}: ${mt[1]}`).join('\n')
|
||||||
|
break
|
||||||
|
}
|
||||||
|
return `${metaFormatted}\n\n${page.content}`
|
||||||
|
}
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
async activated() {
|
async activated() {
|
||||||
|
// not used
|
||||||
},
|
},
|
||||||
async deactivated() {
|
async deactivated() {
|
||||||
|
// not used
|
||||||
},
|
},
|
||||||
async init() {
|
async init() {
|
||||||
|
await fs.ensureDir(this.config.path)
|
||||||
},
|
},
|
||||||
async created() {
|
async created() {
|
||||||
|
const filePath = path.join(this.config.path, `${this.page.path}.${getFileExtension(this.page.contentType)}`)
|
||||||
|
await fs.outputFile(filePath, injectMetadata(this.page), 'utf8')
|
||||||
},
|
},
|
||||||
async updated() {
|
async updated() {
|
||||||
|
const filePath = path.join(this.config.path, `${this.page.path}.${getFileExtension(this.page.contentType)}`)
|
||||||
|
await fs.outputFile(filePath, injectMetadata(this.page), 'utf8')
|
||||||
},
|
},
|
||||||
async deleted() {
|
async deleted() {
|
||||||
|
const filePath = path.join(this.config.path, `${this.page.path}.${getFileExtension(this.page.contentType)}`)
|
||||||
|
await fs.unlink(filePath)
|
||||||
},
|
},
|
||||||
async renamed() {
|
async renamed() {
|
||||||
|
const sourceFilePath = path.join(this.config.path, `${this.page.sourcePath}.${getFileExtension(this.page.contentType)}`)
|
||||||
|
const destinationFilePath = path.join(this.config.path, `${this.page.destinationPath}.${getFileExtension(this.page.contentType)}`)
|
||||||
|
await fs.move(sourceFilePath, destinationFilePath, { overwrite: true })
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in new issue