Example #1
0
        public ActionResult Execute(CommandsExecuteViewModel model) {
            if (_shellSettings.Name != ShellSettings.DefaultName || !Services.Authorizer.Authorize(StandardPermissions.SiteOwner, T("Not authorized to use the web console")))
                return new HttpUnauthorizedResult();

            using (var writer = new StringWriter()) {
                var commandLine = model.CommandLine.Trim();
                CommandParameters parameters = GetCommandParameters(commandLine, writer);

                _commandManager.Execute(parameters);
                model.History = (model.History ?? Enumerable.Empty<string>())
                    .Concat(new[] {model.CommandLine})
                    .Distinct()
                    .ToArray();
                model.Results = writer.ToString();
            }

            return View(model);
        }
        public ActionResult Execute(CommandsExecuteViewModel model) {
            if (_shellSettings.Name != ShellSettings.DefaultName || !Services.Authorizer.Authorize(StandardPermissions.SiteOwner, T("Not authorized to use the web console")))
                return new HttpUnauthorizedResult();

            try {
                using (var writer = new StringWriter()) {
                    var commandLine = model.CommandLine.Trim();
                    CommandParameters parameters = GetCommandParameters(commandLine, writer);

                    _commandManager.Execute(parameters);
                    model.History = (model.History ?? Enumerable.Empty<string>())
                        .Concat(new[] {model.CommandLine})
                        .Distinct()
                        .ToArray();
                    model.Results = writer.ToString();
                }
            } catch(Exception exception) {
                this.Error(exception, T("Error executing command: {0}", exception.Message), Logger, Services.Notifier);

                Services.TransactionManager.Cancel();
            }
            return View(model);
        }