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 (
|
|
|
|
"crypto/md5"
|
|
|
|
"fmt"
|
|
|
|
"net/http"
|
2023-05-30 15:25:18 +00:00
|
|
|
"net/url"
|
2023-04-29 15:51:50 +00:00
|
|
|
"regexp"
|
2023-05-30 15:25:18 +00:00
|
|
|
"strings"
|
2017-07-31 19:15:05 +00:00
|
|
|
"time"
|
|
|
|
|
2021-10-12 07:25:13 +00:00
|
|
|
"github.com/gin-gonic/gin"
|
2021-11-23 14:36:52 +00:00
|
|
|
"github.com/rs/zerolog/log"
|
2021-10-12 07:25:13 +00:00
|
|
|
|
2023-04-29 15:51:50 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/server"
|
2021-09-29 15:34:56 +00:00
|
|
|
"github.com/woodpecker-ci/woodpecker/web"
|
2017-07-31 19:15:05 +00:00
|
|
|
)
|
|
|
|
|
2021-11-26 08:50:56 +00:00
|
|
|
// etag is an identifier for a resource version
|
|
|
|
// it lets caches determine if resource is still the same and not send it again
|
2023-04-29 15:51:50 +00:00
|
|
|
var (
|
|
|
|
etag = fmt.Sprintf("%x", md5.Sum([]byte(time.Now().String())))
|
|
|
|
indexHTML []byte
|
|
|
|
)
|
2017-07-31 19:15:05 +00:00
|
|
|
|
2023-05-30 15:25:18 +00:00
|
|
|
type prefixFS struct {
|
|
|
|
fs http.FileSystem
|
|
|
|
prefix string
|
|
|
|
}
|
|
|
|
|
|
|
|
func (f *prefixFS) Open(name string) (http.File, error) {
|
|
|
|
return f.fs.Open(strings.TrimPrefix(name, f.prefix))
|
|
|
|
}
|
|
|
|
|
2021-11-26 08:50:56 +00:00
|
|
|
// New returns a gin engine to serve the web frontend.
|
2023-03-20 23:48:15 +00:00
|
|
|
func New() (*gin.Engine, error) {
|
2021-11-26 08:50:56 +00:00
|
|
|
e := gin.New()
|
2023-04-29 15:51:50 +00:00
|
|
|
indexHTML = parseIndex()
|
2017-09-20 19:29:57 +00:00
|
|
|
|
2021-11-26 08:50:56 +00:00
|
|
|
e.Use(setupCache)
|
2017-09-08 00:43:33 +00:00
|
|
|
|
2023-05-30 15:25:18 +00:00
|
|
|
rootURL, _ := url.Parse(server.Config.Server.RootURL)
|
|
|
|
rootPath := rootURL.Path
|
|
|
|
|
2023-03-20 23:48:15 +00:00
|
|
|
httpFS, err := web.HTTPFS()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-05-30 15:25:18 +00:00
|
|
|
h := http.FileServer(&prefixFS{httpFS, rootPath})
|
|
|
|
e.GET(rootPath+"/favicon.svg", redirect(server.Config.Server.RootURL+"/favicons/favicon-light-default.svg", http.StatusPermanentRedirect))
|
|
|
|
e.GET(rootPath+"/favicons/*filepath", gin.WrapH(h))
|
|
|
|
e.GET(rootPath+"/assets/*filepath", gin.WrapH(h))
|
2021-11-26 08:50:56 +00:00
|
|
|
|
|
|
|
e.NoRoute(handleIndex)
|
2017-07-31 19:15:05 +00:00
|
|
|
|
2023-03-20 23:48:15 +00:00
|
|
|
return e, nil
|
2017-07-31 19:15:05 +00:00
|
|
|
}
|
|
|
|
|
2021-12-08 12:58:00 +00: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 08:50:56 +00:00
|
|
|
func handleIndex(c *gin.Context) {
|
|
|
|
rw := c.Writer
|
2023-04-29 15:51:50 +00:00
|
|
|
rw.Header().Set("Content-Type", "text/html; charset=UTF-8")
|
|
|
|
rw.WriteHeader(http.StatusOK)
|
|
|
|
if _, err := rw.Write(indexHTML); err != nil {
|
|
|
|
log.Error().Err(err).Msg("can not write index.html")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func parseIndex() []byte {
|
2023-03-20 23:48:15 +00:00
|
|
|
data, err := web.Lookup("index.html")
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal().Err(err).Msg("can not find index.html")
|
|
|
|
}
|
2023-04-29 15:51:50 +00:00
|
|
|
if server.Config.Server.RootURL == "" {
|
|
|
|
return data
|
2021-11-26 00:12:44 +00:00
|
|
|
}
|
2023-04-29 15:51:50 +00:00
|
|
|
return regexp.MustCompile(`/\S+\.(js|css|png|svg)`).ReplaceAll(data, []byte(server.Config.Server.RootURL+"$0"))
|
2017-07-31 19:15:05 +00:00
|
|
|
}
|
|
|
|
|
2021-11-26 08:50:56 +00: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 19:15:05 +00:00
|
|
|
}
|