summaryrefslogtreecommitdiff
path: root/src/SMAPI.Web.LegacyRedirects/Controllers/ModsApiController.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-05-16 20:01:52 -0400
committerJesse Plamondon-Willard <Pathoschild@users.noreply.github.com>2020-05-16 20:01:52 -0400
commit9d86f20ca728811c1da908337a4d5e7a998e5b48 (patch)
tree876f55422670da087740520731007e68e226678a /src/SMAPI.Web.LegacyRedirects/Controllers/ModsApiController.cs
parent5e6f1640dcb8e30a44f8ff07572874850b12cc2e (diff)
downloadSMAPI-9d86f20ca728811c1da908337a4d5e7a998e5b48.tar.gz
SMAPI-9d86f20ca728811c1da908337a4d5e7a998e5b48.tar.bz2
SMAPI-9d86f20ca728811c1da908337a4d5e7a998e5b48.zip
migrate subdomain redirects to Azure
Diffstat (limited to 'src/SMAPI.Web.LegacyRedirects/Controllers/ModsApiController.cs')
-rw-r--r--src/SMAPI.Web.LegacyRedirects/Controllers/ModsApiController.cs33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/SMAPI.Web.LegacyRedirects/Controllers/ModsApiController.cs b/src/SMAPI.Web.LegacyRedirects/Controllers/ModsApiController.cs
deleted file mode 100644
index 44ed0b6b..00000000
--- a/src/SMAPI.Web.LegacyRedirects/Controllers/ModsApiController.cs
+++ /dev/null
@@ -1,33 +0,0 @@
-using System.Collections.Generic;
-using System.Threading.Tasks;
-using Microsoft.AspNetCore.Mvc;
-using Pathoschild.Http.Client;
-using StardewModdingAPI.Toolkit.Framework.Clients.WebApi;
-
-namespace SMAPI.Web.LegacyRedirects.Controllers
-{
- /// <summary>Provides an API to perform mod update checks.</summary>
- [ApiController]
- [Produces("application/json")]
- [Route("api/v{version}/mods")]
- public class ModsApiController : Controller
- {
- /*********
- ** Public methods
- *********/
- /// <summary>Fetch version metadata for the given mods.</summary>
- /// <param name="model">The mod search criteria.</param>
- [HttpPost]
- public async Task<IEnumerable<ModEntryModel>> PostAsync([FromBody] ModSearchModel model)
- {
- using IClient client = new FluentClient("https://smapi.io/api");
-
- Startup.ConfigureJsonNet(client.Formatters.JsonFormatter.SerializerSettings);
-
- return await client
- .PostAsync(this.Request.Path)
- .WithBody(model)
- .AsArray<ModEntryModel>();
- }
- }
-}