thelounge/src/plugins/inputs/ctcp.js

30 lines
511 B
JavaScript
Raw Normal View History

"use strict";
const Msg = require("../../models/msg");
exports.commands = ["ctcp"];
exports.input = function({irc}, chan, cmd, args) {
if (args.length < 2) {
2019-07-17 11:33:59 +02:00
chan.pushMessage(
this,
new Msg({
type: Msg.Type.ERROR,
text: "Usage: /ctcp <nick> <ctcp_type>",
})
);
return;
}
2019-07-17 11:33:59 +02:00
chan.pushMessage(
this,
new Msg({
type: Msg.Type.CTCP_REQUEST,
ctcpMessage: `"${args.slice(1).join(" ")}" to ${args[0]}`,
from: chan.getUser(irc.user.nick),
})
);
irc.ctcpRequest(...args);
};