You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Sonarr/src/Sonarr.Api.V3/Profiles/Languages/LanguageProfileController.cs

82 lines
2.4 KiB

using System;
using System.Collections.Generic;
using Microsoft.AspNetCore.Mvc;
using NzbDrone.Core.Languages;
using Sonarr.Http;
using Sonarr.Http.REST;
using Sonarr.Http.REST.Attributes;
namespace Sonarr.Api.V3.Profiles.Languages
{
[V3ApiController]
[Obsolete("Deprecated")]
public class LanguageProfileController : RestController<LanguageProfileResource>
{
[RestPostById]
[Produces("application/json")]
[Consumes("application/json")]
public ActionResult<LanguageProfileResource> Create([FromBody] LanguageProfileResource resource)
{
return Accepted(resource);
}
[RestDeleteById]
public void DeleteProfile(int id)
{
}
[RestPutById]
[Produces("application/json")]
[Consumes("application/json")]
public ActionResult<LanguageProfileResource> Update([FromBody] LanguageProfileResource resource)
{
return Accepted(resource);
}
[RestGetById]
[Produces("application/json")]
protected override LanguageProfileResource GetResourceById(int id)
{
return new LanguageProfileResource
{
Id = 1,
Name = "Deprecated",
UpgradeAllowed = true,
Cutoff = Language.English,
Languages = new List<LanguageProfileItemResource>
{
new LanguageProfileItemResource
{
Language = Language.English,
Allowed = true
}
}
};
}
[HttpGet]
[Produces("application/json")]
public ActionResult<List<LanguageProfileResource>> GetAll()
{
return new List<LanguageProfileResource>
{
new LanguageProfileResource
{
Id = 1,
Name = "Deprecated",
UpgradeAllowed = true,
Cutoff = Language.English,
Languages = new List<LanguageProfileItemResource>
{
new LanguageProfileItemResource
{
Language = Language.English,
Allowed = true
}
}
}
};
}
}
}