blob: 5addf82849eb35065946640b39173cda56c6275f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
using System;
using DSACore.Commands;
using DSACore.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/<controller>
[HttpGet]
public string Get()
{
return "Usage: post the command to execute";
}
// GET api/<controller>/5
/*[HttpGet("{id}")]
public string Get(int id)
{
return "value";
}*/
// POST api/<controller>/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/<controller>/5
[HttpPut("{id}")]
public void Put(int id, [FromBody]string value)
{
}
// DELETE api/<controller>/5
[HttpDelete("{id}")]
public void Delete(int id)
{
}*/
}
}
|