-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathShareController.cs
76 lines (65 loc) · 2.35 KB
/
ShareController.cs
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
using Application.Commands;
using Domain.Shared.Entities;
using MediatR;
using Microsoft.AspNetCore.Mvc;
using Presentation.Abstractions;
namespace Presentation.Controllers
{
[Route("api/[controller]")]
public sealed class ShareController : ApiController
{
public ShareController(ISender sender) : base(sender)
{
}
[HttpGet]
[Route(nameof(GetShares))]
public async Task<IActionResult> GetShares(CancellationToken cancellation)
{
throw new NotImplementedException();
}
[HttpDelete]
[Route(nameof(GetShares))]
public async Task<IActionResult> UnlinkShare(ObjectIdAndCreatedByUserIdDTO shareIdPair, CancellationToken cancellation)
{
throw new NotImplementedException();
}
/// <summary>
/// Takes in an array of ShareFolderDTOs, which individually allow sharing of one folder to multiple users
/// </summary>
[HttpPost]
[Route(nameof(ShareFolders))]
public Task<IActionResult> ShareFolders(ShareFolderDTO[] incomingShares)
{
throw new NotImplementedException();
}
/// <summary>
/// Takes in an array of ShareMediaBTOs, which individually allow sharing of multiple media to multiple users
/// </summary>
[HttpPost]
[Route(nameof(ShareMedias))]
public Task<IActionResult> ShareMedias(ShareMediasDTO[] incomingShares)
{
throw new NotImplementedException();
}
public class ShareFolderDTO
{
public ShareFolderDTO(Guid[] shareToUserIds, ObjectIdAndCreatedByUserIdDTO folderDetails)
{
SharedToUserIds = shareToUserIds;
FediaDetails = folderDetails;
}
public Guid[] SharedToUserIds { get; set; }
public ObjectIdAndCreatedByUserIdDTO FediaDetails { get; set; }
}
public class ShareMediasDTO
{
public ShareMediasDTO(Guid[] shareToUserIds, ObjectIdAndCreatedByUserIdDTO[] mediaDetails)
{
SharedToUserIds = shareToUserIds;
MediaDetails = mediaDetails;
}
public Guid[] SharedToUserIds { get; set; }
public ObjectIdAndCreatedByUserIdDTO[] MediaDetails { get; set; }
}
}
}