mirror of
https://github.com/anope/anope.git
synced 2026-07-01 19:26:40 +02:00
d9ba3b01b6
git-svn-id: svn://svn.anope.org/anope/trunk@754 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@517 5417fbe8-f217-4b02-8779-1006273d7864
138 lines
4.3 KiB
C
138 lines
4.3 KiB
C
/* BotServ core fantasy functions
|
|
*
|
|
* (C) 2003-2005 Anope Team
|
|
* Contact us at info@anope.org
|
|
*
|
|
* Please read COPYING and README for further details.
|
|
*
|
|
* Based on the original code of Epona by Lara.
|
|
* Based on the original code of Services by Andy Church.
|
|
*
|
|
* $Id$
|
|
*
|
|
*/
|
|
/*************************************************************************/
|
|
|
|
#include "module.h"
|
|
|
|
int do_fantasy(int argc, char **argv);
|
|
|
|
/**
|
|
* Create the hook, and tell anope about it.
|
|
* @param argc Argument count
|
|
* @param argv Argument list
|
|
* @return MOD_CONT to allow the module, MOD_STOP to stop it
|
|
**/
|
|
int AnopeInit(int argc, char **argv)
|
|
{
|
|
EvtHook *hook;
|
|
|
|
moduleAddAuthor("Anope");
|
|
moduleAddVersion
|
|
("$Id$");
|
|
moduleSetType(CORE);
|
|
|
|
hook = createEventHook(EVENT_BOT_FANTASY, do_fantasy);
|
|
moduleAddEventHook(hook);
|
|
|
|
return MOD_CONT;
|
|
}
|
|
|
|
/**
|
|
* Unload the module
|
|
**/
|
|
void AnopeFini(void)
|
|
{
|
|
|
|
}
|
|
|
|
/**
|
|
* Handle seen fantasy command.
|
|
* @param argc Argument count
|
|
* @param argv Argument list
|
|
* @return MOD_CONT or MOD_STOP
|
|
**/
|
|
int do_fantasy(int argc, char **argv)
|
|
{
|
|
User *u;
|
|
ChannelInfo *ci;
|
|
User *u2;
|
|
NickAlias *na;
|
|
ChanAccess *access;
|
|
char buf[BUFSIZE];
|
|
char *target = NULL;
|
|
|
|
if (argc < 4)
|
|
return MOD_CONT;
|
|
|
|
if (stricmp(argv[0], "!seen") == 0) {
|
|
u = finduser(argv[1]);
|
|
ci = cs_findchan(argv[2]);
|
|
if (!u || !ci)
|
|
return MOD_CONT;
|
|
|
|
target = myStrGetToken(argv[3], ' ', 0);
|
|
|
|
if (stricmp(ci->bi->nick, target) == 0) {
|
|
/* If we look for the bot */
|
|
snprintf(buf, sizeof(buf), getstring(u->na, BOT_SEEN_BOT),
|
|
u->nick);
|
|
anope_cmd_privmsg(ci->bi->nick, ci->name, "%s", buf);
|
|
} else if (!(na = findnick(target)) || (na->status & NS_VERBOTEN)) {
|
|
/* If the nick is not registered or forbidden */
|
|
snprintf(buf, sizeof(buf), getstring(u->na, BOT_SEEN_UNKNOWN),
|
|
target);
|
|
anope_cmd_privmsg(ci->bi->nick, ci->name, "%s", buf);
|
|
} else if ((u2 = nc_on_chan(ci->c, na->nc))) {
|
|
/* If the nick we're looking for is on the channel,
|
|
* there are three possibilities: it's yourself,
|
|
* it's the nick we look for, it's an alias of the
|
|
* nick we look for.
|
|
*/
|
|
if (u == u2 || (u->na && u->na->nc == na->nc))
|
|
snprintf(buf, sizeof(buf), getstring(u->na, BOT_SEEN_YOU),
|
|
u->nick);
|
|
else if (!stricmp(u2->nick, target))
|
|
snprintf(buf, sizeof(buf),
|
|
getstring(u->na, BOT_SEEN_ON_CHANNEL), u2->nick);
|
|
else
|
|
snprintf(buf, sizeof(buf),
|
|
getstring(u->na, BOT_SEEN_ON_CHANNEL_AS), target,
|
|
u2->nick);
|
|
|
|
anope_cmd_privmsg(ci->bi->nick, ci->name, "%s", buf);
|
|
} else if ((access = get_access_entry(na->nc, ci))) {
|
|
/* User is on the access list but not present actually.
|
|
Special case: if access->last_seen is 0 it's that we
|
|
never seen the user.
|
|
*/
|
|
if (access->last_seen) {
|
|
char durastr[192];
|
|
duration(u->na, durastr, sizeof(durastr),
|
|
time(NULL) - access->last_seen);
|
|
snprintf(buf, sizeof(buf), getstring(u->na, BOT_SEEN_ON),
|
|
target, durastr);
|
|
} else {
|
|
snprintf(buf, sizeof(buf),
|
|
getstring(u->na, BOT_SEEN_NEVER), target);
|
|
}
|
|
anope_cmd_privmsg(ci->bi->nick, ci->name, "%s", buf);
|
|
} else if (na->nc == ci->founder) {
|
|
/* User is the founder of the channel */
|
|
char durastr[192];
|
|
duration(u->na, durastr, sizeof(durastr),
|
|
time(NULL) - na->last_seen);
|
|
snprintf(buf, sizeof(buf), getstring(u->na, BOT_SEEN_ON),
|
|
target, durastr);
|
|
anope_cmd_privmsg(ci->bi->nick, ci->name, "%s", buf);
|
|
} else {
|
|
/* All other cases */
|
|
snprintf(buf, sizeof(buf), getstring(u->na, BOT_SEEN_UNKNOWN),
|
|
target);
|
|
anope_cmd_privmsg(ci->bi->nick, ci->name, "%s", buf);
|
|
}
|
|
}
|
|
|
|
return MOD_CONT;
|
|
}
|