woodpecker/server/web/web.go

95 lines
2.3 KiB
Go
Raw Normal View History

2018-02-19 22:24:10 +00:00
// Copyright 2018 Drone.IO Inc.
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// http://www.apache.org/licenses/LICENSE-2.0
2018-03-21 13:02:17 +00:00
//
2018-02-19 22:24:10 +00:00
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2017-07-31 19:15:05 +00:00
package web
import (
"context"
"crypto/md5"
"fmt"
"net/http"
"time"
"github.com/gin-gonic/gin"
"github.com/rs/zerolog/log"
"github.com/woodpecker-ci/woodpecker/server/model"
"github.com/woodpecker-ci/woodpecker/web"
2017-07-31 19:15:05 +00:00
)
// Endpoint provides the website endpoints.
type Endpoint interface {
// Register registers the provider endpoints.
Register(*gin.Engine)
2017-07-31 19:15:05 +00:00
}
// New returns the default website endpoint.
2017-09-20 19:29:57 +00:00
func New(opt ...Option) Endpoint {
opts := new(Options)
for _, f := range opt {
f(opts)
}
2017-09-08 00:43:33 +00:00
return &website{
fs: web.HttpFS(),
2017-09-20 19:29:57 +00:00
opts: opts,
data: web.MustLookup("index.html"),
2017-09-08 00:43:33 +00:00
}
}
type website struct {
2017-09-20 19:29:57 +00:00
opts *Options
fs http.FileSystem
data []byte
2017-09-08 00:43:33 +00:00
}
2017-07-31 19:15:05 +00:00
func (w *website) Register(mux *gin.Engine) {
2017-09-08 00:43:33 +00:00
h := http.FileServer(w.fs)
2017-07-31 19:15:05 +00:00
h = setupCache(h)
mux.GET("/favicon.svg", gin.WrapH(h))
mux.GET("/assets/*filepath", gin.WrapH(h))
mux.NoRoute(gin.WrapF(w.handleIndex))
2017-07-31 19:15:05 +00:00
}
2017-09-08 00:43:33 +00:00
func (w *website) handleIndex(rw http.ResponseWriter, r *http.Request) {
2017-07-31 19:15:05 +00:00
rw.Header().Set("Content-Type", "text/html; charset=UTF-8")
rw.WriteHeader(200)
if _, err := rw.Write(w.data); err != nil {
log.Error().Err(err).Msg("can not write index.html")
}
2017-07-31 19:15:05 +00:00
}
func setupCache(h http.Handler) http.Handler {
data := []byte(time.Now().String())
etag := fmt.Sprintf("%x", md5.Sum(data))
return http.HandlerFunc(
func(w http.ResponseWriter, r *http.Request) {
w.Header().Set("Cache-Control", "public, max-age=31536000")
w.Header().Del("Expires")
w.Header().Set("ETag", etag)
h.ServeHTTP(w, r)
},
)
}
// WithUser returns a context with the current authenticated user.
func WithUser(c context.Context, user *model.User) context.Context {
return context.WithValue(c, userKey, user)
}
type key int
const userKey key = 0