twiedenbein-thelounge
Version:
The self-hosted Web IRC client
67 lines (66 loc) • 2.32 kB
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const msg_1 = __importDefault(require("../../models/msg"));
const msg_2 = require("../../../shared/types/msg");
class PublicClient {
client;
packageInfo;
constructor(client, packageInfo) {
this.client = client;
this.packageInfo = packageInfo;
}
/**
*
* @param {String} command - IRC command to run, this is in the same format that a client would send to the server (eg: JOIN #test)
* @param {String} targetId - The id of the channel to simulate the command coming from. Replies will go to this channel if appropriate
*/
runAsUser(command, targetId) {
this.client.inputLine({ target: targetId, text: command });
}
/**
*
* @param {Object} attributes
*/
createChannel(attributes) {
return this.client.createChannel(attributes);
}
/**
* Emits an `event` to the browser client, with `data` in the body of the event.
*
* @param {String} event - Name of the event, must be something the browser will recognise
* @param {Object} data - Body of the event, can be anything, but will need to be properly interpreted by the client
*/
// FIXME: this is utterly bonkers
// This needs to get wrapped into its own, typed plugin event
// Plus it is completely insane to let a plugin inject arbitrary events like that
sendToBrowser(event, data) {
this.client.emit(event, data);
}
/**
*
* @param {Number} chanId
*/
getChannel(chanId) {
return this.client.find(chanId);
}
/**
* Sends a message to this client, displayed in the given channel.
*
* @param {String} text the message to send
* @param {Chan} chan the channel to send the message to
*/
sendMessage(text, chan) {
chan.pushMessage(this.client, new msg_1.default({
type: msg_2.MessageType.PLUGIN,
text: text,
from: {
nick: this.packageInfo.name || this.packageInfo.packageName,
mode: "",
},
}));
}
}
exports.default = PublicClient;