mirror of
https://github.com/rjNemo/ticket_manager
synced 2026-06-06 08:46:39 +00:00
124 lines
3.6 KiB
C#
124 lines
3.6 KiB
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Authorization;
|
|
using Microsoft.AspNetCore.Mvc;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using TicketManager.Data;
|
|
using TicketManager.Models;
|
|
|
|
namespace TicketManager.Controllers
|
|
{
|
|
[Authorize]
|
|
[Route("api/[controller]")]
|
|
[ApiController]
|
|
public class AssignmentsController : ControllerBase
|
|
{
|
|
private readonly AppDbContext _context;
|
|
|
|
public AssignmentsController(AppDbContext context)
|
|
{
|
|
_context = context;
|
|
}
|
|
|
|
// GET: api/Assignments
|
|
[HttpGet]
|
|
public async Task<ActionResult<IEnumerable<Assignment>>> GetAssignments()
|
|
{
|
|
return await _context.Assignments.ToListAsync();
|
|
}
|
|
|
|
// GET: api/Assignments/5
|
|
[HttpGet("{id}")]
|
|
public async Task<ActionResult<Assignment>> GetAssignment(int id)
|
|
{
|
|
var assignment = await _context.Assignments.FindAsync(id);
|
|
|
|
if (assignment == null)
|
|
{
|
|
return NotFound();
|
|
}
|
|
|
|
return assignment;
|
|
}
|
|
|
|
// PUT: api/Assignments/5
|
|
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
|
// more details see https://aka.ms/RazorPagesCRUD.
|
|
[HttpPut("{id}")]
|
|
public async Task<IActionResult> PutAssignment(int id, Assignment assignment)
|
|
{
|
|
if (id != assignment.ProjectId)
|
|
{
|
|
return BadRequest();
|
|
}
|
|
|
|
_context.Entry(assignment).State = EntityState.Modified;
|
|
|
|
try
|
|
{
|
|
await _context.SaveChangesAsync();
|
|
}
|
|
catch (DbUpdateConcurrencyException)
|
|
{
|
|
if (!AssignmentExists(id))
|
|
{
|
|
return NotFound();
|
|
}
|
|
else
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
|
|
return NoContent();
|
|
}
|
|
|
|
// POST: api/Assignments
|
|
// To protect from overposting attacks, please enable the specific properties you want to bind to, for
|
|
// more details see https://aka.ms/RazorPagesCRUD.
|
|
[HttpPost]
|
|
public async Task<ActionResult<Assignment>> PostAssignment(Assignment assignment)
|
|
{
|
|
_context.Assignments.Add(assignment);
|
|
try
|
|
{
|
|
await _context.SaveChangesAsync();
|
|
}
|
|
catch (DbUpdateException)
|
|
{
|
|
if (AssignmentExists(assignment.ProjectId))
|
|
{
|
|
return Conflict();
|
|
}
|
|
else
|
|
{
|
|
throw;
|
|
}
|
|
}
|
|
|
|
return CreatedAtAction("GetAssignment", new { id = assignment.ProjectId }, assignment);
|
|
}
|
|
|
|
// DELETE: api/Assignments/5
|
|
[HttpDelete("{id}")]
|
|
public async Task<ActionResult<Assignment>> DeleteAssignment(int id)
|
|
{
|
|
var assignment = await _context.Assignments.FindAsync(id);
|
|
if (assignment == null)
|
|
{
|
|
return NotFound();
|
|
}
|
|
|
|
_context.Assignments.Remove(assignment);
|
|
await _context.SaveChangesAsync();
|
|
|
|
return assignment;
|
|
}
|
|
|
|
private bool AssignmentExists(int id)
|
|
{
|
|
return _context.Assignments.Any(e => e.ProjectId == id);
|
|
}
|
|
}
|
|
}
|