InternshipRegistration - EndPoint implementation #34
@ -1,4 +1,5 @@
|
|||||||
using AutoMapper;
|
using System;
|
||||||
|
using AutoMapper;
|
||||||
using InternshipSystem.Api.Queries;
|
using InternshipSystem.Api.Queries;
|
||||||
using InternshipSystem.Core;
|
using InternshipSystem.Core;
|
||||||
|
|
||||||
|
@ -1,7 +1,6 @@
|
|||||||
using System;
|
using System;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using InternshipSystem.Api.Result;
|
using InternshipSystem.Api.Result;
|
||||||
using InternshipSystem.Core;
|
|
||||||
using InternshipSystem.Repository;
|
using InternshipSystem.Repository;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
@ -1,10 +1,14 @@
|
|||||||
using System;
|
using System;
|
||||||
|
using System.Linq;
|
||||||
using System.Threading;
|
using System.Threading;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
|
using AutoMapper;
|
||||||
using InternshipSystem.Api.Queries;
|
using InternshipSystem.Api.Queries;
|
||||||
|
using InternshipSystem.Core;
|
||||||
using InternshipSystem.Repository;
|
using InternshipSystem.Repository;
|
||||||
using Microsoft.AspNetCore.Http;
|
using Microsoft.AspNetCore.Http;
|
||||||
using Microsoft.AspNetCore.Mvc;
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
using Microsoft.EntityFrameworkCore;
|
||||||
|
|
||||||
namespace InternshipSystem.Api.Controllers
|
namespace InternshipSystem.Api.Controllers
|
||||||
{
|
{
|
||||||
@ -12,10 +16,12 @@ namespace InternshipSystem.Api.Controllers
|
|||||||
public class InternshipRegistrationController : ControllerBase
|
public class InternshipRegistrationController : ControllerBase
|
||||||
{
|
{
|
||||||
private InternshipDbContext Context { get; }
|
private InternshipDbContext Context { get; }
|
||||||
|
private IMapper Mapper { get; }
|
||||||
|
|
||||||
public InternshipRegistrationController(InternshipDbContext context)
|
public InternshipRegistrationController(InternshipDbContext context, IMapper mapper)
|
||||||
{
|
{
|
||||||
Context = context;
|
Context = context;
|
||||||
|
Mapper = mapper;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@ -29,7 +35,84 @@ namespace InternshipSystem.Api.Controllers
|
|||||||
[ProducesResponseType(StatusCodes.Status200OK)]
|
[ProducesResponseType(StatusCodes.Status200OK)]
|
||||||
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
[ProducesResponseType(StatusCodes.Status400BadRequest)]
|
||||||
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
|
||||||
public async Task<ActionResult> SubmitRegistrationForm([FromBody] RegistrationFormQuery registrationQuery, CancellationToken cancellationToken) =>
|
public async Task<ActionResult> SubmitRegistrationForm([FromBody] RegistrationFormQuery registrationQuery,
|
||||||
throw new NotImplementedException();
|
CancellationToken cancellationToken)
|
||||||
|
{
|
||||||
|
var validator = new RegistrationFormQuery.Validator();
|
||||||
|
var validationResult = await validator.ValidateAsync(registrationQuery, cancellationToken);
|
||||||
|
|
||||||
|
if (!validationResult.IsValid)
|
||||||
|
{
|
||||||
|
return BadRequest(validationResult.ToString());
|
||||||
|
}
|
||||||
|
|
||||||
|
var internship = await GetCurrentStudentInternship();
|
||||||
|
|
||||||
|
var internshipRegistration = internship.InternshipRegistration;
|
||||||
|
|
||||||
|
if (registrationQuery.Company != null)
|
||||||
|
{
|
||||||
|
var company = registrationQuery.Company.Id.HasValue
|
||||||
|
? await Context.Companies.SingleAsync(c => c.Id == registrationQuery.Company.Id,
|
||||||
|
cancellationToken: cancellationToken)
|
||||||
|
: Company.CreateCompany(registrationQuery.Company.Nip, registrationQuery.Company.Name);
|
||||||
|
|
||||||
|
internshipRegistration.UpdateCompany(company);
|
||||||
|
}
|
||||||
|
|
||||||
|
var officeForm = registrationQuery.BranchOffice;
|
||||||
|
if (officeForm != null)
|
||||||
|
{
|
||||||
|
BranchOffice branch;
|
||||||
|
|
||||||
|
if (officeForm.Id.HasValue)
|
||||||
|
{
|
||||||
|
branch = await Context.Entry(internshipRegistration.Company)
|
||||||
|
.Collection(c => c.Branches)
|
||||||
|
.Query()
|
||||||
|
.SingleAsync(o => o.Id == officeForm.Id, cancellationToken: cancellationToken);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
branch = BranchOffice.CreateBranch(officeForm.Country, officeForm.City, officeForm.PostalCode,
|
||||||
|
officeForm.Street, officeForm.Building);
|
||||||
|
internshipRegistration.Company.AddBranchOffice(branch);
|
||||||
|
}
|
||||||
|
|
||||||
|
internshipRegistration.UpdateBranch(branch);
|
||||||
|
}
|
||||||
|
|
||||||
|
internshipRegistration.Start = registrationQuery.Start ?? internshipRegistration.Start;
|
||||||
|
internshipRegistration.End = registrationQuery.End ?? internshipRegistration.End;
|
||||||
|
|
||||||
|
var editionId = Guid.Parse(User.Claims.First(c => c.Type == "Edition").Value);
|
||||||
|
|
||||||
|
var edition = await Context.Editions
|
||||||
|
.FirstAsync(e => e.Id == editionId, cancellationToken);
|
||||||
|
|
||||||
|
if (registrationQuery.Type.HasValue && edition.IsInternshipTypeAllowed(registrationQuery.Type.Value))
|
||||||
|
{
|
||||||
|
return BadRequest("Edycja nie posiada takiego rodzaju zatrudnienia w dostępnych zatrudnieniach");
|
||||||
|
}
|
||||||
|
|
||||||
|
internshipRegistration.Type = registrationQuery.Type ?? internshipRegistration.Type;
|
||||||
|
|
||||||
|
await Context.SaveChangesAsync(cancellationToken);
|
||||||
|
return Ok();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<Internship> GetCurrentStudentInternship()
|
||||||
|
{
|
||||||
|
// TODO: rewrite when authentication will be implemented
|
||||||
|
var edition = await Context
|
||||||
|
.Editions
|
||||||
|
.FirstAsync();
|
||||||
|
|
||||||
|
return await Context.Entry(edition)
|
||||||
|
.Collection(e => e.Internships)
|
||||||
|
.Query()
|
||||||
|
.Include(i => i.InternshipRegistration)
|
||||||
|
.FirstAsync();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
36
src/InternshipSystem.Api/Queries/BranchOfficeForm.cs
Normal file
36
src/InternshipSystem.Api/Queries/BranchOfficeForm.cs
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
using FluentValidation;
|
||||||
|
|
||||||
|
namespace InternshipSystem.Api.Queries
|
||||||
|
{
|
||||||
|
public class BranchOfficeForm
|
||||||
|
{
|
||||||
|
public long? Id { get; set; }
|
||||||
|
public string Street { get; set; }
|
||||||
|
public string Building { get; set; }
|
||||||
|
public string City { get; set; }
|
||||||
|
public string PostalCode { get; set; }
|
||||||
|
public string Country { get; set; }
|
||||||
|
|
||||||
|
public class Validator : AbstractValidator<BranchOfficeForm>
|
||||||
|
{
|
||||||
|
public Validator()
|
||||||
|
{
|
||||||
|
RuleFor(b => b.Id).NotNull()
|
||||||
|
.When(c =>
|
||||||
|
!string.IsNullOrEmpty(c.Country) || !string.IsNullOrEmpty(c.City) ||
|
||||||
|
!string.IsNullOrEmpty(c.PostalCode) || !string.IsNullOrEmpty(c.Street) ||
|
||||||
|
!string.IsNullOrEmpty(c.Building));
|
||||||
|
RuleFor(b => b.Country).NotNull()
|
||||||
|
.When(b => !b.Id.HasValue);
|
||||||
|
RuleFor(b => b.City).NotNull()
|
||||||
|
.When(b => !b.Id.HasValue);
|
||||||
|
RuleFor(b => b.PostalCode).NotNull()
|
||||||
|
.When(b => !b.Id.HasValue);
|
||||||
|
RuleFor(b => b.Street).NotNull()
|
||||||
|
.When(b => !b.Id.HasValue);
|
||||||
|
RuleFor(b => b.Building).NotNull()
|
||||||
|
.When(b => !b.Id.HasValue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
24
src/InternshipSystem.Api/Queries/CompanyForm.cs
Normal file
24
src/InternshipSystem.Api/Queries/CompanyForm.cs
Normal file
@ -0,0 +1,24 @@
|
|||||||
|
using FluentValidation;
|
||||||
|
|
||||||
|
namespace InternshipSystem.Api.Queries
|
||||||
|
{
|
||||||
|
public class CompanyForm
|
||||||
|
{
|
||||||
|
public long? Id { get; set; }
|
||||||
|
public string Nip { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
|
||||||
|
public class Validator : AbstractValidator<CompanyForm>
|
||||||
|
{
|
||||||
|
public Validator()
|
||||||
|
{
|
||||||
|
RuleFor(c => c.Id).NotNull()
|
||||||
|
.When(c => !string.IsNullOrEmpty(c.Nip) || !string.IsNullOrEmpty(c.Name));
|
||||||
|
RuleFor(c => c.Nip).NotEmpty()
|
||||||
|
.When(c => !c.Id.HasValue);
|
||||||
|
RuleFor(c => c.Name).NotEmpty()
|
||||||
|
.When(c => !c.Id.HasValue);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -1,15 +1,28 @@
|
|||||||
using System;
|
using System;
|
||||||
using InternshipSystem.Core;
|
using FluentValidation;
|
||||||
using InternshipSystem.Core.Entity.Internship;
|
using InternshipSystem.Core.Entity.Internship;
|
||||||
|
|
||||||
namespace InternshipSystem.Api.Queries
|
namespace InternshipSystem.Api.Queries
|
||||||
{
|
{
|
||||||
public class RegistrationFormQuery
|
public class RegistrationFormQuery
|
||||||
{
|
{
|
||||||
public Company Company { get; set; }
|
public CompanyForm Company { get; set; }
|
||||||
public BranchOffice BranchAddress { get; set; }
|
public BranchOfficeForm BranchOffice { get; set; }
|
||||||
public DateTime Start { get; set; }
|
public DateTime? Start { get; set; }
|
||||||
public DateTime End { get; set; }
|
public DateTime? End { get; set; }
|
||||||
public InternshipType Type { get; set; }
|
public InternshipType? Type { get; set; }
|
||||||
|
|
||||||
|
public class Validator : AbstractValidator<RegistrationFormQuery>
|
||||||
|
{
|
||||||
|
public Validator()
|
||||||
|
{
|
||||||
|
RuleFor(rfq => rfq.Company)
|
||||||
|
.SetValidator(new CompanyForm.Validator());
|
||||||
|
RuleFor(rfq => rfq.BranchOffice)
|
||||||
|
.SetValidator(new BranchOfficeForm.Validator());
|
||||||
|
RuleFor(rfq => rfq.BranchOffice).NotNull()
|
||||||
|
.When(rfq => rfq.Company != null);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -2,8 +2,30 @@
|
|||||||
{
|
{
|
||||||
public class BranchOffice
|
public class BranchOffice
|
||||||
{
|
{
|
||||||
|
public BranchOffice()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
private BranchOffice(BranchAddress address)
|
||||||
|
{
|
||||||
|
Address = address;
|
||||||
|
}
|
||||||
|
|
||||||
public long Id { get; set; }
|
public long Id { get; set; }
|
||||||
|
|
||||||
public BranchAddress Address { get; set; }
|
public BranchAddress Address { get; set; }
|
||||||
|
|
||||||
|
public static BranchOffice CreateBranch(string country, string city, string postalCode, string street, string building)
|
||||||
|
{
|
||||||
|
var address = new BranchAddress
|
||||||
|
{
|
||||||
|
Building = building,
|
||||||
|
City = city,
|
||||||
|
Country = country,
|
||||||
|
Street = street,
|
||||||
|
PostalCode = postalCode
|
||||||
|
};
|
||||||
|
|
||||||
|
return new BranchOffice(address);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -8,22 +8,22 @@ namespace InternshipSystem.Core
|
|||||||
public long Id { get; set; }
|
public long Id { get; set; }
|
||||||
public Nip Nip { get; set; }
|
public Nip Nip { get; set; }
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public RangeOfActivity Range { get; set; }
|
|
||||||
public List<BranchOffice> Branches { get; set; }
|
public List<BranchOffice> Branches { get; set; }
|
||||||
public Uri SiteAddress { get; set; }
|
|
||||||
|
|
||||||
public Company CreateCompany(string nip, RangeOfActivity range, string name)
|
public static Company CreateCompany(string nip, string name) =>
|
||||||
{
|
new Company
|
||||||
return new Company
|
|
||||||
{
|
{
|
||||||
Nip = nip,
|
Nip = nip,
|
||||||
Range = range,
|
|
||||||
Name = name
|
Name = name
|
||||||
};
|
};
|
||||||
}
|
|
||||||
|
|
||||||
public void AddBranchAddress(BranchAddress branch)
|
public void AddBranchAddress(BranchAddress branch)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public void AddBranchOffice(BranchOffice createBranch)
|
||||||
|
{
|
||||||
|
Branches.Add(createBranch);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -14,6 +14,7 @@ namespace InternshipSystem.Core
|
|||||||
public Course Course { get; set; }
|
public Course Course { get; set; }
|
||||||
public List<Internship> Internships { get; set; }
|
public List<Internship> Internships { get; set; }
|
||||||
public List<EditionSubject> AvailableSubjects { get; set; }
|
public List<EditionSubject> AvailableSubjects { get; set; }
|
||||||
|
public List<InternshipType> AvailableInternshipTypes { get; set; }
|
||||||
|
|
||||||
public Edition CreateEdition(DateTime start, DateTime end, DateTime reportingStart)
|
public Edition CreateEdition(DateTime start, DateTime end, DateTime reportingStart)
|
||||||
{
|
{
|
||||||
@ -24,5 +25,10 @@ namespace InternshipSystem.Core
|
|||||||
ReportingStart = reportingStart
|
ReportingStart = reportingStart
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public bool IsInternshipTypeAllowed(InternshipType registrationQueryType)
|
||||||
|
{
|
||||||
|
return AvailableInternshipTypes.Contains(registrationQueryType);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,6 +1,5 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using InternshipSystem.Core.ValueObject;
|
|
||||||
|
|
||||||
namespace InternshipSystem.Core
|
namespace InternshipSystem.Core
|
||||||
{
|
{
|
||||||
@ -14,12 +13,14 @@ namespace InternshipSystem.Core
|
|||||||
public List<Document> Approvals { get; set; }
|
public List<Document> Approvals { get; set; }
|
||||||
public List<Document> Documentation { get; set; }
|
public List<Document> Documentation { get; set; }
|
||||||
|
|
||||||
|
public Edition Edition { get; set; }
|
||||||
|
|
||||||
public void UpdateDocument(Document document)
|
public void UpdateDocument(Document document)
|
||||||
{
|
{
|
||||||
var oldDocument = Documentation.First(d => d.Id == document.Id);
|
var oldDocument = Documentation.First(d => d.Id == document.Id);
|
||||||
|
|
||||||
oldDocument.Description = document.Description;
|
oldDocument.Description = document.Description ?? oldDocument.Description;
|
||||||
oldDocument.Scan = document.Scan;
|
oldDocument.Scan = document.Scan ?? oldDocument.Scan;
|
||||||
oldDocument.Type = document.Type;
|
oldDocument.Type = document.Type;
|
||||||
oldDocument.State = DocumentState.Submitted;
|
oldDocument.State = DocumentState.Submitted;
|
||||||
}
|
}
|
||||||
|
@ -12,5 +12,15 @@ namespace InternshipSystem.Core
|
|||||||
public DateTime End { get; set; }
|
public DateTime End { get; set; }
|
||||||
public InternshipType Type { get; set; }
|
public InternshipType Type { get; set; }
|
||||||
public DocumentState State { get; set; }
|
public DocumentState State { get; set; }
|
||||||
|
|
||||||
|
public void UpdateCompany(Company newCompany)
|
||||||
|
{
|
||||||
|
Company = newCompany;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void UpdateBranch(BranchOffice branch)
|
||||||
|
{
|
||||||
|
BranchAddress = branch;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,9 +1,14 @@
|
|||||||
namespace InternshipSystem.Core.Entity.Internship
|
namespace InternshipSystem.Core.Entity.Internship
|
||||||
{
|
{
|
||||||
public class InternshipType
|
public enum InternshipType
|
||||||
{
|
{
|
||||||
public long Id { get; set; }
|
FreeInternship,
|
||||||
public string Type { get; set; }
|
GraduateInternship,
|
||||||
public string Description { get; set; }
|
FreeApprenticeship,
|
||||||
|
PaidApprenticeship,
|
||||||
|
ForeignInternship,
|
||||||
|
UOP,
|
||||||
|
UD,
|
||||||
|
UZ
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -1,8 +1,12 @@
|
|||||||
namespace InternshipSystem.Core
|
using System;
|
||||||
|
|
||||||
|
namespace InternshipSystem.Core
|
||||||
{
|
{
|
||||||
public class Report
|
public class Report
|
||||||
{
|
{
|
||||||
public long Id { get; set; }
|
public long Id { get; set; }
|
||||||
public DocumentState State { get; set; }
|
public DocumentState State { get; set; }
|
||||||
|
public RangeOfActivity Range { get; set; }
|
||||||
|
public Uri SiteAddress { get; set; }
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -26,9 +26,8 @@ namespace InternshipSystem.Repository
|
|||||||
{
|
{
|
||||||
Id = 1,
|
Id = 1,
|
||||||
Name = "Intel",
|
Name = "Intel",
|
||||||
SiteAddress = new Uri("https://www.intel.com/content/www/us/en/jobs/locations/poland.html"),
|
// SiteAddress = new Uri("https://www.intel.com/content/www/us/en/jobs/locations/poland.html"),
|
||||||
Nip = "9570752316",
|
Nip = "9570752316",
|
||||||
Range = RangeOfActivity.International,
|
|
||||||
Branches = new List<BranchOffice>
|
Branches = new List<BranchOffice>
|
||||||
{
|
{
|
||||||
new BranchOffice
|
new BranchOffice
|
||||||
@ -70,9 +69,8 @@ namespace InternshipSystem.Repository
|
|||||||
{
|
{
|
||||||
Id = 2,
|
Id = 2,
|
||||||
Name = "Asseco Poland",
|
Name = "Asseco Poland",
|
||||||
SiteAddress = new Uri("http://pl.asseco.com"),
|
// SiteAddress = new Uri("http://pl.asseco.com"),
|
||||||
Nip = "5842068320",
|
Nip = "5842068320",
|
||||||
Range = RangeOfActivity.National,
|
|
||||||
Branches = new List<BranchOffice>
|
Branches = new List<BranchOffice>
|
||||||
{
|
{
|
||||||
new BranchOffice
|
new BranchOffice
|
||||||
@ -141,6 +139,13 @@ namespace InternshipSystem.Repository
|
|||||||
{
|
{
|
||||||
Name = "Informatyka",
|
Name = "Informatyka",
|
||||||
},
|
},
|
||||||
|
AvailableInternshipTypes = new List<InternshipType>
|
||||||
|
{
|
||||||
|
InternshipType.UOP,
|
||||||
|
InternshipType.UZ,
|
||||||
|
InternshipType.UD,
|
||||||
|
InternshipType.FreeInternship
|
||||||
|
},
|
||||||
Internships = new List<Internship>(),
|
Internships = new List<Internship>(),
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
@ -162,10 +167,7 @@ namespace InternshipSystem.Repository
|
|||||||
InternshipRegistration = new InternshipRegistration
|
InternshipRegistration = new InternshipRegistration
|
||||||
{
|
{
|
||||||
Company = Context.Companies.First(c => c.Id.Equals(1)), //Intel
|
Company = Context.Companies.First(c => c.Id.Equals(1)), //Intel
|
||||||
Type = new InternshipType
|
Type = InternshipType.UOP,
|
||||||
{
|
|
||||||
Type = "UOP"
|
|
||||||
},
|
|
||||||
Start = new DateTime(2000, 7, 1),
|
Start = new DateTime(2000, 7, 1),
|
||||||
End = new DateTime(2000, 8, 30),
|
End = new DateTime(2000, 8, 30),
|
||||||
State = DocumentState.Submitted,
|
State = DocumentState.Submitted,
|
||||||
@ -215,10 +217,7 @@ namespace InternshipSystem.Repository
|
|||||||
InternshipRegistration = new InternshipRegistration
|
InternshipRegistration = new InternshipRegistration
|
||||||
{
|
{
|
||||||
Company = Context.Companies.First(c => c.Id.Equals(2)), //Asseco
|
Company = Context.Companies.First(c => c.Id.Equals(2)), //Asseco
|
||||||
Type = new InternshipType
|
Type = InternshipType.UZ,
|
||||||
{
|
|
||||||
Type = "UZ"
|
|
||||||
},
|
|
||||||
Start = new DateTime(2000, 7, 1),
|
Start = new DateTime(2000, 7, 1),
|
||||||
End = new DateTime(2000, 8, 30),
|
End = new DateTime(2000, 8, 30),
|
||||||
State = DocumentState.Submitted,
|
State = DocumentState.Submitted,
|
||||||
|
Loading…
Reference in New Issue
Block a user