2022-01-17 20:23:04 +00:00
|
|
|
package pages
|
|
|
|
|
|
|
|
import (
|
2022-09-30 20:57:18 +00:00
|
|
|
"crypto/sha256"
|
|
|
|
"encoding/hex"
|
|
|
|
"io"
|
2022-01-17 20:23:04 +00:00
|
|
|
"net/http"
|
2022-06-05 00:44:54 +00:00
|
|
|
"os"
|
|
|
|
"strings"
|
2022-01-17 20:23:04 +00:00
|
|
|
|
2022-01-28 01:41:10 +00:00
|
|
|
"codeberg.org/video-prize-ranch/rimgo/utils"
|
2022-01-17 20:23:04 +00:00
|
|
|
"github.com/gofiber/fiber/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
func HandleMedia(c *fiber.Ctx) error {
|
2022-01-28 01:41:10 +00:00
|
|
|
c.Set("Cache-Control", "public,max-age=31557600")
|
2022-09-30 20:17:24 +00:00
|
|
|
if strings.HasPrefix(c.Path(), "/stack") {
|
|
|
|
return handleMedia(c, "https://i.stack.imgur.com/" + strings.ReplaceAll(c.Params("baseName"), "stack/", "") + "." + c.Params("extension"))
|
|
|
|
} else {
|
|
|
|
return handleMedia(c, "https://i.imgur.com/" + c.Params("baseName") + "." + c.Params("extension"))
|
|
|
|
}
|
2022-01-28 01:41:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func HandleUserCover(c *fiber.Ctx) error {
|
|
|
|
c.Set("Cache-Control", "public,max-age=604800")
|
|
|
|
return handleMedia(c, "https://imgur.com/user/" + c.Params("userID") + "/cover?maxwidth=2560")
|
|
|
|
};
|
|
|
|
|
|
|
|
func HandleUserAvatar(c *fiber.Ctx) error {
|
|
|
|
c.Set("Cache-Control", "public,max-age=604800")
|
|
|
|
return handleMedia(c, "https://imgur.com/user/" + c.Params("userID") + "/avatar")
|
|
|
|
};
|
|
|
|
|
|
|
|
func handleMedia(c *fiber.Ctx, url string) error {
|
|
|
|
utils.SetHeaders(c)
|
|
|
|
|
2022-10-06 02:04:21 +00:00
|
|
|
if os.Getenv("FORCE_WEBP") == "1" && c.Query("no_webp") == "" && c.Accepts("image/webp") == "image/webp" && !strings.HasPrefix(c.Path(), "/stack") {
|
2022-06-05 00:44:54 +00:00
|
|
|
url = strings.ReplaceAll(url, ".png", ".webp")
|
|
|
|
url = strings.ReplaceAll(url, ".jpg", ".webp")
|
|
|
|
url = strings.ReplaceAll(url, ".jpeg", ".webp")
|
|
|
|
}
|
|
|
|
|
2022-09-30 20:57:18 +00:00
|
|
|
optionsHash := ""
|
|
|
|
if utils.Config.ImageCache {
|
|
|
|
hasher := sha256.New()
|
|
|
|
hasher.Write([]byte(url))
|
|
|
|
optionsHash = hex.EncodeToString(hasher.Sum(nil))
|
|
|
|
|
|
|
|
image, err := os.ReadFile(utils.Config.CacheDir + "/" + optionsHash)
|
|
|
|
if err == nil {
|
|
|
|
_, err := c.Write(image)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-25 19:23:13 +00:00
|
|
|
req, err := http.NewRequest("GET", url, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.Get("Range") != "" {
|
|
|
|
req.Header.Set("Range", c.Get("Range"))
|
|
|
|
}
|
|
|
|
|
|
|
|
res, err := http.DefaultClient.Do(req)
|
2022-01-17 20:23:04 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-05-23 15:30:17 +00:00
|
|
|
if res.StatusCode == 404 {
|
|
|
|
c.Status(404)
|
|
|
|
return c.Render("errors/404", nil)
|
|
|
|
}
|
|
|
|
|
2022-06-25 19:23:13 +00:00
|
|
|
c.Set("Accept-Ranges", "bytes")
|
2022-01-17 20:23:04 +00:00
|
|
|
c.Set("Content-Type", res.Header.Get("Content-Type"));
|
2022-06-25 19:23:13 +00:00
|
|
|
c.Set("Content-Length", res.Header.Get("Content-Length"))
|
|
|
|
if res.Header.Get("Content-Range") != "" {
|
|
|
|
c.Set("Content-Range", res.Header.Get("Content-Range"))
|
|
|
|
}
|
|
|
|
|
2022-09-30 20:57:18 +00:00
|
|
|
if strings.HasPrefix(res.Header.Get("Content-Type"), "image/") && utils.Config.ImageCache && res.StatusCode == 200 {
|
|
|
|
data, err := io.ReadAll(res.Body)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
err = os.WriteFile(utils.Config.CacheDir + "/" + optionsHash, data, 0644)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
_, err = c.Write(data)
|
|
|
|
return err
|
|
|
|
} else {
|
|
|
|
return c.SendStream(res.Body)
|
|
|
|
}
|
2022-01-17 20:23:04 +00:00
|
|
|
}
|