blob: 362e430ff0b020bae8718bbb38e2fa5466b66fe9 (
plain) (
blame)
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
56
57
58
59
60
61
62
63
64
65
|
namespace IOL.GreatOffice.Api.Endpoints.V1.Entries;
public class CreateEntryRoute : RouteBaseSync.WithRequest<TimeEntry.TimeEntryDto>.WithActionResult<TimeEntry.TimeEntryDto>
{
private readonly AppDbContext _context;
public CreateEntryRoute(AppDbContext context) {
_context = context;
}
/// <summary>
/// Create a time entry.
/// </summary>
/// <param name="timeEntryTimeEntryDto"></param>
/// <returns></returns>
[ApiVersion(ApiSpecV1.VERSION_STRING)]
[BasicAuthentication(AppConstants.TOKEN_ALLOW_CREATE)]
[ProducesResponseType(200)]
[ProducesResponseType(400, Type = typeof(ErrorResult))]
[ProducesResponseType(404, Type = typeof(ErrorResult))]
[HttpPost("~/v{version:apiVersion}/entries/create")]
public override ActionResult<TimeEntry.TimeEntryDto> Handle(TimeEntry.TimeEntryDto timeEntryTimeEntryDto) {
if (timeEntryTimeEntryDto.Stop == default) {
return BadRequest(new ErrorResult("Invalid form", "A stop date is required"));
}
if (timeEntryTimeEntryDto.Start == default) {
return BadRequest(new ErrorResult("Invalid form", "A start date is required"));
}
if (timeEntryTimeEntryDto.Category == default) {
return BadRequest(new ErrorResult("Invalid form", "A category is required"));
}
var category = _context.TimeCategories
.Where(c => c.UserId == LoggedInUser.Id)
.SingleOrDefault(c => c.Id == timeEntryTimeEntryDto.Category.Id);
if (category == default) {
return NotFound(new ErrorResult("Not found", $"Could not find category {timeEntryTimeEntryDto.Category.Name}"));
}
var entry = new TimeEntry(LoggedInUser.Id) {
Category = category,
Start = timeEntryTimeEntryDto.Start.ToUniversalTime(),
Stop = timeEntryTimeEntryDto.Stop.ToUniversalTime(),
Description = timeEntryTimeEntryDto.Description,
};
if (timeEntryTimeEntryDto.Labels?.Count > 0) {
var labels = _context.TimeLabels
.Where(c => c.UserId == LoggedInUser.Id)
.Where(c => timeEntryTimeEntryDto.Labels.Select(p => p.Id).Contains(c.Id))
.ToList();
if (labels.Count != timeEntryTimeEntryDto.Labels.Count) {
return NotFound(new ErrorResult("Not found", "Could not find all of the specified labels"));
}
entry.Labels = labels;
}
_context.TimeEntries.Add(entry);
_context.SaveChanges();
return Ok(entry.AsDto);
}
}
|