]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_setidle.cpp
Just to mess with om's head, remove helperfuncs.h from everywhere
[user/henk/code/inspircd.git] / src / modules / m_setidle.cpp
1 /*       +------------------------------------+
2  *       | Inspire Internet Relay Chat Daemon |
3  *       +------------------------------------+
4  *
5  *  InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
6  *                       E-mail:
7  *                <brain@chatspike.net>
8  *                <Craig@chatspike.net>
9  *     
10  * Written by Craig Edwards, Craig McLure, and others.
11  * This program is free but copyrighted software; see
12  *            the file COPYING for details.
13  *
14  * ---------------------------------------------------
15  */
16
17 using namespace std;
18
19 #include <stdio.h>
20 #include <string>
21 #include "users.h"
22 #include "channels.h"
23 #include "modules.h"
24
25 #include "inspircd.h"
26
27 /* $ModDesc: Allows opers to set their idle time */
28
29
30
31 class cmd_setidle : public command_t
32 {
33  public:
34  cmd_setidle (InspIRCd* Instance) : command_t(Instance,"SETIDLE", 'o', 1)
35         {
36                 this->source = "m_setidle.so";
37                 syntax = "<idle-seconds>";
38         }
39
40         void Handle (const char** parameters, int pcnt, userrec *user)
41         {
42                 if (atoi(parameters[0]) < 1)
43                 {
44                         user->WriteServ("948 %s :Invalid idle time.",user->nick);
45                         return;
46                 }
47                 user->idle_lastmsg = time(NULL) - atoi(parameters[0]);
48                 // minor tweak - we cant have signon time shorter than our idle time!
49                 if (user->signon > user->idle_lastmsg)
50                         user->signon = user->idle_lastmsg;
51                 ServerInstance->WriteOpers(std::string(user->nick)+" used SETIDLE to set their idle time to "+std::string(parameters[0])+" seconds");
52                 user->WriteServ("944 %s :Idle time set.",user->nick);
53         }
54 };
55
56
57 class ModuleSetIdle : public Module
58 {
59         cmd_setidle*    mycommand;
60  public:
61         ModuleSetIdle(InspIRCd* Me)
62                 : Module::Module(Me)
63         {
64                 
65                 mycommand = new cmd_setidle(ServerInstance);
66                 ServerInstance->AddCommand(mycommand);
67         }
68         
69         virtual ~ModuleSetIdle()
70         {
71         }
72         
73         virtual Version GetVersion()
74         {
75                 return Version(1,0,0,1,VF_VENDOR);
76         }
77         
78 };
79
80 // stuff down here is the module-factory stuff. For basic modules you can ignore this.
81
82 class ModuleSetIdleFactory : public ModuleFactory
83 {
84  public:
85         ModuleSetIdleFactory()
86         {
87         }
88         
89         ~ModuleSetIdleFactory()
90         {
91         }
92         
93         virtual Module * CreateModule(InspIRCd* Me)
94         {
95                 return new ModuleSetIdle(Me);
96         }
97         
98 };
99
100
101 extern "C" void * init_module( void )
102 {
103         return new ModuleSetIdleFactory;
104 }
105