25 lines
1.1 KiB
C#
25 lines
1.1 KiB
C#
using FluentValidation;
|
|
using Nop.Core.Domain.News;
|
|
using Nop.Services.Localization;
|
|
using Nop.Services.Seo;
|
|
using Nop.Web.Areas.Admin.Models.News;
|
|
using Nop.Web.Framework.Validators;
|
|
|
|
namespace Nop.Web.Areas.Admin.Validators.News;
|
|
|
|
public partial class NewsItemValidator : BaseNopValidator<NewsItemModel>
|
|
{
|
|
public NewsItemValidator(ILocalizationService localizationService)
|
|
{
|
|
RuleFor(x => x.Title).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Admin.ContentManagement.News.NewsItems.Fields.Title.Required"));
|
|
|
|
RuleFor(x => x.Short).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Admin.ContentManagement.News.NewsItems.Fields.Short.Required"));
|
|
|
|
RuleFor(x => x.Full).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Admin.ContentManagement.News.NewsItems.Fields.Full.Required"));
|
|
|
|
RuleFor(x => x.SeName).Length(0, NopSeoDefaults.SearchEngineNameLength)
|
|
.WithMessageAwait(localizationService.GetResourceAsync("Admin.SEO.SeName.MaxLengthValidation"), NopSeoDefaults.SearchEngineNameLength);
|
|
|
|
SetDatabaseValidationRules<NewsItem>();
|
|
}
|
|
} |