-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d1a1cd3
commit dee881d
Showing
4 changed files
with
54 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 28 additions & 0 deletions
28
...rd.Api/Features/Game/ImportExport/Requests/DownloadExportPackage/DownloadExportPackage.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
using Gameboard.Api.Features.Users; | ||
using Gameboard.Api.Structure.MediatR; | ||
using MediatR; | ||
|
||
namespace Gameboard.Api.Features.Games; | ||
|
||
public record DownloadExportPackageRequest(string ExportBatchId) : IRequest<byte[]>; | ||
|
||
internal sealed class DownloadExportPackageHandler | ||
( | ||
IGameImportExportService importExport, | ||
IValidatorService validator | ||
) : IRequestHandler<DownloadExportPackageRequest, byte[]> | ||
{ | ||
private readonly IGameImportExportService _importExport = importExport; | ||
private readonly IValidatorService _validator = validator; | ||
|
||
public async Task<byte[]> Handle(DownloadExportPackageRequest request, CancellationToken cancellationToken) | ||
{ | ||
await _validator | ||
.Auth(c => c.Require(PermissionKey.Games_CreateEditDelete)) | ||
.Validate(cancellationToken); | ||
|
||
return await _importExport.GetExportedPackageContent(request.ExportBatchId, cancellationToken); | ||
} | ||
} |