blob: 2edbbaf559cce7734436a1fd5a890d94ec0d8c4b (
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
|
using System;
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/<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)
{
}*/
}
}
|