2023-06-19 23:42:47 +02:00
|
|
|
// SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0
|
2021-01-04 06:20:21 +01:00
|
|
|
|
2023-08-11 04:46:45 +02:00
|
|
|
package validator // import "miniflux.app/v2/internal/validator"
|
2021-01-04 06:20:21 +01:00
|
|
|
|
|
|
|
import (
|
2021-01-05 00:32:32 +01:00
|
|
|
"fmt"
|
2021-01-04 22:49:28 +01:00
|
|
|
"net/url"
|
2021-02-08 03:38:45 +01:00
|
|
|
"regexp"
|
2021-01-04 06:20:21 +01:00
|
|
|
)
|
|
|
|
|
2021-01-05 00:32:32 +01:00
|
|
|
// ValidateRange makes sure the offset/limit values are valid.
|
|
|
|
func ValidateRange(offset, limit int) error {
|
|
|
|
if offset < 0 {
|
2024-02-25 05:44:40 +01:00
|
|
|
return fmt.Errorf(`offset value should be >= 0`)
|
2021-01-05 00:32:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if limit < 0 {
|
2024-02-25 05:44:40 +01:00
|
|
|
return fmt.Errorf(`limit value should be >= 0`)
|
2021-01-05 00:32:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ValidateDirection makes sure the sorting direction is valid.
|
|
|
|
func ValidateDirection(direction string) error {
|
|
|
|
switch direction {
|
|
|
|
case "asc", "desc":
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2024-02-25 05:44:40 +01:00
|
|
|
return fmt.Errorf(`invalid direction, valid direction values are: "asc" or "desc"`)
|
2021-01-05 00:32:32 +01:00
|
|
|
}
|
|
|
|
|
2021-02-08 03:38:45 +01:00
|
|
|
// IsValidRegex verifies if the regex can be compiled.
|
|
|
|
func IsValidRegex(expr string) bool {
|
|
|
|
_, err := regexp.Compile(expr)
|
|
|
|
return err == nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// IsValidURL verifies if the provided value is a valid absolute URL.
|
|
|
|
func IsValidURL(absoluteURL string) bool {
|
2021-01-04 22:49:28 +01:00
|
|
|
_, err := url.ParseRequestURI(absoluteURL)
|
|
|
|
return err == nil
|
|
|
|
}
|