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.
61 lines
1.6 KiB
61 lines
1.6 KiB
// chat/job/chat-room-clear.js
|
|
// Copyright (C) 2022 DTP Technologies, LLC
|
|
// License: Apache-2.0
|
|
|
|
'use strict';
|
|
|
|
const path = require('path');
|
|
|
|
const mongoose = require('mongoose');
|
|
|
|
const ChatRoom = mongoose.model('ChatRoom');
|
|
const ChatRoomInvite = mongoose.model('ChatRoomInvite');
|
|
const ChatMessage = mongoose.model('ChatMessage');
|
|
const EmojiReaction = mongoose.model('EmojiReaction');
|
|
|
|
const { SiteWorkerProcess } = require(path.join(__dirname, '..', '..', 'lib', 'site-lib'));
|
|
|
|
/**
|
|
* DTP Core Chat sticker processor can receive requests to ingest and delete
|
|
* stickers to be executed as background jobs in a queue. This processor
|
|
* attaches to the `media` queue and registers processors for `sticker-ingest`
|
|
* and `sticker-delete`.
|
|
*/
|
|
class ChatRoomClearJob extends SiteWorkerProcess {
|
|
|
|
static get COMPONENT ( ) {
|
|
return {
|
|
name: 'charRoomClearJob',
|
|
slug: 'chat-room-clear-job',
|
|
};
|
|
}
|
|
|
|
constructor (worker) {
|
|
super(worker, ChatRoomClearJob.COMPONENT);
|
|
}
|
|
|
|
async start ( ) {
|
|
await super.start();
|
|
|
|
const queue = this.getJobQueue('chat');
|
|
|
|
this.log.info('registering job processor', { queue: this.queue.name, name: 'chat-room-clear' });
|
|
queue.process('chat-room-clear', this.processChatRoomClear.bind(this));
|
|
}
|
|
|
|
async stop ( ) {
|
|
await super.stop();
|
|
}
|
|
|
|
async processChatRoomClear (job) {
|
|
const { roomId } = job.data;
|
|
this.log.info('received chat room clear job', { id: job.id, roomId });
|
|
|
|
await ChatMessage
|
|
.find({ room: roomId })
|
|
.cursor()
|
|
.eachAsync(this.worker.deleteChatMessage.bind(this), 4);
|
|
}
|
|
}
|
|
|
|
module.exports = ChatRoomClearJob;
|