com.brihaspathee.zeus.web.resource.impl.UserResource Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tp-service Show documentation
Show all versions of tp-service Show documentation
Service that contains all Trading Partner Information
The newest version!
package com.brihaspathee.zeus.web.resource.impl;
import com.brihaspathee.zeus.constants.ApiResponseConstants;
import com.brihaspathee.zeus.service.interfaces.UserService;
import com.brihaspathee.zeus.web.model.TradingPartnerDto;
import com.brihaspathee.zeus.web.resource.interfaces.UserApi;
import com.brihaspathee.zeus.web.response.ZeusApiResponse;
import com.brihaspathee.zeus.web.security.UserDto;
import com.brihaspathee.zeus.web.security.UserList;
import lombok.RequiredArgsConstructor;
import lombok.extern.slf4j.Slf4j;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpStatus;
import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.RestController;
import java.util.List;
import java.util.UUID;
/**
* Created in Intellij IDEA
* User: Balaji Varadharajan
* Date: 11, February 2022
* Time: 5:12 PM
* Project: Zeus
* Package Name: com.brihaspathee.zeus.web.resource.impl
* To change this template use File | Settings | File and Code Template
*/
@Slf4j
@RestController
@RequiredArgsConstructor
public class UserResource implements UserApi {
private final UserService userService;
@Override
public ResponseEntity> getUser(UUID userId, String username) {
log.info("User Id:{}", userId);
log.info("Username:{}", username);
UserList userList = new UserList();
if(userId != null){
UserDto userDto = userService.getUserById(userId);
userList.setUsers(List.of(userDto));
}else if (username != null){
UserDto userDto = userService.getUserByUserName(username);
userList.setUsers(List.of(userDto));
}else{
List userDtos = userService.getAllUsers().stream().toList();
userList.setUsers(userDtos);
}
ZeusApiResponse apiResponse = ZeusApiResponse.builder()
.reason(ApiResponseConstants.SUCCESS_REASON)
.message(ApiResponseConstants.SUCCESS)
.response(userList)
.build();
return ResponseEntity.ok(apiResponse);
}
@Override
public ResponseEntity> createUser(UserDto userDto) {
UserDto savedUser = userService.saveUser(userDto);
ZeusApiResponse apiResponse = ZeusApiResponse.builder()
.reason(ApiResponseConstants.SUCCESS_REASON)
.message(ApiResponseConstants.SUCCESS)
.response(savedUser)
.build();
HttpHeaders httpHeaders = new HttpHeaders();
httpHeaders.add("Location", "/api/v1/tp/user/"+savedUser.getUserId());
return new ResponseEntity>(apiResponse, httpHeaders, HttpStatus.CREATED);
}
@Override
public ResponseEntity> updateUser(UserDto userDto, UUID userId) {
return null;
}
}