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
{ | |
"ReRoutes": [...], | |
"Aggregates": [...], | |
"DelegatingHandlers": [ | |
"BlackListHandler" | |
], | |
"GlobalConfiguration": {} | |
} |
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
public class BlackListHandler : DelegatingHandler | |
{ | |
protected override Task<HttpResponseMessage> SendAsync(HttpRequestMessage request, CancellationToken cancellationToken) | |
{ | |
request.Headers.TryGetValues("CLIENT_ID", out var values); | |
var clientId = values?.FirstOrDefault(); | |
if (clientId is null) | |
{ | |
return ReturnBadRequest("Request bloqueada por falta de informações"); |
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
public string Title { get; private set; } | |
... | |
public void AddTitle(string title) | |
{ | |
if (title.IsNullOrWhiteSpace()) | |
{ | |
AddError("Faltou preencher o valor 'title'"); | |
return; |
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
[Fact] | |
public void WithoutTitle_IsInvalid() | |
{ | |
var domain = new NetflixTitleBuilder() | |
.WithCast("cast example") | |
.WithDescription("description example") | |
.WithId(Guid.NewGuid()) | |
.Build(); | |
Assert.False(domain.IsValid()); |
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
public async Task<DirectorsByCountryDto> GetDirectorsByCountry(string countryName) | |
{ | |
... | |
try | |
{ | |
var cqlQuery = @"select director as Name from netflix_titles where country=? allow filtering"; | |
var returnQuery = await _cassandraContext.SelectAsync<string>(cqlQuery, countryName); |
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
public async Task<NetflixTitleDto> Create(NetflixTitleDto dto) | |
{ | |
try | |
{ | |
dto.Id = Guid.NewGuid(); | |
var netFlixTitleDomain = new NetflixTitleBuilder() | |
.WithTitle(dto.Title) | |
.WithDirector(dto.Director) | |
.WithCountry(dto.Country) |
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
private ICreateNetflixTitleServices MockServiceForCreate() | |
{ | |
var mockCassandraContext = new Mock<ICassandraContext>(); | |
mockCassandraContext | |
.Setup(m => m.InsertAsync<NetflixTitle>(It.IsAny<NetflixTitle>())) | |
.Returns(() => Task.CompletedTask); | |
return new CreateNetflixTitleServices(mockCassandraContext.Object); | |
} |
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
[Fact] | |
public async Task Create_DomainIsValid() | |
{ | |
var dto = new NetflixTitleDto | |
{ | |
Director = "director", | |
Country = "country", | |
DurationMin = 1, | |
Cast = "cast", | |
Title = "title" |
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
def lambda_handler(event, context): | |
try: | |
print('Started the Lambda function') | |
bucketNameSource = event['bucket_name_source'] | |
bucketNameDest = event['bucket_name_dest'] | |
archiveNameDest = event['archive_name_dest'] | |
archivePublicAccess = event['archive_public_access'] | |
amountOfFilesToUpload = event['amount_of_files_to_upload'] |
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
print('Source Bucket:', bucketNameSource) | |
print('Target archive:', bucketNameDest + '/' + archiveNameDest) | |
objects = aws_ext.all_objects_from_bucket(bucketNameSource) | |
count_objects = aws_ext.count_objects(objects) | |
amount_objects = amountOfFilesToUpload | |
if(amount_objects == 0): | |
amount_objects = count_objects |