From af74efccf8d21e6151022b71f3cacd3fa83024ee Mon Sep 17 00:00:00 2001 From: uzvkl Date: Tue, 11 Jun 2019 23:33:41 +0200 Subject: Seperate the Core from dsa gamelogic --- DSACore/Controllers/CommandsController.cs | 56 +++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) create mode 100644 DSACore/Controllers/CommandsController.cs (limited to 'DSACore/Controllers/CommandsController.cs') diff --git a/DSACore/Controllers/CommandsController.cs b/DSACore/Controllers/CommandsController.cs new file mode 100644 index 0000000..b6e0be2 --- /dev/null +++ b/DSACore/Controllers/CommandsController.cs @@ -0,0 +1,56 @@ +using System; +using DSACore.Models.Network; +using DSALib.Commands; +using DSALib.Models.Network; +using Microsoft.AspNetCore.Mvc; + +// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 + +namespace DSACore.Controllers +{ + [Route("dsa/[controller]")] + public class CommandsController : Controller + { + // GET: api/ + [HttpGet] + public string Get() + { + return "Usage: post the command to execute"; + } + + // GET api//5 + /*[HttpGet("{id}")] + public string Get(int id) + { + return "value"; + }*/ + + // POST api//Felis + [HttpPost] + public string Post([FromBody] Command cmd) + { + try + { + return CommandHandler.ExecuteCommand(cmd).message; + } + catch (Exception e) + { + return $"Ein Fehler ist aufgetreten: \n {e.Message}"; + } + } + +/* + + // PUT api//5 + [HttpPut("{id}")] + public void Put(int id, [FromBody]string value) + { + } + + // DELETE api//5 + [HttpDelete("{id}")] + public void Delete(int id) + { + }*/ + } +} \ No newline at end of file -- cgit v1.2.3-54-g00ecf