2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2018-04-30 01:35:04 +02:00
|
|
|
|
2023-08-10 06:15:55 +02:00
|
|
|
package ui // import "miniflux.app/v2/ui"
|
2018-04-30 01:35:04 +02:00
|
|
|
|
|
|
|
import (
|
2021-03-08 00:25:34 +01:00
|
|
|
"fmt"
|
2018-04-30 01:35:04 +02:00
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
2023-08-10 06:15:55 +02:00
|
|
|
"miniflux.app/v2/http/request"
|
|
|
|
"miniflux.app/v2/http/response"
|
|
|
|
"miniflux.app/v2/http/response/html"
|
|
|
|
"miniflux.app/v2/http/route"
|
|
|
|
"miniflux.app/v2/ui/static"
|
2018-04-30 01:35:04 +02:00
|
|
|
)
|
|
|
|
|
2018-11-11 20:28:29 +01:00
|
|
|
func (h *handler) showJavascript(w http.ResponseWriter, r *http.Request) {
|
2018-09-24 06:02:26 +02:00
|
|
|
filename := request.RouteStringParam(r, "name")
|
2021-02-19 05:34:58 +01:00
|
|
|
etag, found := static.JavascriptBundleChecksums[filename]
|
2018-10-08 03:42:43 +02:00
|
|
|
if !found {
|
|
|
|
html.NotFound(w, r)
|
2018-07-16 06:51:09 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-10-08 03:42:43 +02:00
|
|
|
response.New(w, r).WithCaching(etag, 48*time.Hour, func(b *response.Builder) {
|
2021-03-08 00:25:34 +01:00
|
|
|
contents := static.JavascriptBundles[filename]
|
|
|
|
|
|
|
|
if filename == "service-worker" {
|
|
|
|
variables := fmt.Sprintf(`const OFFLINE_URL="%s";`, route.Path(h.router, "offline"))
|
|
|
|
contents = append([]byte(variables)[:], contents[:]...)
|
|
|
|
}
|
|
|
|
|
2018-10-08 03:42:43 +02:00
|
|
|
b.WithHeader("Content-Type", "text/javascript; charset=utf-8")
|
2021-03-08 00:25:34 +01:00
|
|
|
b.WithBody(contents)
|
2018-10-08 03:42:43 +02:00
|
|
|
b.Write()
|
|
|
|
})
|
2018-04-30 01:35:04 +02:00
|
|
|
}
|