Ejemplo n.º 1
0
        public static ConsoleReturnVo Parse(string cmd, bool?tabPressed, ProjectsController controller)
        {
            bool wasTabPressed = (tabPressed ?? false);

            if (string.IsNullOrEmpty(cmd))
            {
                return(new ConsoleReturnVo(wasTabPressed ? null : "?"));
            }

            if (!wasTabPressed)
            {
                string[] ss = cmd.Split(" "[0]);

                Type commandtype = Type.GetType(BaseCommand.COMMANDS_NS + "." + FirstCharToUpper(ss[0].ToLower()) + "Command");
                if (commandtype != null)
                {
                    bool doexecute = true;
                    ConsoleCommandAttribute attribute = commandtype.GetCustomAttribute <ConsoleCommandAttribute>();
                    if (attribute != null)
                    {
                        if (!controller.User.IsInRole(attribute.Role))
                        {
                            doexecute = false;
                        }
                    }

                    if (doexecute && !commandtype.IsAbstract)
                    {
                        return(((BaseCommand)Activator.CreateInstance(commandtype, controller)).Execute(ss));
                    }
                    else
                    {
                        return(new ConsoleReturnVo("You are not authorized to use that command"));
                    }
                }
            }
            else
            {
                var allCmds = HelpCommand.GetAllCommandsDesciptions(cmd);
                if (allCmds.Count > 0)
                {
                    string msg = string.Format("All ({0}) commands matching input:", allCmds.Count);
                    allCmds.ForEach(x => msg += "\n" + x.Name);
                    return(new ConsoleReturnVo(message: msg, fillInput: allCmds[0].Name));
                }
            }

            return(new ConsoleReturnVo(wasTabPressed ? null : cmd));
        }