make proper result type for update (#67)

make proper result type for update

Co-authored-by: MaxchilKH <m.w.bohdanowicz@gmail.com>
This commit is contained in:
maxchil 2020-10-18 10:24:35 +02:00
parent 6e7bdb72af
commit df1834d325
6 changed files with 41 additions and 20 deletions

View File

@ -71,11 +71,11 @@ namespace InternshipSystem.Api.Controllers
try
{
var result = await useCase.UpdateInternshipRegistration(registrationCommand, cancellationToken);
var (status, result) = await useCase.UpdateInternshipRegistration(registrationCommand, cancellationToken);
await _context.SaveChangesAsync(cancellationToken);
return Ok(result);
return new JsonResult(new {Status = status, Errors = result});
}
catch (ArgumentException e)
{

View File

@ -30,7 +30,7 @@ namespace InternshipSystem.Api.UseCases
subjectRegistration = internshipRegistration;
}
public async Task<string> UpdateInternshipRegistration(
public async Task<(DocumentState State, IEnumerable<string>)> UpdateInternshipRegistration(
UpdateRegistrationForm registrationCommand,
CancellationToken cancellationToken)
{

View File

@ -31,8 +31,12 @@ namespace InternshipSystem.Core
{
public Validator()
{
RuleFor(x => x.Nip).NotNull();
RuleFor(x => x.Name).NotNull();
RuleFor(x => x.Nip)
.NotEmpty()
.WithMessage("error.company.nip.empty");
RuleFor(x => x.Name)
.NotEmpty()
.WithMessage("error.company.name.empty");
}
}
}

View File

@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using FluentValidation;
using InternshipSystem.Core.UglyOrmArtifacts;
@ -26,7 +27,7 @@ namespace InternshipSystem.Core.Entity.Internship
}
public string ValidateStatus(Edition edition)
public (DocumentState State, IEnumerable<string>) ValidateStatus(Edition edition)
{
var validator = new Validator(edition);
@ -34,7 +35,7 @@ namespace InternshipSystem.Core.Entity.Internship
State = result.IsValid ? DocumentState.Submitted : DocumentState.Draft;
return result.ToString();
return (State, result.Errors.Select(failure => failure.ToString()));
}
public class Validator : AbstractValidator<InternshipRegistration>
@ -52,18 +53,25 @@ namespace InternshipSystem.Core.Entity.Internship
.NotNull();
RuleFor(x => x.Subjects)
.NotEmpty()
.Must(s => edition.AreSubjectsAvailable(s.Select(su => su.InternshipSubjectId)));
.Must(s => edition.AreSubjectsAvailable(s.Select(su => su.InternshipSubjectId)))
.WithMessage("error.subjects.not_available");
RuleFor(x => x.Type)
.NotNull()
.Must(edition.IsTypeAvailable);
.Must(edition.IsTypeAvailable)
.WithMessage("error.type.not_available");
RuleFor(x => x.Start)
.GreaterThanOrEqualTo(edition.EditionStart)
.LessThan(x => x.End)
.NotEmpty();
.NotEmpty()
.WithMessage("error.start_date.empty");
RuleFor(x => x.End)
.LessThanOrEqualTo(edition.EditionFinish)
.GreaterThan(x => x.Start)
.NotEmpty();
.NotEmpty()
.WithMessage("error.end_date.empty");
RuleFor(x => x.DeclaredHours)
.NotEmpty()
.WithMessage("error.declared_hours.empty");
}
}
}

View File

@ -16,15 +16,20 @@ namespace InternshipSystem.Core
public Validator()
{
RuleFor(x => x.Country)
.NotEmpty();
.NotEmpty()
.WithMessage("error.branch.country.empty");
RuleFor(x => x.City)
.NotEmpty();
.NotEmpty()
.WithMessage("error.branch.city.empty");
RuleFor(x => x.PostalCode)
.NotEmpty();
.NotEmpty()
.WithMessage("error.branch.postal_code.empty");
RuleFor(x => x.Street)
.NotEmpty();
.NotEmpty()
.WithMessage("error.branch.street.empty");
RuleFor(x => x.Building)
.NotEmpty();
.NotEmpty()
.WithMessage("error.branch.building.empty");
}
}
}

View File

@ -22,13 +22,17 @@ namespace InternshipSystem.Core
public Validate()
{
RuleFor(x => x.FirstName)
.NotEmpty();
.NotEmpty()
.WithMessage("error.mentor.first_name.empty");
RuleFor(x => x.LastName)
.NotEmpty();
.NotEmpty()
.WithMessage("error.mentor.last_name.empty");
RuleFor(x => x.Email)
.NotEmpty();
.NotEmpty()
.WithMessage("error.mentor.email.empty");
RuleFor(x => x.PhoneNumber)
.NotEmpty();
.NotEmpty()
.WithMessage("error.mentor.phone_number.empty");
}
}