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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

48 lines
1.5 KiB

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Mvc;
using Microsoft.Extensions.Hosting;
using Microsoft.Extensions.Logging;
namespace Ksp.WebServer.Controllers
{
[ApiController]
[Route("tasks.json")]
public class TasksController : ControllerBase
{
private readonly ILogger<TasksController> logger;
private readonly IWebHostEnvironment env;
public TasksController(ILogger<TasksController> logger, IWebHostEnvironment env)
{
this.env = env;
this.logger = logger;
}
string TasksJsonFile => Path.Combine(env.ContentRootPath, "../../tasks.json");
[HttpGet]
public IActionResult Get()
{
return this.PhysicalFile(TasksJsonFile, "text/json");
}
[HttpPost]
public async Task<IActionResult> Post()
{
// Saving in production is now enabled in order to allow people from the outside
// to modify tasks.json using the editor.
// if (env.IsProduction())
// return this.Forbid();
// TODO: auth org
using var rdr = new StreamReader(HttpContext.Request.Body);
await System.IO.File.WriteAllTextAsync(TasksJsonFile, await rdr.ReadToEndAsync());
return Ok();
}
}
}