feat(apiv2): post/patch endpoints

This commit is contained in:
spiral 2021-10-14 09:35:20 -04:00
parent fd49e7e4ea
commit e367ed6808
No known key found for this signature in database
GPG key ID: A6059F0CA0E1BD31
4 changed files with 83 additions and 29 deletions

View file

@ -24,13 +24,18 @@ namespace PluralKit.API
else return Ok(system.ToJson(this.ContextFor(system), v: APIVersion.V2));
}
[HttpPatch("{system}")]
public async Task<IActionResult> SystemPatch(string system, [FromBody] JObject data)
[HttpPatch]
public async Task<IActionResult> DoSystemPatch([FromBody] JObject data)
{
return new ObjectResult("Unimplemented")
{
StatusCode = 501
};
var system = await ResolveSystem("@me");
var patch = SystemPatch.FromJSON(data, APIVersion.V2);
patch.AssertIsValid();
if (patch.Errors.Count > 0)
throw new ModelParseError(patch.Errors);
var newSystem = await _repo.UpdateSystem(system.Id, patch);
return Ok(newSystem.ToJson(LookupContext.ByOwner, v: APIVersion.V2));
}
}
}