unrealircd/src/modules/echo-message.c

108 lines
2.8 KiB
C
Raw Normal View History

2020-03-29 02:16:53 -07:00
/*
* IRC - Internet Relay Chat, src/modules/echo-message.c
* (C) 2019 Syzop & The UnrealIRCd Team
*
* See file AUTHORS in IRC package for additional names of
* the programmers.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 1, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "unrealircd.h"
ModuleHeader MOD_HEADER
= {
"echo-message",
"5.0",
2023-05-05 15:12:01 -07:00
"echo-message CAP",
2020-03-29 02:16:53 -07:00
"UnrealIRCd Team",
2022-01-14 21:16:34 -08:00
"unrealircd-6",
2020-03-29 02:16:53 -07:00
};
/* Variables */
long CAP_ECHO_MESSAGE = 0L;
/* Forward declarations */
2022-01-14 21:16:34 -08:00
int em_chanmsg(Client *client, Channel *channel, int sendflags, const char *prefix, const char *target, MessageTag *mtags, const char *text, SendType sendtype);
int em_usermsg(Client *client, Client *to, MessageTag *mtags, const char *text, SendType sendtype);
2020-03-29 02:16:53 -07:00
MOD_INIT()
{
ClientCapabilityInfo cap;
MARK_AS_OFFICIAL_MODULE(modinfo);
memset(&cap, 0, sizeof(cap));
cap.name = "echo-message";
ClientCapabilityAdd(modinfo->handle, &cap, &CAP_ECHO_MESSAGE);
HookAdd(modinfo->handle, HOOKTYPE_CHANMSG, 0, em_chanmsg);
HookAdd(modinfo->handle, HOOKTYPE_USERMSG, 0, em_usermsg);
return MOD_SUCCESS;
}
MOD_LOAD()
{
return MOD_SUCCESS;
}
MOD_UNLOAD()
{
return MOD_SUCCESS;
}
2022-01-14 21:16:34 -08:00
int em_chanmsg(Client *client, Channel *channel, int sendflags, const char *prefix, const char *target, MessageTag *mtags, const char *text, SendType sendtype)
2020-03-29 02:16:53 -07:00
{
if (MyUser(client) && HasCapabilityFast(client, CAP_ECHO_MESSAGE))
{
2020-05-28 19:06:50 -07:00
if (sendtype != SEND_TYPE_TAGMSG)
{
sendto_prefix_one(client, client, mtags, ":%s %s %s :%s",
client->name,
sendtype_to_cmd(sendtype),
target,
text);
} else {
sendto_prefix_one(client, client, mtags, ":%s %s %s",
client->name,
sendtype_to_cmd(sendtype),
target);
}
2020-03-29 02:16:53 -07:00
}
return 0;
}
2022-01-14 21:16:34 -08:00
int em_usermsg(Client *client, Client *to, MessageTag *mtags, const char *text, SendType sendtype)
2020-03-29 02:16:53 -07:00
{
if (MyUser(client) && HasCapabilityFast(client, CAP_ECHO_MESSAGE))
{
2020-05-28 19:06:50 -07:00
if (sendtype != SEND_TYPE_TAGMSG)
{
sendto_prefix_one(client, client, mtags, ":%s %s %s :%s",
client->name,
sendtype_to_cmd(sendtype),
to->name,
text);
} else {
sendto_prefix_one(client, client, mtags, ":%s %s %s",
client->name,
sendtype_to_cmd(sendtype),
to->name);
}
2020-03-29 02:16:53 -07:00
}
return 0;
}