]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_setidle.cpp
f17f69e09e20139590e6cd4e7f828f657bddea5d
[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 #include "helperfuncs.h"
25
26 /* $ModDesc: Allows opers to set their idle time */
27
28 static Server *Srv = NULL;
29
30 class cmd_setidle : public command_t
31 {
32  public:
33         cmd_setidle () : command_t("SETIDLE", 'o', 1)
34         {
35                 this->source = "m_setidle.so";
36                 syntax = "<idle-seconds>";
37         }
38
39         void Handle (const char** parameters, int pcnt, userrec *user)
40         {
41                 if (atoi(parameters[0]) < 1)
42                 {
43                         user->WriteServ("948 %s :Invalid idle time.",user->nick);
44                         return;
45                 }
46                 user->idle_lastmsg = time(NULL) - atoi(parameters[0]);
47                 // minor tweak - we cant have signon time shorter than our idle time!
48                 if (user->signon > user->idle_lastmsg)
49                         user->signon = user->idle_lastmsg;
50                 Srv->SendOpers(std::string(user->nick)+" used SETIDLE to set their idle time to "+std::string(parameters[0])+" seconds");
51                 user->WriteServ("944 %s :Idle time set.",user->nick);
52         }
53 };
54
55
56 class ModuleSetIdle : public Module
57 {
58         cmd_setidle*    mycommand;
59  public:
60         ModuleSetIdle(Server* Me)
61                 : Module::Module(Me)
62         {
63                 Srv = Me;
64                 mycommand = new cmd_setidle();
65                 Srv->AddCommand(mycommand);
66         }
67         
68         virtual ~ModuleSetIdle()
69         {
70         }
71         
72         virtual Version GetVersion()
73         {
74                 return Version(1,0,0,1,VF_VENDOR);
75         }
76         
77 };
78
79 // stuff down here is the module-factory stuff. For basic modules you can ignore this.
80
81 class ModuleSetIdleFactory : public ModuleFactory
82 {
83  public:
84         ModuleSetIdleFactory()
85         {
86         }
87         
88         ~ModuleSetIdleFactory()
89         {
90         }
91         
92         virtual Module * CreateModule(Server* Me)
93         {
94                 return new ModuleSetIdle(Me);
95         }
96         
97 };
98
99
100 extern "C" void * init_module( void )
101 {
102         return new ModuleSetIdleFactory;
103 }
104