]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/coremods/core_user/core_user.h
Use the default OnParameterMissing in ModeUserServerNoticeMask.
[user/henk/code/inspircd.git] / src / coremods / core_user / core_user.h
index 1365cd048de8c9184bfff9567d603c25e48451ca..8289ad5a80e958070e0a65a4b9bfd96bb49400a1 100644 (file)
@@ -1,10 +1,8 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
+ *   Copyright (C) 2017-2019 Sadie Powell <sadie@witchery.services>
  *   Copyright (C) 2014 Attila Molnar <attilamolnar@hush.com>
- *   Copyright (C) 2008 Robin Burchell <robin+git@viroteck.net>
- *   Copyright (C) 2007 Dennis Friis <peavey@inspircd.org>
- *   Copyright (C) 2006 Craig Edwards <craigedwards@brainbox.cc>
  *
  * This file is part of InspIRCd.  InspIRCd is free software: you can
  * redistribute it and/or modify it under the terms of the GNU General Public
@@ -70,40 +68,28 @@ class CommandAway : public Command
        RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE;
 };
 
-class CommandMode : public Command
+/** Handle /ISON.
+ */
+class CommandIson : public SplitCommand
 {
-       unsigned int sent[256];
-       unsigned int seq;
-
-       /** Show the list of one or more list modes to a user.
-        * @param user User to send to.
-        * @param chan Channel whose lists to show.
-        * @param mode_sequence Mode letters to show the lists of.
-        */
-       void DisplayListModes(User* user, Channel* chan, const std::string& mode_sequence);
-
-       /** Show the current modes of a channel or a user to a user.
-        * @param user User to show the modes to.
-        * @param targetuser User whose modes to show. NULL if showing the modes of a channel.
-        * @param targetchannel Channel whose modes to show. NULL if showing the modes of a user.
-        */
-       void DisplayCurrentModes(User* user, User* targetuser, Channel* targetchannel);
-
  public:
-       /** Constructor for mode.
-        */
-       CommandMode(Module* parent);
-
+       /** Constructor for ison.
+        */
+       CommandIson(Module* parent)
+               : SplitCommand(parent, "ISON", 1)
+       {
+               allow_empty_last_param = false;
+               syntax = "<nick> [<nick>]+";
+       }
        /** Handle command.
         * @param parameters The parameters to the command
         * @param user The user issuing the command
         * @return A value from CmdResult to indicate command success or failure.
         */
-       CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE;
-
-       RouteDescriptor GetRouting(User* user, const Params& parameters) CXX11_OVERRIDE;
+       CmdResult HandleLocal(LocalUser* user, const Params& parameters) CXX11_OVERRIDE;
 };
 
+
 /** Handle /NICK.
  */
 class CommandNick : public SplitCommand
@@ -191,6 +177,30 @@ class CommandUser : public SplitCommand
        static CmdResult CheckRegister(LocalUser* user);
 };
 
+/** Handle /USERHOST.
+ */
+class CommandUserhost : public Command
+{
+       UserModeReference hideopermode;
+
+ public:
+       /** Constructor for userhost.
+        */
+       CommandUserhost(Module* parent)
+               : Command(parent,"USERHOST", 1)
+               , hideopermode(parent, "hideoper")
+       {
+               allow_empty_last_param = false;
+               syntax = "<nick> [<nick>]+";
+       }
+       /** Handle command.
+        * @param parameters The parameters to the command
+        * @param user The user issuing the command
+        * @return A value from CmdResult to indicate command success or failure.
+        */
+       CmdResult Handle(User* user, const Params& parameters) CXX11_OVERRIDE;
+};
+
 /** User mode +s
  */
 class ModeUserServerNoticeMask : public ModeHandler
@@ -207,7 +217,6 @@ class ModeUserServerNoticeMask : public ModeHandler
  public:
        ModeUserServerNoticeMask(Module* Creator);
        ModeAction OnModeChange(User* source, User* dest, Channel* channel, std::string &parameter, bool adding) CXX11_OVERRIDE;
-       void OnParameterMissing(User* user, User* dest, Channel* channel) CXX11_OVERRIDE;
 
        /** Create a displayable mode string of the snomasks set on a given user
         * @param user The user whose notice masks to format