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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
using Microsoft.EntityFrameworkCore;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Timeline.Entities;
using Timeline.Services.Exceptions;
namespace Timeline.Services
{
public interface IHighlightTimelineService
{
/// <summary>
/// Get all highlight timelines.
/// </summary>
/// <returns>A list of all highlight timelines.</returns>
Task<List<Models.Timeline>> GetHighlightTimelines();
/// <summary>
/// Add a timeline to highlight list.
/// </summary>
/// <param name="timelineName">The timeline name.</param>
/// <param name="operatorId">The user id of operator.</param>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="timelineName"/> is null.</exception>
/// <exception cref="ArgumentException">Thrown when <paramref name="timelineName"/> is not a valid timeline name.</exception>
/// <exception cref="TimelineNotExistException">Thrown when timeline with given name does not exist.</exception>
/// <exception cref="UserNotExistException">Thrown when user with given operator id does not exist.</exception>
Task AddHighlightTimeline(string timelineName, long? operatorId);
/// <summary>
/// Remove a timeline from highlight list.
/// </summary>
/// <param name="timelineName">The timeline name.</param>
/// <param name="operatorId">The user id of operator.</param>
/// <returns>True if deletion is actually performed. Otherwise false (timeline was not in the list).</returns>
/// <exception cref="ArgumentNullException">Thrown when <paramref name="timelineName"/> is null.</exception>
/// <exception cref="ArgumentException">Thrown when <paramref name="timelineName"/> is not a valid timeline name.</exception>
/// <exception cref="TimelineNotExistException">Thrown when timeline with given name does not exist.</exception>
/// <exception cref="UserNotExistException">Thrown when user with given operator id does not exist.</exception>
Task<bool> RemoveHighlightTimeline(string timelineName, long? operatorId);
}
public class HighlightTimelineService : IHighlightTimelineService
{
private readonly DatabaseContext _database;
private readonly IUserService _userService;
private readonly ITimelineService _timelineService;
public HighlightTimelineService(DatabaseContext database, IUserService userService, ITimelineService timelineService)
{
_database = database;
_userService = userService;
_timelineService = timelineService;
}
public async Task AddHighlightTimeline(string timelineName, long? operatorId)
{
if (timelineName == null)
throw new ArgumentNullException(nameof(timelineName));
var timelineId = await _timelineService.GetTimelineIdByName(timelineName);
if (operatorId.HasValue && !await _userService.CheckUserExistence(operatorId.Value))
{
throw new UserNotExistException(null, operatorId.Value, "User with given operator id does not exist.", null);
}
var alreadyIs = await _database.HighlightTimelines.AnyAsync(t => t.TimelineId == timelineId);
if (alreadyIs) return;
_database.HighlightTimelines.Add(new HighlightTimelineEntity { TimelineId = timelineId, OperatorId = operatorId });
await _database.SaveChangesAsync();
}
public async Task<List<Models.Timeline>> GetHighlightTimelines()
{
var entities = await _database.HighlightTimelines.Select(t => new { t.Id }).ToListAsync();
var result = new List<Models.Timeline>();
foreach (var entity in entities)
{
result.Add(await _timelineService.GetTimelineById(entity.Id));
}
return result;
}
public async Task<bool> RemoveHighlightTimeline(string timelineName, long? operatorId)
{
if (timelineName == null)
throw new ArgumentNullException(nameof(timelineName));
var timelineId = await _timelineService.GetTimelineIdByName(timelineName);
if (operatorId.HasValue && !await _userService.CheckUserExistence(operatorId.Value))
{
throw new UserNotExistException(null, operatorId.Value, "User with given operator id does not exist.", null);
}
var entity = await _database.HighlightTimelines.SingleOrDefaultAsync(t => t.TimelineId == timelineId);
if (entity == null) return false;
_database.HighlightTimelines.Remove(entity);
await _database.SaveChangesAsync();
return true;
}
}
}
|