forked from h2non/imaginary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patherror.go
134 lines (115 loc) · 4.42 KB
/
error.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
/*
* SPDX-License-Identifier: AGPL-3.0-only
*
* Copyright (c) 2025 sycured
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, version 3.
*
* 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 Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package main
import (
"encoding/json"
"fmt"
"net/http"
"strings"
"github.com/h2non/bimg"
)
var (
ErrNotFound = NewError("Not found", http.StatusNotFound)
ErrInvalidAPIKey = NewError("Invalid or missing API key", http.StatusUnauthorized)
ErrMethodNotAllowed = NewError("HTTP method not allowed. Try with a POST or GET method (-enable-url-source flag must be defined)", http.StatusMethodNotAllowed) //nolint:lll
ErrGetMethodNotAllowed = NewError("GET method not allowed. Make sure remote URL source is enabled by using the flag: -enable-url-source", http.StatusMethodNotAllowed) //nolint:lll
ErrUnsupportedMedia = NewError("Unsupported media type", http.StatusNotAcceptable)
ErrOutputFormat = NewError("Unsupported output image format", http.StatusBadRequest)
ErrEmptyBody = NewError("Empty or unreadable image", http.StatusBadRequest)
ErrMissingParamFile = NewError("Missing required param: file", http.StatusBadRequest)
ErrInvalidFilePath = NewError("Invalid file path", http.StatusBadRequest)
ErrInvalidImageURL = NewError("Invalid image URL", http.StatusBadRequest)
ErrMissingImageSource = NewError("Cannot process the image due to missing or invalid params", http.StatusBadRequest)
ErrNotImplemented = NewError("Not implemented endpoint", http.StatusNotImplemented)
ErrInvalidURLSignature = NewError("Invalid URL signature", http.StatusBadRequest)
ErrURLSignatureMismatch = NewError("URL signature mismatch", http.StatusForbidden)
ErrResolutionTooBig = NewError("Image resolution is too big", http.StatusUnprocessableEntity)
)
type Error struct {
Message string `json:"message,omitempty"`
Code int `json:"status"`
}
func (e Error) JSON() []byte {
buf, _ := json.Marshal(e)
return buf
}
func (e Error) Error() string {
return e.Message
}
func (e Error) HTTPCode() int {
if e.Code >= 400 && e.Code <= 511 {
return e.Code
}
return http.StatusServiceUnavailable
}
func NewError(err string, code int) Error {
err = strings.ReplaceAll(err, "\n", "")
return Error{Message: err, Code: code}
}
func sendErrorResponse(w http.ResponseWriter, httpStatusCode int, err error) {
w.Header().Set(ContentType, ContentTypeJSON)
w.WriteHeader(httpStatusCode)
_, _ = w.Write([]byte(fmt.Sprintf("{\"error\":\"%s\", \"status\": %d}", err.Error(), httpStatusCode)))
}
func replyWithPlaceholder(req *http.Request, w http.ResponseWriter, errCaller Error, o ServerOptions) error {
var err error
bimgOptions := bimg.Options{
Force: true,
Crop: true,
Enlarge: true,
Type: ImageType(req.URL.Query().Get("type")),
}
bimgOptions.Width, err = parseInt(req.URL.Query().Get("width"))
if err != nil {
sendErrorResponse(w, http.StatusBadRequest, err)
return err
}
bimgOptions.Height, err = parseInt(req.URL.Query().Get("height"))
if err != nil {
sendErrorResponse(w, http.StatusBadRequest, err)
return err
}
// Resize placeholder to expected output
buf, err := bimg.Resize(o.PlaceholderImage, bimgOptions)
if err != nil {
sendErrorResponse(w, http.StatusBadRequest, err)
return err
}
// Use final response body image
image := buf
// Placeholder image response
w.Header().Set(ContentType, GetImageMimeType(bimg.DetermineImageType(image)))
w.Header().Set("Error", string(errCaller.JSON()))
if o.PlaceholderStatus != 0 {
w.WriteHeader(o.PlaceholderStatus)
} else {
w.WriteHeader(errCaller.HTTPCode())
}
_, _ = w.Write(image)
return errCaller
}
func ErrorReply(req *http.Request, w http.ResponseWriter, err Error, o ServerOptions) {
// Reply with placeholder if required
if o.EnablePlaceholder || o.Placeholder != "" {
_ = replyWithPlaceholder(req, w, err, o)
return
}
w.Header().Set(ContentType, ContentTypeJSON)
w.WriteHeader(err.HTTPCode())
_, _ = w.Write(err.JSON())
}