2020-05-29 15:33:46 +02:00
|
|
|
// Vikunja is a to-do list application to facilitate your life.
|
|
|
|
// Copyright 2018-2020 Vikunja and contributors. All rights reserved.
|
|
|
|
//
|
|
|
|
// This program is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package unsplash
|
|
|
|
|
|
|
|
import (
|
2020-10-11 22:10:03 +02:00
|
|
|
"context"
|
2020-05-29 15:33:46 +02:00
|
|
|
"net/http"
|
2020-05-31 22:36:25 +02:00
|
|
|
"strings"
|
2020-10-11 22:10:03 +02:00
|
|
|
|
|
|
|
"code.vikunja.io/web/handler"
|
|
|
|
"github.com/labstack/echo/v4"
|
2020-05-29 15:33:46 +02:00
|
|
|
)
|
|
|
|
|
2020-05-31 22:06:59 +02:00
|
|
|
func unsplashImage(url string, c echo.Context) error {
|
2020-05-31 22:36:25 +02:00
|
|
|
// Replacing and appending the url for security reasons
|
2020-10-11 22:10:03 +02:00
|
|
|
req, err := http.NewRequestWithContext(context.Background(), http.MethodGet, "https://images.unsplash.com/"+strings.Replace(url, "https://images.unsplash.com/", "", 1), nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
resp, err := http.DefaultClient.Do(req)
|
2020-05-31 22:06:59 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-10-11 22:10:03 +02:00
|
|
|
defer resp.Body.Close()
|
2020-05-31 22:06:59 +02:00
|
|
|
if resp.StatusCode > 399 {
|
|
|
|
return echo.ErrNotFound
|
|
|
|
}
|
|
|
|
return c.Stream(http.StatusOK, "image/jpg", resp.Body)
|
|
|
|
}
|
|
|
|
|
2020-05-29 15:33:46 +02:00
|
|
|
// ProxyUnsplashImage proxies a thumbnail from unsplash for privacy reasons.
|
|
|
|
// @Summary Get an unsplash image
|
|
|
|
// @Description Get an unsplash image. **Returns json on error.**
|
|
|
|
// @tags list
|
|
|
|
// @Produce octet-stream
|
|
|
|
// @Param thumb path int true "Unsplash Image ID"
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @Success 200 {} string "The image"
|
|
|
|
// @Failure 404 {object} models.Message "The image does not exist."
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /backgrounds/unsplash/image/{image} [get]
|
|
|
|
func ProxyUnsplashImage(c echo.Context) error {
|
2020-05-31 22:06:59 +02:00
|
|
|
photo, err := getUnsplashPhotoInfoByID(c.Param("image"))
|
2020-05-29 15:33:46 +02:00
|
|
|
if err != nil {
|
2020-05-31 22:06:59 +02:00
|
|
|
return handler.HandleHTTPError(err, c)
|
2020-05-29 15:33:46 +02:00
|
|
|
}
|
2020-05-31 22:06:59 +02:00
|
|
|
pingbackByPhotoID(photo.ID)
|
|
|
|
return unsplashImage(photo.Urls.Raw, c)
|
2020-05-29 15:33:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ProxyUnsplashThumb proxies a thumbnail from unsplash for privacy reasons.
|
|
|
|
// @Summary Get an unsplash thumbnail image
|
|
|
|
// @Description Get an unsplash thumbnail image. The thumbnail is cropped to a max width of 200px. **Returns json on error.**
|
|
|
|
// @tags list
|
|
|
|
// @Produce octet-stream
|
|
|
|
// @Param thumb path int true "Unsplash Image ID"
|
|
|
|
// @Security JWTKeyAuth
|
|
|
|
// @Success 200 {} string "The thumbnail"
|
|
|
|
// @Failure 404 {object} models.Message "The image does not exist."
|
|
|
|
// @Failure 500 {object} models.Message "Internal error"
|
|
|
|
// @Router /backgrounds/unsplash/image/{image}/thumb [get]
|
|
|
|
func ProxyUnsplashThumb(c echo.Context) error {
|
2020-05-31 22:06:59 +02:00
|
|
|
photo, err := getUnsplashPhotoInfoByID(c.Param("image"))
|
2020-05-29 15:33:46 +02:00
|
|
|
if err != nil {
|
2020-05-31 22:06:59 +02:00
|
|
|
return handler.HandleHTTPError(err, c)
|
2020-05-29 15:33:46 +02:00
|
|
|
}
|
2020-05-31 22:06:59 +02:00
|
|
|
pingbackByPhotoID(photo.ID)
|
2020-05-31 22:40:27 +02:00
|
|
|
return unsplashImage("https://images.unsplash.com/"+getImageID(photo.Urls.Raw)+"?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjcyODAwfQ", c)
|
2020-05-29 15:33:46 +02:00
|
|
|
}
|