| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- // SPDX-FileCopyrightText: Copyright The Miniflux Authors. All rights reserved.
- // SPDX-License-Identifier: Apache-2.0
- package validator // import "miniflux.app/v2/internal/validator"
- import (
- "miniflux.app/v2/internal/locale"
- "miniflux.app/v2/internal/model"
- "miniflux.app/v2/internal/storage"
- )
- // ValidateFeedCreation validates feed creation.
- func ValidateFeedCreation(store *storage.Storage, userID int64, request *model.FeedCreationRequest) *locale.LocalizedError {
- if request.FeedURL == "" || request.CategoryID <= 0 {
- return locale.NewLocalizedError("error.feed_mandatory_fields")
- }
- if !IsValidURL(request.FeedURL) {
- return locale.NewLocalizedError("error.invalid_feed_url")
- }
- if store.FeedURLExists(userID, request.FeedURL) {
- return locale.NewLocalizedError("error.feed_already_exists")
- }
- if !store.CategoryIDExists(userID, request.CategoryID) {
- return locale.NewLocalizedError("error.feed_category_not_found")
- }
- if !IsValidRegex(request.BlocklistRules) {
- return locale.NewLocalizedError("error.feed_invalid_blocklist_rule")
- }
- if !IsValidRegex(request.KeeplistRules) {
- return locale.NewLocalizedError("error.feed_invalid_keeplist_rule")
- }
- if request.ProxyURL != "" && !IsValidURL(request.ProxyURL) {
- return locale.NewLocalizedError("error.invalid_feed_proxy_url")
- }
- return nil
- }
- // ValidateFeedModification validates feed modification.
- func ValidateFeedModification(store *storage.Storage, userID, feedID int64, request *model.FeedModificationRequest) *locale.LocalizedError {
- if request.FeedURL != nil {
- if *request.FeedURL == "" {
- return locale.NewLocalizedError("error.feed_url_not_empty")
- }
- if !IsValidURL(*request.FeedURL) {
- return locale.NewLocalizedError("error.invalid_feed_url")
- }
- if store.AnotherFeedURLExists(userID, feedID, *request.FeedURL) {
- return locale.NewLocalizedError("error.feed_already_exists")
- }
- }
- if request.SiteURL != nil {
- if *request.SiteURL == "" {
- return locale.NewLocalizedError("error.site_url_not_empty")
- }
- if !IsValidURL(*request.SiteURL) {
- return locale.NewLocalizedError("error.invalid_site_url")
- }
- }
- if request.Title != nil {
- if *request.Title == "" {
- return locale.NewLocalizedError("error.feed_title_not_empty")
- }
- }
- if request.CategoryID != nil {
- if !store.CategoryIDExists(userID, *request.CategoryID) {
- return locale.NewLocalizedError("error.feed_category_not_found")
- }
- }
- if request.BlocklistRules != nil {
- if !IsValidRegex(*request.BlocklistRules) {
- return locale.NewLocalizedError("error.feed_invalid_blocklist_rule")
- }
- }
- if request.KeeplistRules != nil {
- if !IsValidRegex(*request.KeeplistRules) {
- return locale.NewLocalizedError("error.feed_invalid_keeplist_rule")
- }
- }
- if request.ProxyURL != nil {
- if *request.ProxyURL == "" {
- return locale.NewLocalizedError("error.proxy_url_not_empty")
- }
- if !IsValidURL(*request.ProxyURL) {
- return locale.NewLocalizedError("error.invalid_feed_proxy_url")
- }
- }
- return nil
- }
|