summaryrefslogtreecommitdiff
path: root/src/cmd_topic.cpp
blob: bd7308f2648bf561d327835385a05894570efc52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/*       +------------------------------------+
 *       | Inspire Internet Relay Chat Daemon |
 *       +------------------------------------+
 *
 *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
 *	     	          E-mail:
 *                <brain@chatspike.net>
 *                <Craig@chatspike.net>
 *
 * Written by Craig Edwards, Craig McLure, and others.
 * This program is free but copyrighted software; see
 *            the file COPYING for details.
 *
 * ---------------------------------------------------
 */

#include "inspircd_config.h"
#include "configreader.h"
#include "users.h"
#include "modules.h"
#include "message.h"
#include "commands.h"
#include "commands/cmd_topic.h"
#include "helperfuncs.h"

extern InspIRCd* ServerInstance;
extern int MODCOUNT;
extern time_t TIME;
extern ModuleList modules;
extern FactoryList factory;

void cmd_topic::Handle (const char** parameters, int pcnt, userrec *user)
{
	chanrec* Ptr;

	if (pcnt == 1)
	{
		Ptr = ServerInstance->FindChan(parameters[0]);
		if (Ptr)
		{
			if ((Ptr->modes[CM_SECRET]) && (!Ptr->HasUser(user)))
			{
				user->WriteServ("401 %s %s :No such nick/channel",user->nick, Ptr->name);
				return;
			}
			if (Ptr->topicset)
			{
				user->WriteServ("332 %s %s :%s", user->nick, Ptr->name, Ptr->topic);
				user->WriteServ("333 %s %s %s %d", user->nick, Ptr->name, Ptr->setby, Ptr->topicset);
			}
			else
			{
				user->WriteServ("331 %s %s :No topic is set.", user->nick, Ptr->name);
			}
		}
		else
		{
			user->WriteServ("401 %s %s :No such nick/channel",user->nick, parameters[0]);
		}
		return;
	}
	else if (pcnt>1)
	{
		Ptr = ServerInstance->FindChan(parameters[0]);
		if (Ptr)
		{
			if (IS_LOCAL(user))
			{
				if (!Ptr->HasUser(user))
				{
					user->WriteServ("442 %s %s :You're not on that channel!",user->nick, Ptr->name);
					return;
				}
				if ((Ptr->modes[CM_TOPICLOCK]) && (cstatus(user,Ptr)<STATUS_HOP))
				{
					user->WriteServ("482 %s %s :You must be at least a half-operator to change modes on this channel", user->nick, Ptr->name);
					return;
				}
			}
			char topic[MAXTOPIC];
			strlcpy(topic,parameters[1],MAXTOPIC-1);

			if (IS_LOCAL(user))
			{
				int MOD_RESULT = 0;
				FOREACH_RESULT(I_OnLocalTopicChange,OnLocalTopicChange(user,Ptr,topic));
				if (MOD_RESULT)
					return;
			}

			strlcpy(Ptr->topic,topic,MAXTOPIC-1);
			strlcpy(Ptr->setby,user->nick,NICKMAX-1);
			Ptr->topicset = TIME;
			Ptr->WriteChannel(user, "TOPIC %s :%s", Ptr->name, Ptr->topic);
			if (IS_LOCAL(user))
			{
				FOREACH_MOD(I_OnPostLocalTopicChange,OnPostLocalTopicChange(user,Ptr,topic));
			}
		}
		else
		{
			user->WriteServ("401 %s %s :No such nick/channel",user->nick, parameters[0]);
		}
	}
}