mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-07 13:32:17 -07:00
57 lines
No EOL
1.6 KiB
C#
57 lines
No EOL
1.6 KiB
C#
using System.Collections.Generic;
|
|
using FluentValidation;
|
|
using NzbDrone.Core.Profiles.Languages;
|
|
using Lidarr.Http;
|
|
|
|
namespace Lidarr.Api.V3.Profiles.Language
|
|
{
|
|
public class LanguageProfileModule : LidarrRestModule<LanguageProfileResource>
|
|
{
|
|
private readonly ILanguageProfileService _profileService;
|
|
|
|
public LanguageProfileModule(ILanguageProfileService profileService)
|
|
{
|
|
_profileService = profileService;
|
|
SharedValidator.RuleFor(c => c.Name).NotEmpty();
|
|
SharedValidator.RuleFor(c => c.Cutoff).NotNull();
|
|
SharedValidator.RuleFor(c => c.Languages).MustHaveAllowedLanguage();
|
|
|
|
GetResourceAll = GetAll;
|
|
GetResourceById = GetById;
|
|
UpdateResource = Update;
|
|
CreateResource = Create;
|
|
DeleteResource = DeleteProfile;
|
|
}
|
|
|
|
private int Create(LanguageProfileResource resource)
|
|
{
|
|
var model = resource.ToModel();
|
|
model = _profileService.Add(model);
|
|
return model.Id;
|
|
}
|
|
|
|
private void DeleteProfile(int id)
|
|
{
|
|
_profileService.Delete(id);
|
|
}
|
|
|
|
private void Update(LanguageProfileResource resource)
|
|
{
|
|
var model = resource.ToModel();
|
|
|
|
_profileService.Update(model);
|
|
}
|
|
|
|
private LanguageProfileResource GetById(int id)
|
|
{
|
|
return _profileService.Get(id).ToResource();
|
|
}
|
|
|
|
private List<LanguageProfileResource> GetAll()
|
|
{
|
|
var profiles = _profileService.All().ToResource();
|
|
|
|
return profiles;
|
|
}
|
|
}
|
|
} |