Beispiel #1
0
        public void LocateCommands()
        {
            try
            {
                int i = 0;
                // Locate all commands--
                for (i = 0; i < AppDomain.CurrentDomain.GetAssemblies().Length; i++)
                {
                    Assembly A = null;
                    try
                    {
                        A = AppDomain.CurrentDomain.GetAssemblies()[i];
                    }
                    catch (Exception e)
                    {
                        //                    MHEx(MessageHandler.Destinations.DEST_LOCAL, UUID.Zero, "")
                    }
                    if (A != null)
                    {
                        int ii = 0;
                        for (ii = 0; ii < A.GetTypes().Length; ii++)
                        {
                            Type T = null;
                            try
                            {
                                T = A.GetTypes()[ii];
                            }
                            catch (Exception e)
                            {
                            }
                            if (T != null)
                            {
                                if (T.IsClass)
                                {
                                    foreach (MethodInfo MI in T.GetMethods())
                                    {
                                        CommandGroup[] Command = (CommandGroup[])MI.GetCustomAttributes(typeof(CommandGroup), false);
                                        //var CommandO = MI.GetCustomAttributes(typeof(CommandGroup), false);
                                        if (Command.Length > 0)
                                        {
                                            for (int ix = 0; ix < Command.Length; ix++)
                                            {
                                                CommandGroup CG = Command[ix];
                                                CG.AssignedMethod = MI;

                                                if (Cmds.ContainsKey(CG.Command) == false)
                                                {
                                                    Log.info(true, "DISCOVER: " + CG.Command);
                                                    Cmds.Add(CG.Command, CG);
                                                }
                                            }
                                        }
                                    }
                                }
                            }
                        }
                    }
                }
                Log.info(log: "Discovered " + Cmds.Count.ToString() + " total commands");
            }
            catch (ReflectionTypeLoadException e)
            {
                MessageFactory.Post(Destinations.DEST_LOCAL, "FAILURE!!!\n\n[Assembly load failure]", UUID.Zero);
                foreach (Exception X in e.LoaderExceptions)
                {
                    MessageFactory.Post(Destinations.DEST_LOCAL, X.Message + "\n \nSTACK: " + X.StackTrace, UUID.Zero);
                }
            }
        }
Beispiel #2
0
        public void RunCommand(string cmdString, UUID user, int level, Destinations source, UUID agentKey, string agentName)
        {
            // Rev 54395 - first word is always the command itself. Everything else that follows is arguments

            int pos = 0;

            string[] cmdStruct    = cmdString.Split(' ');
            string   commandLabel = cmdStruct[0];

            if (Cmds.ContainsKey(commandLabel))
            {
                CommandGroup cg = Cmds[commandLabel];
                if (level >= cg.minLevel)
                {
                    Destinations dst     = cg.CommandSource;
                    bool         allowed = false;
                    if ((dst & Destinations.DEST_AGENT) == source)
                    {
                        allowed = true;
                    }
                    if ((dst & Destinations.DEST_GROUP) == source)
                    {
                        allowed = true;
                    }
                    if ((dst & Destinations.DEST_LOCAL) == source)
                    {
                        allowed = true;
                    }

                    if (allowed)
                    {
                        if (MainConfiguration.Instance.DisabledCommands.Contains(cg.Command))
                        {
                            BaseCommands.MH(source, user, "Function: '" + cg.AssignedMethod.Name + "' associated with command '" + cg.Command + "' is disabled by a administrator");
                            return;
                        }
                        else
                        {
                            //Command is not disabled
                            var           ovj   = Activator.CreateInstance(cg.AssignedMethod.DeclaringType);
                            List <string> lArgs = new List <string>();

                            for (int i = 1; i < cmdStruct.Length; i++)
                            {
                                lArgs.Add(cmdStruct[i]);
                            }
                            string[] args = lArgs.ToArray();
                            //(UUID client, int level, string[] additionalArgs,
                            //Destinations source,
                            //UUID agentKey, string agentName)
                            try
                            {
                                Thread cmdthread = new Thread(() =>
                                {
                                    try
                                    {
                                        cg.AssignedMethod.Invoke(ovj, new object[] { user, level, args, source, agentKey, agentName });
                                    }
                                    catch (Exception e)
                                    {
                                        BotSession.Instance.grid.Self.Chat("Exception caught when executing a command\n" + e.Message + "\nStacktrace: " + e.StackTrace, 0, ChatType.Shout);
                                        //MessageFactory.Post(Destinations.DEST_LOCAL, "Exception caught when executing a command\n" + e.Message + "\nStacktrace: " + e.StackTrace, UUID.Zero);
                                    }
                                });
                                cmdthread.Start();
                            }
                            catch (Exception e)
                            {
                                MessageFactory.Post(Destinations.DEST_LOCAL, "EXCEPTION CAUGHT WHEN EXECUTING COMMAND\n\n" + e.Message + "\nSTACK\n" + e.StackTrace, UUID.Zero);
                            }
                        }
                    }
                }
            }
        }