2017-11-20 06:10:04 +01:00
|
|
|
// Copyright 2017 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-10-08 03:42:43 +02:00
|
|
|
package ui // import "miniflux.app/ui"
|
2017-11-20 06:10:04 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/base64"
|
|
|
|
"errors"
|
|
|
|
"io/ioutil"
|
2018-04-30 01:35:04 +02:00
|
|
|
"net/http"
|
2017-11-20 06:10:04 +01:00
|
|
|
"time"
|
2017-11-22 08:09:01 +01:00
|
|
|
|
2018-08-25 06:51:50 +02:00
|
|
|
"miniflux.app/crypto"
|
|
|
|
"miniflux.app/http/client"
|
|
|
|
"miniflux.app/http/request"
|
|
|
|
"miniflux.app/http/response"
|
|
|
|
"miniflux.app/http/response/html"
|
2017-11-20 06:10:04 +01:00
|
|
|
)
|
|
|
|
|
2017-11-22 08:09:01 +01:00
|
|
|
// ImageProxy fetch an image from a remote server and sent it back to the browser.
|
2018-04-30 01:35:04 +02:00
|
|
|
func (c *Controller) ImageProxy(w http.ResponseWriter, r *http.Request) {
|
2018-10-08 03:42:43 +02:00
|
|
|
// If we receive a "If-None-Match" header, we assume the image is already stored in browser cache.
|
2018-04-30 01:35:04 +02:00
|
|
|
if r.Header.Get("If-None-Match") != "" {
|
2018-10-08 03:42:43 +02:00
|
|
|
w.WriteHeader(http.StatusNotModified)
|
2017-11-22 08:09:01 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-09-24 06:02:26 +02:00
|
|
|
encodedURL := request.RouteStringParam(r, "encodedURL")
|
2017-11-20 06:10:04 +01:00
|
|
|
if encodedURL == "" {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.BadRequest(w, r, errors.New("No URL provided"))
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-12-19 03:06:53 +01:00
|
|
|
decodedURL, err := base64.URLEncoding.DecodeString(encodedURL)
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.BadRequest(w, r, errors.New("Unable to decode this URL"))
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2018-04-28 19:51:07 +02:00
|
|
|
clt := client.New(string(decodedURL))
|
|
|
|
resp, err := clt.Get()
|
2017-11-20 06:10:04 +01:00
|
|
|
if err != nil {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.ServerError(w, r, err)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-11-22 08:09:01 +01:00
|
|
|
if resp.HasServerFailure() {
|
2018-10-08 03:42:43 +02:00
|
|
|
html.NotFound(w, r)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
body, _ := ioutil.ReadAll(resp.Body)
|
2018-01-03 04:15:08 +01:00
|
|
|
etag := crypto.HashFromBytes(body)
|
2017-11-20 06:10:04 +01:00
|
|
|
|
2018-10-08 03:42:43 +02:00
|
|
|
response.New(w ,r).WithCaching(etag, 72*time.Hour, func(b *response.Builder) {
|
|
|
|
b.WithHeader("Content-Type", resp.ContentType)
|
|
|
|
b.WithBody(body)
|
|
|
|
b.WithoutCompression()
|
|
|
|
b.Write()
|
|
|
|
})
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|