2018-02-19 14:24:10 -08:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 14:02:17 +01:00
|
|
|
//
|
2018-02-19 14:24:10 -08: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 14:02:17 +01:00
|
|
|
//
|
2018-02-19 14:24:10 -08:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 14:02:17 +01:00
|
|
|
//
|
2018-02-19 14:24:10 -08: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 15:15:05 -04:00
|
|
|
package web
|
|
|
|
|
|
|
|
import (
|
|
|
|
"crypto/md5"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2021-10-12 02:25:13 -05:00
|
|
|
"github.com/gin-gonic/gin"
|
2021-11-23 15:36:52 +01:00
|
|
|
"github.com/rs/zerolog/log"
|
2021-10-12 02:25:13 -05:00
|
|
|
|
2021-09-29 17:34:56 +02:00
|
|
|
"github.com/woodpecker-ci/woodpecker/web"
|
2017-07-31 15:15:05 -04:00
|
|
|
)
|
|
|
|
|
2021-11-26 09:50:56 +01:00
|
|
|
// etag is an identifier for a resource version
|
|
|
|
// it lets caches determine if resource is still the same and not send it again
|
|
|
|
var etag = fmt.Sprintf("%x", md5.Sum([]byte(time.Now().String())))
|
2017-07-31 15:15:05 -04:00
|
|
|
|
2021-11-26 09:50:56 +01:00
|
|
|
// New returns a gin engine to serve the web frontend.
|
|
|
|
func New() *gin.Engine {
|
|
|
|
e := gin.New()
|
2017-09-20 12:29:57 -07:00
|
|
|
|
2021-11-26 09:50:56 +01:00
|
|
|
e.Use(setupCache)
|
2017-09-07 17:43:33 -07:00
|
|
|
|
2021-12-01 14:22:06 +01:00
|
|
|
h := http.FileServer(web.HTTPFS())
|
2021-12-08 13:58:00 +01:00
|
|
|
e.GET("/favicon.svg", redirect("/favicons/favicon-light-default.svg", http.StatusPermanentRedirect))
|
|
|
|
e.GET("/favicons/*filepath", gin.WrapH(h))
|
2021-11-26 09:50:56 +01:00
|
|
|
e.GET("/assets/*filepath", gin.WrapH(h))
|
|
|
|
|
|
|
|
e.NoRoute(handleIndex)
|
2017-07-31 15:15:05 -04:00
|
|
|
|
2021-11-26 09:50:56 +01:00
|
|
|
return e
|
2017-07-31 15:15:05 -04:00
|
|
|
}
|
|
|
|
|
2021-12-08 13:58:00 +01:00
|
|
|
// redirect return gin helper to redirect a request
|
|
|
|
func redirect(location string, status ...int) func(ctx *gin.Context) {
|
|
|
|
return func(ctx *gin.Context) {
|
|
|
|
code := http.StatusFound
|
|
|
|
if len(status) == 1 {
|
|
|
|
code = status[0]
|
|
|
|
}
|
|
|
|
|
|
|
|
http.Redirect(ctx.Writer, ctx.Request, location, code)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-26 09:50:56 +01:00
|
|
|
func handleIndex(c *gin.Context) {
|
|
|
|
rw := c.Writer
|
|
|
|
data := web.MustLookup("index.html")
|
2017-07-31 15:15:05 -04:00
|
|
|
rw.Header().Set("Content-Type", "text/html; charset=UTF-8")
|
2021-11-23 15:36:52 +01:00
|
|
|
rw.WriteHeader(200)
|
2021-11-26 09:50:56 +01:00
|
|
|
if _, err := rw.Write(data); err != nil {
|
2021-11-26 01:12:44 +01:00
|
|
|
log.Error().Err(err).Msg("can not write index.html")
|
|
|
|
}
|
2017-07-31 15:15:05 -04:00
|
|
|
}
|
|
|
|
|
2021-11-26 09:50:56 +01:00
|
|
|
func setupCache(c *gin.Context) {
|
|
|
|
c.Writer.Header().Set("Cache-Control", "public, max-age=31536000")
|
|
|
|
c.Writer.Header().Del("Expires")
|
|
|
|
c.Writer.Header().Set("ETag", etag)
|
2017-07-31 15:15:05 -04:00
|
|
|
}
|