Skip to content

Commit

Permalink
fix: HA event publish
Browse files Browse the repository at this point in the history
  • Loading branch information
NGPixel committed Apr 20, 2020
1 parent bd4263e commit 405187b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions server/core/db.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,8 @@ module.exports = {
// -> Outbound events handling

this.listener.addChannel('wiki', payload => {
if (_.has(payload.event) && payload.source !== WIKI.INSTANCE_ID) {
WIKI.logger.debug(`Received event ${payload.event} from instance ${payload.source}: [ OK ]`)
if (_.has(payload, 'event') && payload.source !== WIKI.INSTANCE_ID) {
WIKI.logger.info(`Received event ${payload.event} from instance ${payload.source}: [ OK ]`)
WIKI.events.inbound.emit(payload.event, payload.value)
}
})
Expand Down Expand Up @@ -239,7 +239,7 @@ module.exports = {
* @param {object} value Payload of the event
*/
notifyViaDB (event, value) {
this.listener.publish('wiki', {
WIKI.models.listener.publish('wiki', {
source: WIKI.INSTANCE_ID,
event,
value
Expand Down
8 changes: 4 additions & 4 deletions server/models/pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -350,6 +350,7 @@ module.exports = class Page extends Model {

// -> Render page to HTML
await WIKI.models.pages.renderPage(page)
WIKI.events.outbound.emit('deletePageFromCache', page.hash)

// -> Update Search Index
const pageContents = await WIKI.models.pages.query().findById(page.id).select('render')
Expand Down Expand Up @@ -804,12 +805,11 @@ module.exports = class Page extends Model {
/**
* Delete an Existing Page from Cache
*
* @param {Object} page Page Model Instance
* @param {string} page.hash Hash of the Page
* @param {String} page Page Unique Hash
* @returns {Promise} Promise with no value
*/
static async deletePageFromCache(page) {
return fs.remove(path.resolve(WIKI.ROOTPATH, WIKI.config.dataPath, `cache/${page.hash}.bin`))
static async deletePageFromCache(hash) {
return fs.remove(path.resolve(WIKI.ROOTPATH, WIKI.config.dataPath, `cache/${hash}.bin`))
}

/**
Expand Down

0 comments on commit 405187b

Please sign in to comment.