2024-05-16 18:02:44 +02:00
|
|
|
|
using FirmTracker_Server.nHibernate.Expenses;
|
|
|
|
|
using Microsoft.AspNetCore.Mvc;
|
|
|
|
|
namespace FirmTracker_Server.Controllers
|
|
|
|
|
{
|
|
|
|
|
[Route("api/[controller]")]
|
|
|
|
|
[ApiController]
|
|
|
|
|
public class ExpensesController : ControllerBase
|
|
|
|
|
{
|
|
|
|
|
private readonly ExpenseCRUD _expenseCrud;
|
|
|
|
|
|
|
|
|
|
public ExpensesController()
|
|
|
|
|
{
|
|
|
|
|
_expenseCrud = new ExpenseCRUD();
|
|
|
|
|
}
|
|
|
|
|
// POST: api/Expenses
|
|
|
|
|
[HttpPost]
|
|
|
|
|
[ProducesResponseType(201)] // Created
|
|
|
|
|
[ProducesResponseType(400)] // Bad Request
|
|
|
|
|
public IActionResult CreateExpense([FromBody] Expense expense) {
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_expenseCrud.AddExpense(expense);
|
|
|
|
|
return CreatedAtAction("GetExpense", new { id = expense.Id }, expense);
|
|
|
|
|
}
|
|
|
|
|
catch (System.Exception ex) {
|
|
|
|
|
return BadRequest(ex.Message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// GET: api/Expenses
|
|
|
|
|
[HttpGet("{id}")]
|
|
|
|
|
[ProducesResponseType(200)] // Created
|
2024-06-09 23:35:15 +02:00
|
|
|
|
[ProducesResponseType(404)] // Bad Request
|
2024-05-16 18:02:44 +02:00
|
|
|
|
public IActionResult GetExpense(int id)
|
|
|
|
|
{
|
|
|
|
|
var expense = _expenseCrud.GetExpense(id);
|
|
|
|
|
if (expense == null)
|
|
|
|
|
{
|
|
|
|
|
return NotFound();
|
|
|
|
|
}
|
|
|
|
|
return Ok(expense);
|
|
|
|
|
}
|
2024-05-16 21:25:07 +02:00
|
|
|
|
|
|
|
|
|
//PUT: api/Expenses
|
|
|
|
|
[HttpPut("{id}")]
|
2024-06-09 23:35:15 +02:00
|
|
|
|
[ProducesResponseType(204)]
|
|
|
|
|
[ProducesResponseType(400)]
|
2024-05-16 21:25:07 +02:00
|
|
|
|
public IActionResult UpdateExpense(int id, [FromBody] Expense expense)
|
|
|
|
|
{
|
|
|
|
|
if (id != expense.Id)
|
|
|
|
|
{
|
|
|
|
|
return BadRequest("Expense ID mismatch");
|
|
|
|
|
}
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_expenseCrud.UpdateExpense(expense);
|
|
|
|
|
return NoContent();
|
|
|
|
|
}
|
|
|
|
|
catch (System.Exception ex)
|
|
|
|
|
{
|
|
|
|
|
return BadRequest(ex.Message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpDelete("{id}")]
|
2024-06-09 23:35:15 +02:00
|
|
|
|
[ProducesResponseType(204)]
|
|
|
|
|
[ProducesResponseType(404)]
|
2024-05-16 21:25:07 +02:00
|
|
|
|
public IActionResult DeleteExpense(int id)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_expenseCrud.DeleteExpense(id);
|
|
|
|
|
return NoContent();
|
|
|
|
|
}
|
|
|
|
|
catch (System.Exception ex)
|
|
|
|
|
{
|
|
|
|
|
return NotFound(ex.Message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[HttpGet]
|
|
|
|
|
[ProducesResponseType(200)]
|
|
|
|
|
[ProducesResponseType(400)]
|
|
|
|
|
public IActionResult GetAllExpenses()
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var expenses = _expenseCrud.GetAllExpenses();
|
|
|
|
|
return Ok(expenses);
|
|
|
|
|
}
|
|
|
|
|
catch (System.Exception ex)
|
|
|
|
|
{
|
|
|
|
|
return BadRequest(ex.Message);
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-05-16 18:02:44 +02:00
|
|
|
|
}
|
2024-05-16 21:25:07 +02:00
|
|
|
|
|
2024-05-16 18:02:44 +02:00
|
|
|
|
}
|