Changeset 509cb95 for src/main/java/it/finki/tinki/web
- Timestamp:
- 01/07/21 22:32:22 (4 years ago)
- Branches:
- master
- Children:
- a8e8545
- Parents:
- 723994f
- Location:
- src/main/java/it/finki/tinki/web/controller
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/java/it/finki/tinki/web/controller/LoginController.java
r723994f r509cb95 2 2 3 3 import it.finki.tinki.model.Users.Account; 4 import it.finki.tinki.model.Users.Company; 4 5 import it.finki.tinki.model.Users.Team; 5 6 import it.finki.tinki.model.Users.User; 6 import it.finki.tinki.model.dto.AccountLoginDTO; 7 import it.finki.tinki.model.dto.AuthResponseDTO; 8 import it.finki.tinki.model.dto.LoginResponseDTO; 9 import it.finki.tinki.model.dto.UserResponseDTO; 7 import it.finki.tinki.model.dto.*; 10 8 import it.finki.tinki.model.enumerator.AccountType; 11 9 import it.finki.tinki.service.AccountService; 12 10 import it.finki.tinki.service.MatchmakerService; 11 import it.finki.tinki.service.WorkService; 12 import org.apache.coyote.Response; 13 13 import org.springframework.web.bind.annotation.*; 14 14 import org.springframework.web.server.ResponseStatusException; … … 23 23 AccountService accountService; 24 24 MatchmakerService matchmakerService; 25 WorkService workService; 25 26 26 public LoginController(AccountService accountService, MatchmakerService matchmakerService ) {27 public LoginController(AccountService accountService, MatchmakerService matchmakerService, WorkService workService) { 27 28 this.accountService = accountService; 28 29 this.matchmakerService = matchmakerService; 30 this.workService = workService; 29 31 } 30 32 … … 35 37 36 38 Account a1 = accountService.findUser(body.getEmail(), body.getPassword(), body.getType()); 39 37 40 if(a1!=null){ 38 41 if(a1.getClass().equals(User.class)){ 39 42 40 43 UserResponseDTO uDto = new UserResponseDTO(); 44 45 uDto.setError(null); 41 46 42 47 uDto.setId(a1.getId()); … … 54 59 55 60 return uDto; 61 56 62 }else if(a1.getClass().equals(Team.class)){ 57 63 64 TeamResponseDTO tDto = new TeamResponseDTO(); 65 66 tDto.setError(null); 67 68 tDto.setId(a1.getId()); 69 tDto.setEmail(a1.getEmail()); 70 tDto.setName(a1.getName()); 71 tDto.setType(AccountType.USER); 72 tDto.setMembers(((Team) a1).getMembers()); 73 74 tDto.setJobs(this.workService.getAllJobsByAccount(a1.getId())); 75 tDto.setProjects(this.workService.getAllProjectsByAccount(a1.getId())); 76 77 return tDto; 78 58 79 }else{ 80 81 CompanyResponseDTO cDto = new CompanyResponseDTO(); 82 83 cDto.setError(null); 84 85 cDto.setId(a1.getId()); 86 cDto.setEmail(a1.getEmail()); 87 cDto.setName(a1.getName()); 88 cDto.setType(AccountType.USER); 89 cDto.setAddress(((Company) a1).getAddress()); 90 91 cDto.setJobs(this.workService.getAllJobsByAccount(a1.getId())); 92 cDto.setInternships(this.workService.getAllInternshipsByAccount(a1.getId())); 93 94 return cDto; 59 95 60 96 } 61 97 } 62 98 63 return n ull;99 return new LoginResponseDTO(); 64 100 } 65 101 -
src/main/java/it/finki/tinki/web/controller/RegisterController.java
r723994f r509cb95 1 1 package it.finki.tinki.web.controller; 2 2 3 import it.finki.tinki.helper.Matchmaker; 4 import it.finki.tinki.model.Jobs.Internship; 5 import it.finki.tinki.model.Jobs.Job; 6 import it.finki.tinki.model.Jobs.Project; 3 7 import it.finki.tinki.model.Skill; 4 8 import it.finki.tinki.model.Users.Account; 9 import it.finki.tinki.model.Users.User; 5 10 import it.finki.tinki.service.AccountService; 11 import it.finki.tinki.service.MatchmakerService; 6 12 import it.finki.tinki.service.SkillService; 13 import it.finki.tinki.service.WorkService; 7 14 import org.springframework.web.bind.annotation.*; 8 15 … … 18 25 AccountService accountService; 19 26 SkillService skillService; 27 WorkService workService; 28 MatchmakerService matchmakerService; 20 29 21 public RegisterController(AccountService accountService, SkillService skillService ) {30 public RegisterController(AccountService accountService, SkillService skillService, WorkService workService, MatchmakerService matchmakerService) { 22 31 this.accountService = accountService; 23 32 this.skillService = skillService; 33 this.workService = workService; 34 this.matchmakerService = matchmakerService; 24 35 } 25 36 26 37 @RequestMapping(path = "/user", method = RequestMethod.POST) 27 38 private Map<String, String> registerUser(@RequestParam String email, 28 29 30 31 32 39 @RequestParam String password, 40 @RequestParam String name, 41 @RequestParam String surname, 42 @RequestParam List<Integer> retainedSkills, 43 @RequestParam List<Integer> skillsToLearn){ 33 44 34 45 List<Skill> retained = this.skillService.returnSkillsBasedOnId(retainedSkills); … … 39 50 Map<String, String> response = new HashMap<>(); 40 51 41 if(k !=null){52 if(k==null){ 42 53 response.put("error", "There was an error when trying to register user."); 43 54 }else{ 55 List<Job> jobs = this.workService.getAllJobs(); 56 List<Project> projects = this.workService.getAllProjects(); 57 List<Internship> internships = this.workService.getAllInternships(); 58 59 jobs.forEach(job -> { 60 this.matchmakerService.setUpUserJobMatches(job, (User) k); 61 }); 62 63 projects.forEach(project -> { 64 this.matchmakerService.setUpUserProjectMatches(project, (User) k); 65 }); 66 67 internships.forEach(internship -> { 68 this.matchmakerService.setUpUserInternshipMatches(internship, (User) k); 69 }); 70 44 71 response.put("success", "Registration completed successfully."); 45 72 } … … 58 85 Map<String, String> response = new HashMap<>(); 59 86 60 if(k !=null){87 if(k==null){ 61 88 response.put("error", "There was an error when trying to register team."); 62 89 }else{ … … 79 106 Map<String, String> response = new HashMap<>(); 80 107 81 if(k !=null){108 if(k==null){ 82 109 response.put("error", "There was an error when trying to register company."); 83 110 }else{
Note:
See TracChangeset
for help on using the changeset viewer.