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-08-25 06:51:50 +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"
|
|
|
|
"miniflux.app/logger"
|
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) {
|
2017-11-22 08:09:01 +01:00
|
|
|
// If we receive a "If-None-Match" header we assume the image in stored in browser cache
|
2018-04-30 01:35:04 +02:00
|
|
|
if r.Header.Get("If-None-Match") != "" {
|
|
|
|
response.NotModified(w)
|
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-04-30 01:35:04 +02:00
|
|
|
html.BadRequest(w, 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-04-30 01:35:04 +02:00
|
|
|
html.BadRequest(w, 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 {
|
2017-12-16 03:55:57 +01:00
|
|
|
logger.Error("[Controller:ImageProxy] %v", err)
|
2018-04-30 01:35:04 +02:00
|
|
|
html.NotFound(w)
|
2017-11-20 06:10:04 +01:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-11-22 08:09:01 +01:00
|
|
|
if resp.HasServerFailure() {
|
2018-04-30 01:35:04 +02:00
|
|
|
html.NotFound(w)
|
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-04-30 01:35:04 +02:00
|
|
|
response.Cache(w, r, resp.ContentType, etag, body, 72*time.Hour)
|
2017-11-20 06:10:04 +01:00
|
|
|
}
|