| OLD | NEW |
| 1 // Copyright 2016 The LUCI Authors. All rights reserved. | 1 // Copyright 2016 The LUCI Authors. All rights reserved. |
| 2 // Use of this source code is governed under the Apache License, Version 2.0 | 2 // Use of this source code is governed under the Apache License, Version 2.0 |
| 3 // that can be found in the LICENSE file. | 3 // that can be found in the LICENSE file. |
| 4 | 4 |
| 5 package console | 5 package console |
| 6 | 6 |
| 7 import ( | 7 import ( |
| 8 "net/http" | 8 "net/http" |
| 9 | 9 |
| 10 » "github.com/julienschmidt/httprouter" | 10 » "github.com/luci/luci-go/milo/appengine/common" |
| 11 » "golang.org/x/net/context" | 11 » "github.com/luci/luci-go/server/router" |
| 12 | |
| 13 » "github.com/luci/luci-go/milo/appengine/settings" | |
| 14 » "github.com/luci/luci-go/milo/common/miloerror" | |
| 15 "github.com/luci/luci-go/server/templates" | 12 "github.com/luci/luci-go/server/templates" |
| 16 ) | 13 ) |
| 17 | 14 |
| 18 type Console struct{} | 15 // ConsoleHandler renders the console page. |
| 16 func ConsoleHandler(c *router.Context) { |
| 17 » project := c.Params.ByName("project") |
| 18 » if project == "" { |
| 19 » » common.ErrorPage(c, http.StatusBadRequest, "Missing Project") |
| 20 » » return |
| 21 » } |
| 22 » name := c.Params.ByName("name") |
| 19 | 23 |
| 20 // GetTemplateName returns the template name for console pages. | 24 » result, err := console(c.Context, project, name) |
| 21 func (x Console) GetTemplateName(t settings.Theme) string { | |
| 22 » return "console.html" | |
| 23 } | |
| 24 | |
| 25 // Render renders the console page. | |
| 26 func (x Console) Render(c context.Context, r *http.Request, p httprouter.Params)
(*templates.Args, error) { | |
| 27 » project := p.ByName("project") | |
| 28 » if project == "" { | |
| 29 » » return nil, &miloerror.Error{ | |
| 30 » » » Message: "Missing project", | |
| 31 » » » Code: http.StatusBadRequest, | |
| 32 » » } | |
| 33 » } | |
| 34 » name := p.ByName("name") | |
| 35 | |
| 36 » result, err := console(c, project, name) | |
| 37 if err != nil { | 25 if err != nil { |
| 38 » » return nil, err | 26 » » common.ErrorPage(c, http.StatusInternalServerError, err.Error()) |
| 27 » » return |
| 39 } | 28 } |
| 40 | 29 |
| 41 » // Render into the template | 30 » templates.MustRender(c.Context, c.Writer, "pages/console.html", template
s.Args{ |
| 42 » args := &templates.Args{ | |
| 43 "Console": result, | 31 "Console": result, |
| 44 » } | 32 » }) |
| 45 » return args, nil | |
| 46 } | 33 } |
| OLD | NEW |