2018-04-29 19:35:04 -04:00
|
|
|
// Copyright 2018 Frédéric Guillot. All rights reserved.
|
|
|
|
// Use of this source code is governed by the Apache 2.0
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
2018-09-24 00:02:26 -04:00
|
|
|
package ui // import "miniflux.app/ui"
|
2018-04-29 19:35:04 -04:00
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2018-08-25 00:51:50 -04:00
|
|
|
"miniflux.app/http/request"
|
|
|
|
"miniflux.app/http/response"
|
|
|
|
"miniflux.app/http/response/html"
|
|
|
|
"miniflux.app/ui/static"
|
2018-04-29 19:35:04 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
// Stylesheet renders the CSS.
|
|
|
|
func (c *Controller) Stylesheet(w http.ResponseWriter, r *http.Request) {
|
2018-10-07 21:42:43 -04:00
|
|
|
filename := request.RouteStringParam(r, "name")
|
|
|
|
etag, found := static.StylesheetsChecksums[filename]
|
|
|
|
if !found {
|
|
|
|
html.NotFound(w, r)
|
2018-07-07 14:00:39 -04:00
|
|
|
return
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|
|
|
|
|
2018-10-07 21:42:43 -04:00
|
|
|
response.New(w, r).WithCaching(etag, 48*time.Hour, func(b *response.Builder) {
|
|
|
|
b.WithHeader("Content-Type", "text/css; charset=utf-8")
|
|
|
|
b.WithBody(static.Stylesheets[filename])
|
|
|
|
b.Write()
|
|
|
|
})
|
2018-04-29 19:35:04 -04:00
|
|
|
}
|