miniflux-v2/ui/proxy.go

60 lines
1.4 KiB
Go
Raw Normal View History

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"
"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.
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
if r.Header.Get("If-None-Match") != "" {
response.NotModified(w)
2017-11-22 08:09:01 +01:00
return
}
encodedURL := request.Param(r, "encodedURL", "")
2017-11-20 06:10:04 +01:00
if encodedURL == "" {
html.BadRequest(w, errors.New("No URL provided"))
2017-11-20 06:10:04 +01:00
return
}
decodedURL, err := base64.URLEncoding.DecodeString(encodedURL)
2017-11-20 06:10:04 +01:00
if err != nil {
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)
html.NotFound(w)
2017-11-20 06:10:04 +01:00
return
}
2017-11-22 08:09:01 +01:00
if resp.HasServerFailure() {
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
response.Cache(w, r, resp.ContentType, etag, body, 72*time.Hour)
2017-11-20 06:10:04 +01:00
}