mirror of
https://github.com/knadh/listmonk.git
synced 2025-03-01 08:45:28 +08:00
Add validation for filename with non-ASCII chars in media upload (#1973)
This commit is contained in:
parent
01f7450bf0
commit
1e6e97e750
4 changed files with 28 additions and 12 deletions
|
@ -48,6 +48,10 @@ func handleUploadMedia(c echo.Context) error {
|
|||
ext = strings.TrimPrefix(strings.ToLower(filepath.Ext(file.Filename)), ".")
|
||||
contentType = file.Header.Get("Content-Type")
|
||||
)
|
||||
if !isASCII(file.Filename) {
|
||||
return echo.NewHTTPError(http.StatusUnprocessableEntity,
|
||||
app.i18n.Ts("media.invalidFileName", "name", file.Filename))
|
||||
}
|
||||
|
||||
// Validate file extension.
|
||||
if !inArray("*", app.constants.MediaUpload.Extensions) {
|
||||
|
|
10
cmd/utils.go
10
cmd/utils.go
|
@ -8,6 +8,7 @@ import (
|
|||
"regexp"
|
||||
"strconv"
|
||||
"strings"
|
||||
"unicode"
|
||||
)
|
||||
|
||||
var (
|
||||
|
@ -113,3 +114,12 @@ func titleCase(input string) string {
|
|||
|
||||
return strings.Join(parts, " ")
|
||||
}
|
||||
|
||||
func isASCII(s string) bool {
|
||||
for _, c := range s {
|
||||
if c > unicode.MaxASCII {
|
||||
return false
|
||||
}
|
||||
}
|
||||
return true
|
||||
}
|
||||
|
|
|
@ -44,15 +44,16 @@ All timestamp fields are in the format `2019-01-01T09:00:00.000000+05:30`. The s
|
|||
|
||||
### Common HTTP error codes
|
||||
|
||||
| Code | |
|
||||
| ----- | ------------------------------------------------------------------------ |
|
||||
| 400 | Missing or bad request parameters or values |
|
||||
| 403 | Session expired or invalidate. Must relogin |
|
||||
| 404 | Request resource was not found |
|
||||
| 405 | Request method (GET, POST etc.) is not allowed on the requested endpoint |
|
||||
| 410 | The requested resource is gone permanently |
|
||||
| 429 | Too many requests to the API (rate limiting) |
|
||||
| 500 | Something unexpected went wrong |
|
||||
| 502 | The backend OMS is down and the API is unable to communicate with it |
|
||||
| 503 | Service unavailable; the API is down |
|
||||
| 504 | Gateway timeout; the API is unreachable |
|
||||
| Code | |
|
||||
| ----- | ----------------------------------------------------------------------------|
|
||||
| 400 | Missing or bad request parameters or values |
|
||||
| 403 | Session expired or invalidate. Must relogin |
|
||||
| 404 | Request resource was not found |
|
||||
| 405 | Request method (GET, POST etc.) is not allowed on the requested endpoint |
|
||||
| 410 | The requested resource is gone permanently |
|
||||
| 422 | Unprocessable entity. Unable to process request as it contains invalid data |
|
||||
| 429 | Too many requests to the API (rate limiting) |
|
||||
| 500 | Something unexpected went wrong |
|
||||
| 502 | The backend OMS is down and the API is unable to communicate with it |
|
||||
| 503 | Service unavailable; the API is down |
|
||||
| 504 | Gateway timeout; the API is unreachable |
|
||||
|
|
|
@ -288,6 +288,7 @@
|
|||
"media.errorSavingThumbnail": "Error saving thumbnail: {error}",
|
||||
"media.errorUploading": "Error uploading file: {error}",
|
||||
"media.invalidFile": "Invalid file: {error}",
|
||||
"media.invalidFileName": "Invalid filename {name}. Use only ASCII characters",
|
||||
"media.title": "Media",
|
||||
"media.unsupportedFileType": "Unsupported file type ({type})",
|
||||
"media.upload": "Upload",
|
||||
|
|
Loading…
Reference in a new issue