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