From e53c7aa50c815761f84e0ba3a28c0e6e58dc025f Mon Sep 17 00:00:00 2001 From: brain Date: Sat, 1 May 2004 12:43:49 +0000 Subject: Added Module::OnAccessCheck Added ListMode support git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@758 e03df62e-2008-0410-955e-edbf42e46eb7 --- docs/module-doc/classModule.html | 159 ++++++++++++++++++++++++++++----------- 1 file changed, 115 insertions(+), 44 deletions(-) (limited to 'docs/module-doc/classModule.html') diff --git a/docs/module-doc/classModule.html b/docs/module-doc/classModule.html index a931bf27e..cd2fe531f 100644 --- a/docs/module-doc/classModule.html +++ b/docs/module-doc/classModule.html @@ -44,7 +44,7 @@ Inheritance diagram for Module:
-Definition at line 92 of file modules.h.
-Definition at line 112 of file modules.cpp. +Definition at line 140 of file modules.cpp.
-
00112 { }
+00140 { }
@@ -169,9 +171,78 @@ Returns the version number of a Module.
The method should return a Version object with its version information assigned via Version::Version
-Definition at line 123 of file modules.cpp.
+Definition at line 151 of file modules.cpp.
-
00123 { return Version(1,0,0,0); }
+00151 { return Version(1,0,0,0); }
+
+
+
+
+
+
+
+
+
+ int Module::OnAccessCheck
+ (
+ userrec *
+ source,
+
+
+
+
+ userrec *
+ dest,
+
+
+
+
+ chanrec *
+ channel,
+
+
+
+
+ int
+ access_type
+
+
+
+ )
+ [virtual]
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+Called before an action which requires a channel privilage check.
+
+This function is called before many functions which check a users status on a channel, for example before opping a user, deopping a user, kicking a user, etc. There are several values for access_type which indicate for what reason access is being checked. These are:
+ AC_KICK (0) - A user is being kicked
+ AC_DEOP (1) - a user is being deopped
+ AC_OP (2) - a user is being opped
+ AC_VOICE (3) - a user is being voiced
+ AC_DEVOICE (4) - a user is being devoiced
+ AC_HALFOP (5) - a user is being halfopped
+ AC_DEHALFOP (6) - a user is being dehalfopped
+ AC_INVITE (7) - a user is being invited
+ AC_GENERAL_MODE (8) - a user channel mode is being changed
+ Upon returning from your function you must return either ACR_DEFAULT, to indicate the module wishes to do nothing, or ACR_DENY where approprate to deny the action, and ACR_ALLOW where appropriate to allow the action. Please note that in the case of some access checks (such as AC_GENERAL_MODE) access may be denied 'upstream' causing other checks such as AC_DEOP to not be reached. Be very careful with use of the AC_GENERAL_MODE type, as it may inadvertently override the behaviour of other modules. When the access_type is AC_GENERAL_MODE, the destination of the mode will be NULL (as it has not yet been determined).
+
+Definition at line 158 of file modules.cpp.
+
+References ACR_DEFAULT.
+
+
00158 { return ACR_DEFAULT; };
@@ -181,7 +252,7 @@ Definition at line 123
- bool Module::OnExtendedMode
+ int Module::OnExtendedMode
(
userrec *
user,
@@ -213,7 +284,7 @@ Definition at line 123
- string_list &
+ string_list &
params
@@ -236,11 +307,11 @@ Definition at line 123
Called whenever an extended mode is to be processed.
-The type parameter is MT_SERVER, MT_CLIENT or MT_CHANNEL, dependent on where the mode is being changed. mode_on is set when the mode is being set, in which case params contains a list of parameters for the mode as strings. If mode_on is false, the mode is being removed, and parameters may contain the parameters for the mode, dependent on wether they were defined when a mode handler was set up with Server::AddExtendedMode If the mode is a channel mode, target is a chanrec*, and if it is a user mode, target is a userrec*. You must cast this value yourself to make use of it.
+The type parameter is MT_SERVER, MT_CLIENT or MT_CHANNEL, dependent on where the mode is being changed. mode_on is set when the mode is being set, in which case params contains a list of parameters for the mode as strings. If mode_on is false, the mode is being removed, and parameters may contain the parameters for the mode, dependent on wether they were defined when a mode handler was set up with Server::AddExtendedMode If the mode is a channel mode, target is a chanrec*, and if it is a user mode, target is a userrec*. You must cast this value yourself to make use of it.
-Definition at line 122 of file modules.cpp.
+Definition at line 150 of file modules.cpp.
-
00122 { return false; }
+00150 { return false; }
@@ -275,9 +346,9 @@ Called whenever a user types /INFO.
The userrec will contain the information of the user who typed the command. Modules may use this method to output their own credits in /INFO (which is the ircd's version of an about box). It is purposefully not possible to modify any info that has already been output, or halt the list. You must write a 371 numeric to the user, containing your info in the following format:
:information here
-Definition at line 125 of file modules.cpp.
+Definition at line 153 of file modules.cpp.
-
00125 { };
+00153 { };
@@ -311,9 +382,9 @@ Called whenever a user opers locally.
The userrec will contain the oper mode 'o' as this function is called after any modifications are made to the user's structure by the core.
-Definition at line 124 of file modules.cpp.
+Definition at line 152 of file modules.cpp.
-
00124 { };
+00152 { };
@@ -347,9 +418,9 @@ Called after a packet is received from another irc server.
The packet is represented as a char*, as it should be regarded as a buffer, and not a string. This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called immediately after the packet is received but before any other operations with the core of the ircd.
-Definition at line 118 of file modules.cpp.
+Definition at line 146 of file modules.cpp.
-
00118 { }
+00146 { }
@@ -383,9 +454,9 @@ Called before a packet is transmitted across the irc network between two irc ser
The packet is represented as a char*, as it should be regarded as a buffer, and not a string. This allows you to easily represent it in the correct ways to implement encryption, compression, digital signatures and anything else you may want to add. This should be regarded as a pre-processor and will be called before ANY other operations within the ircd core program.
-Definition at line 117 of file modules.cpp.
+Definition at line 145 of file modules.cpp.
-
00117 { }
+00145 { }
@@ -418,9 +489,9 @@ Called on rehash.
This method is called prior to a /REHASH or when a SIGHUP is received from the operating system. You should use it to reload any files so that your module keeps in step with the rest of the application.
-Definition at line 119 of file modules.cpp.
+Definition at line 147 of file modules.cpp.
-
00119 { }
+00147 { }
@@ -469,9 +540,9 @@ Called when a raw command is transmitted or received.
This method is the lowest level of handler available to a module. It will be called with raw data which is passing through a connected socket. If you wish, you may munge this data by changing the string parameter "raw". If you do this, after your function exits it will immediately be cut down to 510 characters plus a carriage return and linefeed. For INBOUND messages only (where inbound is set to true) the value of user will be the userrec of the connection sending the data. This is not possible for outbound data because the data may be being routed to multiple targets.
-Definition at line 120 of file modules.cpp.
+Definition at line 148 of file modules.cpp.
-
00120 { }
+00148 { }
@@ -505,9 +576,9 @@ Called when a user connects.
The details of the connecting user are available to you in the parameter userrec *user
-Definition at line 113 of file modules.cpp.
+Definition at line 141 of file modules.cpp.
-
00113 { }
+00141 { }
@@ -550,9 +621,9 @@ Called when a user joins a channel.
The details of the joining user are available to you in the parameter userrec *user, and the details of the channel they have joined is available in the variable chanrec *channel
-Definition at line 115 of file modules.cpp.
+Definition at line 143 of file modules.cpp.
-
00115 { }
+00143 { }
@@ -595,9 +666,9 @@ Called when a user parts a channel.
The details of the leaving user are available to you in the parameter userrec *user, and the details of the channel they have left is available in the variable chanrec *channel
-Definition at line 116 of file modules.cpp.
+Definition at line 144 of file modules.cpp.
-
00116 { }
+00144 { }
@@ -648,9 +719,9 @@ Returning any nonzero value from this function stops the process immediately, ca
IMPORTANT NOTE!
If the user joins a NEW channel which does not exist yet, OnUserPreJoin will be called BEFORE the channel record is created. This will cause chanrec* chan to be NULL. There is very little you can do in form of processing on the actual channel record at this point, however the channel NAME will still be passed in char* cname, so that you could for example implement a channel blacklist or whitelist, etc.
-Definition at line 121 of file modules.cpp.
+Definition at line 149 of file modules.cpp.
-
00121 { return 0; }
+00149 { return 0; }
@@ -705,9 +776,9 @@ Called whenever a user is about to PRIVMSG A user or a channel, before any proce
Returning any nonzero value from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to filter or redirect messages. target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user, you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details of where the message is destined to be sent.
-Definition at line 127 of file modules.cpp.
+Definition at line 155 of file modules.cpp.
-
00127 { return 0; };
+00155 { return 0; };
@@ -750,9 +821,9 @@ Called before any nickchange, local or remote.
This can be used to implement Q-lines etc. Please note that although you can see remote nickchanges through this function, you should NOT make any changes to the userrec if the user is a remote user as this may cause a desnyc. check user->server before taking any action (including returning nonzero from the method). If your method returns nonzero, the nickchange is silently forbidden, and it is down to your module to generate some meaninful output.
-Definition at line 129 of file modules.cpp.
+Definition at line 157 of file modules.cpp.
-
00129 { return 0; };
+00157 { return 0; };
@@ -807,9 +878,9 @@ Called whenever a user is about to NOTICE A user or a channel, before any proces
Returning any nonzero value from this function stops the process immediately, causing no output to be sent to the user by the core. If you do this you must produce your own numerics, notices etc. This is useful for modules which may want to filter or redirect messages. target_type can be one of TYPE_USER or TYPE_CHANNEL. If the target_type value is a user, you must cast dest to a userrec* otherwise you must cast it to a chanrec*, this is the details of where the message is destined to be sent.
-Definition at line 128 of file modules.cpp.
+Definition at line 156 of file modules.cpp.
-
00128 { return 0; };
+00156 { return 0; };
@@ -843,9 +914,9 @@ Called when a user quits.
The details of the exiting user are available to you in the parameter userrec *user
-Definition at line 114 of file modules.cpp.
+Definition at line 142 of file modules.cpp.
-
00114 { }
+00142 { }
@@ -888,15 +959,15 @@ Called whenever a /WHOIS is performed on a local user.
The source parameter contains the details of the user who issued the WHOIS command, and the dest parameter contains the information of the user they are whoising.
-Definition at line 126 of file modules.cpp.
+Definition at line 154 of file modules.cpp.
-