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
|
using Microsoft.AspNetCore.Mvc;
using System.Collections.Generic;
using System.Threading.Tasks;
using Timeline.Controllers;
using Timeline.Entities;
using Timeline.Models.Http;
using Timeline.Services.User;
namespace Timeline.Services.Mapper
{
public class UserMapper
{
private readonly DatabaseContext _database;
private readonly IUserPermissionService _userPermissionService;
public UserMapper(DatabaseContext database, IUserPermissionService userPermissionService)
{
_database = database;
_userPermissionService = userPermissionService;
}
public async Task<HttpUser> MapToHttp(UserEntity entity, IUrlHelper urlHelper)
{
return new HttpUser(
uniqueId: entity.UniqueId,
username: entity.Username,
nickname: string.IsNullOrEmpty(entity.Nickname) ? entity.Username : entity.Nickname,
permissions: (await _userPermissionService.GetPermissionsOfUserAsync(entity.Id, false)).ToStringList(),
links: new HttpUserLinks(
self: urlHelper.ActionLink(nameof(UserController.Get), nameof(UserController)[0..^nameof(Controller).Length], new { entity.Username }),
avatar: urlHelper.ActionLink(nameof(UserAvatarController.Get), nameof(UserAvatarController)[0..^nameof(Controller).Length], new { entity.Username }),
timeline: urlHelper.ActionLink(nameof(TimelineController.TimelineGet), nameof(TimelineController)[0..^nameof(Controller).Length], new { timeline = "@" + entity.Username })
)
);
}
public async Task<List<HttpUser>> MapToHttp(List<UserEntity> entities, IUrlHelper urlHelper)
{
var result = new List<HttpUser>();
foreach (var entity in entities)
{
result.Add(await MapToHttp(entity, urlHelper));
}
return result;
}
}
}
|