Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1223)

Unified Diff: milo/appengine/logdog/http.go

Issue 2748073006: Milo Refactor: Remove theme support (Closed)
Patch Set: Review Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: milo/appengine/logdog/http.go
diff --git a/milo/appengine/logdog/http.go b/milo/appengine/logdog/http.go
index 906d39bed388ff42ad3c01542267bd478d08d3aa..7a6050496f385ad11abc3b39391ec57e846e293e 100644
--- a/milo/appengine/logdog/http.go
+++ b/milo/appengine/logdog/http.go
@@ -14,12 +14,11 @@ import (
"github.com/luci/luci-go/logdog/client/coordinator"
"github.com/luci/luci-go/logdog/common/types"
"github.com/luci/luci-go/luci_config/common/cfgtypes"
- "github.com/luci/luci-go/milo/appengine/settings"
- "github.com/luci/luci-go/milo/common/miloerror"
+ "github.com/luci/luci-go/milo/appengine/common"
"github.com/luci/luci-go/server/auth"
+ "github.com/luci/luci-go/server/router"
"github.com/luci/luci-go/server/templates"
- "github.com/julienschmidt/httprouter"
"golang.org/x/net/context"
)
@@ -30,62 +29,52 @@ import (
// temporarily (if incomplete) or indefinitely (if complete).
type AnnotationStreamHandler struct{}
-// GetTemplateName implements settings.ThemedHandler.
-func (s *AnnotationStreamHandler) GetTemplateName(t settings.Theme) string {
- return "build.html"
+func BuildHandler(c *router.Context) {
+ (&AnnotationStreamHandler{}).Render(c)
+ return
}
// Render implements settings.ThemedHandler.
-func (s *AnnotationStreamHandler) Render(c context.Context, req *http.Request, p httprouter.Params) (
- *templates.Args, error) {
+func (s *AnnotationStreamHandler) Render(c *router.Context) {
as := AnnotationStream{
- Project: cfgtypes.ProjectName(p.ByName("project")),
- Path: types.StreamPath(strings.Trim(p.ByName("path"), "/")),
+ Project: cfgtypes.ProjectName(c.Params.ByName("project")),
+ Path: types.StreamPath(strings.Trim(c.Params.ByName("path"), "/")),
}
if err := as.Normalize(); err != nil {
- return nil, &miloerror.Error{
- Message: err.Error(),
- Code: http.StatusBadRequest,
- }
+ common.ErrorPage(c, http.StatusBadRequest, err.Error())
+ return
}
// Setup our LogDog client.
var err error
- if as.Client, err = NewClient(c, ""); err != nil {
- log.WithError(err).Errorf(c, "Failed to generate LogDog client.")
- return nil, &miloerror.Error{
- Code: http.StatusInternalServerError,
- }
+ if as.Client, err = NewClient(c.Context, ""); err != nil {
+ log.WithError(err).Errorf(c.Context, "Failed to generate LogDog client.")
+ common.ErrorPage(c, http.StatusInternalServerError, "Failed to generate LogDog client")
+ return
}
// Load the Milo annotation protobuf from the annotation stream.
- if _, err := as.Fetch(c); err != nil {
+ if _, err := as.Fetch(c.Context); err != nil {
switch errors.Unwrap(err) {
case coordinator.ErrNoSuchStream:
- return nil, &miloerror.Error{
- Message: "Stream does not exist",
- Code: http.StatusNotFound,
- }
+ common.ErrorPage(c, http.StatusNotFound, "Stream does not exist")
nodir 2017/03/17 20:47:58 nice
hinoka 2017/03/17 22:04:55 Acknowledged.
+ return
case coordinator.ErrNoAccess:
- return nil, &miloerror.Error{
- Message: "No access to stream",
- Code: http.StatusForbidden,
- }
+ common.ErrorPage(c, http.StatusForbidden, "No access to LogDog stream")
+ return
default:
- return nil, &miloerror.Error{
- Message: "Failed to load stream",
- Code: http.StatusInternalServerError,
- }
+ log.WithError(err).Errorf(c.Context, "Failed to load LogDog steram.")
nodir 2017/03/17 20:47:58 typo in stream
hinoka 2017/03/17 22:04:55 Done.
+ common.ErrorPage(c, http.StatusInternalServerError, "Failed to load LogDog stream")
+ return
}
}
nodir 2017/03/17 20:47:58 you can do return here, so you don't have to repea
hinoka 2017/03/17 22:04:55 Done.
- // Convert the Milo Annotation protobuf to Milo objects.
- return &templates.Args{
- "Build": as.toMiloBuild(c),
- }, nil
+ templates.MustRender(c.Context, c.Writer, "pages/build.html", templates.Args{
+ "Build": as.toMiloBuild(c.Context),
+ })
}
func resolveHost(host string) (string, error) {

Powered by Google App Engine
This is Rietveld 408576698