use of py.org.fundacionparaguaya.pspserver.surveys.dtos.NewSurveyDefinition in project FP-PSP-SERVER by FundacionParaguaya.
the class SurveyServiceImpl method validateSchemas.
private ValidationResults validateSchemas(NewSurveyDefinition surveyDefinition) {
ValidationResults results = ValidationSupport.validResults();
MultipleSchemaValidator schemaValidator = all(presentInSchema(), markedAsRequired());
propertyAttributeSupport.getPropertyAttributes().stream().filter(attr -> attr.getStoptLightType() == StopLightType.MANDATORY).forEach(attr -> {
results.addAll(schemaValidator.apply(surveyDefinition.getSurveySchema(), attr.getPropertySchemaName(), null));
});
return results;
}
use of py.org.fundacionparaguaya.pspserver.surveys.dtos.NewSurveyDefinition in project FP-PSP-SERVER by FundacionParaguaya.
the class SurveyServiceImpl method addSurveyDefinition.
@Override
public SurveyDefinition addSurveyDefinition(NewSurveyDefinition surveyDefinition) {
ValidationResults results = validateSchemas(surveyDefinition);
if (!results.isValid()) {
throw new CustomParameterizedException("Invalid Survey Schema", results.asMap());
}
SurveyEntity entity = this.repo.save(SurveyEntity.of(surveyDefinition.getTitle(), surveyDefinition.getDescription(), new SurveyDefinition().surveySchema(surveyDefinition.getSurveySchema()).surveyUISchema(surveyDefinition.getSurveyUISchema())));
if (surveyDefinition.getOrganizations() != null && surveyDefinition.getOrganizations().size() > 0) {
for (OrganizationDTO organization : surveyDefinition.getOrganizations()) {
if (surveyOrganizationRepo.findBySurveyIdAndApplicationIdAndOrganizationId(entity.getId(), organization.getApplication().getId(), organization.getId()) == null) {
SurveyOrganizationEntity surveyOrganization = new SurveyOrganizationEntity();
surveyOrganization.setSurvey(entity);
surveyOrganization.setApplication(applicationRepo.findById(organization.getApplication().getId()));
surveyOrganization.setOrganization(organizationRepo.findById(organization.getId()));
surveyOrganizationRepo.save(surveyOrganization);
}
}
}
if (surveyDefinition.getApplications() != null) {
for (ApplicationDTO application : surveyDefinition.getApplications()) {
SurveyOrganizationEntity surveyOrganization = new SurveyOrganizationEntity();
surveyOrganization.setSurvey(entity);
surveyOrganization.setApplication(applicationRepo.findById(application.getId()));
surveyOrganizationRepo.save(surveyOrganization);
}
}
return new SurveyDefinition().id(entity.getId()).title(entity.getTitle()).description(entity.getDescription()).surveySchema(entity.getSurveyDefinition().getSurveySchema()).surveyUISchema(entity.getSurveyDefinition().getSurveyUISchema()).organizations(surveyDefinition.getOrganizations());
}
use of py.org.fundacionparaguaya.pspserver.surveys.dtos.NewSurveyDefinition in project FP-PSP-SERVER by FundacionParaguaya.
the class SurveyController method addSurveyDefinition.
@PostMapping
@io.swagger.annotations.ApiOperation(value = "Create Survey Definition", notes = "Creates a new survey definition", response = SurveyDefinition.class, tags = {})
@io.swagger.annotations.ApiResponses(value = { @io.swagger.annotations.ApiResponse(code = 201, message = "The created survey definition", response = SurveyDefinition.class) })
public ResponseEntity addSurveyDefinition(@RequestBody NewSurveyDefinition surveyDefinition) throws NotFoundException, URISyntaxException {
SurveyDefinition definition = surveyService.addSurveyDefinition(surveyDefinition);
URI surveyLocation = new URI("/surveys/" + definition.getId());
return ResponseEntity.created(surveyLocation).body(definition);
}
Aggregations