]> git.netwichtig.de Git - user/henk/code/inspircd.git/blob - src/modules/m_setidle.cpp
Insert massive change here.
[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 "inspircd.h"
25
26 /* $ModDesc: Allows opers to set their idle time */
27
28 /** Handle /SETIDLE
29  */
30 class cmd_setidle : public command_t
31 {
32  public:
33         cmd_setidle (InspIRCd* Instance) : command_t(Instance,"SETIDLE", 'o', 1)
34         {
35                 this->source = "m_setidle.so";
36                 syntax = "<idle-seconds>";
37         }
38
39         CmdResult 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 CMD_FAILURE;
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                 ServerInstance->WriteOpers(std::string(user->nick)+" used SETIDLE to set their idle time to "+ConvToStr(atoi(parameters[0]))+" seconds");
51                 user->WriteServ("944 %s :Idle time set.",user->nick);
52
53                 return CMD_SUCCESS;
54         }
55 };
56
57
58 class ModuleSetIdle : public Module
59 {
60         cmd_setidle*    mycommand;
61  public:
62         ModuleSetIdle(InspIRCd* Me)
63                 : Module::Module(Me)
64         {
65                 
66                 mycommand = new cmd_setidle(ServerInstance);
67                 ServerInstance->AddCommand(mycommand);
68         }
69         
70         virtual ~ModuleSetIdle()
71         {
72         }
73         
74         virtual Version GetVersion()
75         {
76                 return Version(1,1,0,1,VF_VENDOR,API_VERSION);
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