-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dustin Vidrine Senior Java Candidate Assessment (card 0013) #35
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
package com.bravo.user.controller; | ||
|
||
import com.bravo.user.annotation.SwaggerController; | ||
import com.bravo.user.dao.model.Payment; | ||
import com.bravo.user.dao.model.User; | ||
import com.bravo.user.dao.repository.PaymentRepository; | ||
import com.bravo.user.service.PaymentService; | ||
import com.bravo.user.service.UserService; | ||
import com.bravo.user.validator.UserValidator; | ||
import org.checkerframework.checker.units.qual.A; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.web.bind.annotation.*; | ||
|
||
import java.util.List; | ||
|
||
@SwaggerController | ||
@RequestMapping(value = "/payments") | ||
public class PaymentController{ | ||
|
||
@Autowired | ||
private PaymentService paymentService; | ||
@Autowired | ||
private UserService userService; | ||
@Autowired | ||
private UserValidator userValidator; | ||
|
||
@GetMapping(value = "/retrieve/{userId}/") | ||
@ResponseBody | ||
public List<Payment> getUserPayments(@PathVariable String userId) { | ||
userValidator.validateId(userId); | ||
return paymentService.getUserPayments(userId); | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I see. I've seen this DAO and DTO concept before but I don't quite understand why its used. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The DAO is Data Access Object and mirrors your database exactly. The DTO is Data Transfer Object and is sent to the clients. The DAO may have fields or logic in your database that you don't want to send to a client. You can do a conversion between the 2 types to make your API more extensible and adjustable. If your API client is relying on your database matching their contract then you will put yourself in a bad situation. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. That makes perfect sense. Thanks for that , Justin. Overall what would you say of the over all assessment. I see I have some rookie mistakes and slightly "sloppy" code in some places, but that can easily improved on. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hey @Kruzik762 sorry for the delay in responding. Bravo tries to place people where it can when it can. It's not a pass/fail, it's more of a can we place you at x client and have their needs met? And of course do we want to work with this person :) . Overall, it's really a question for the recruitment team. |
||
|
||
|
||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,10 +2,8 @@ | |
|
||
import java.time.LocalDateTime; | ||
import java.util.UUID; | ||
import javax.persistence.Column; | ||
import javax.persistence.Entity; | ||
import javax.persistence.Id; | ||
import javax.persistence.Table; | ||
import javax.persistence.*; | ||
|
||
import lombok.Data; | ||
|
||
@Entity | ||
|
@@ -15,6 +13,7 @@ public class Payment { | |
|
||
@Id | ||
@Column(name = "id") | ||
@GeneratedValue(strategy = GenerationType.IDENTITY) // Auto increments ID upon creation | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You are right. |
||
private String id; | ||
|
||
@Column(name = "user_id", nullable = false) | ||
|
@@ -37,4 +36,52 @@ public Payment(){ | |
this.id = UUID.randomUUID().toString(); | ||
this.updated = LocalDateTime.now(); | ||
} | ||
|
||
public String getId() { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Getters and Setters are provided by Lombok There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah. Okay. I haven't used Lombok before and wasn't sure how that worked. I added Getters/setters incase. |
||
return id; | ||
} | ||
|
||
public void setId(String id) { | ||
this.id = id; | ||
} | ||
|
||
public String getUserId() { | ||
return userId; | ||
} | ||
|
||
public void setUserId(String userId) { | ||
this.userId = userId; | ||
} | ||
|
||
public String getCardNumber() { | ||
return cardNumber; | ||
} | ||
|
||
public void setCardNumber(String cardNumber) { | ||
this.cardNumber = cardNumber; | ||
} | ||
|
||
public Integer getExpiryMonth() { | ||
return expiryMonth; | ||
} | ||
|
||
public void setExpiryMonth(Integer expiryMonth) { | ||
this.expiryMonth = expiryMonth; | ||
} | ||
|
||
public Integer getExpiryYear() { | ||
return expiryYear; | ||
} | ||
|
||
public void setExpiryYear(Integer expiryYear) { | ||
this.expiryYear = expiryYear; | ||
} | ||
|
||
public LocalDateTime getUpdated() { | ||
return updated; | ||
} | ||
|
||
public void setUpdated(LocalDateTime updated) { | ||
this.updated = updated; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,14 +2,11 @@ | |
|
||
import java.time.LocalDateTime; | ||
import java.util.UUID; | ||
import javax.persistence.Column; | ||
import javax.persistence.Entity; | ||
import javax.persistence.Id; | ||
import javax.persistence.Table; | ||
import javax.persistence.*; | ||
|
||
import lombok.Data; | ||
|
||
@Entity | ||
@Data | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Getters and Setters are provided by Lombok |
||
@Table(name = "profile") | ||
public class Profile { | ||
|
||
|
@@ -37,4 +34,52 @@ public Profile(){ | |
this.id = UUID.randomUUID().toString(); | ||
this.updated = LocalDateTime.now(); | ||
} | ||
|
||
public String getId() { | ||
return id; | ||
} | ||
|
||
public void setId(String id) { | ||
this.id = id; | ||
} | ||
|
||
public String getUserId() { | ||
return userId; | ||
} | ||
|
||
public void setUserId(String userId) { | ||
this.userId = userId; | ||
} | ||
|
||
public String getUsername() { | ||
return username; | ||
} | ||
|
||
public void setUsername(String username) { | ||
this.username = username; | ||
} | ||
|
||
public String getPassword() { | ||
return password; | ||
} | ||
|
||
public void setPassword(String password) { | ||
this.password = password; | ||
} | ||
|
||
public String getPictureUrl() { | ||
return pictureUrl; | ||
} | ||
|
||
public void setPictureUrl(String pictureUrl) { | ||
this.pictureUrl = pictureUrl; | ||
} | ||
|
||
public LocalDateTime getUpdated() { | ||
return updated; | ||
} | ||
|
||
public void setUpdated(LocalDateTime updated) { | ||
this.updated = updated; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,19 +4,11 @@ | |
import java.time.LocalDateTime; | ||
import java.util.List; | ||
import java.util.UUID; | ||
import javax.persistence.CascadeType; | ||
import javax.persistence.Column; | ||
import javax.persistence.Entity; | ||
import javax.persistence.FetchType; | ||
import javax.persistence.Id; | ||
import javax.persistence.JoinColumn; | ||
import javax.persistence.OneToMany; | ||
import javax.persistence.OneToOne; | ||
import javax.persistence.Table; | ||
import javax.persistence.*; | ||
|
||
import lombok.Data; | ||
|
||
@Entity | ||
@Data | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Getters and Setters are provided by Lombok |
||
@Table(name = "user") | ||
public class User { | ||
|
||
|
@@ -40,11 +32,11 @@ public class User { | |
private LocalDateTime updated; | ||
|
||
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY) | ||
@JoinColumn(name = "id") | ||
@JoinColumn(name = "address_id") | ||
private List<Address> addresses; | ||
|
||
@OneToMany(cascade = CascadeType.ALL, fetch = FetchType.LAZY) | ||
@JoinColumn(name = "id") | ||
@JoinColumn(name ="payment_id") | ||
private List<Payment> payments; | ||
|
||
@OneToOne(cascade = CascadeType.ALL, fetch = FetchType.LAZY, optional = false) | ||
|
@@ -64,4 +56,76 @@ public User(final UserSaveDto user){ | |
this.lastName = user.getLastName(); | ||
this.phoneNumber = user.getPhoneNumber(); | ||
} | ||
|
||
public String getId() { | ||
return id; | ||
} | ||
|
||
public void setId(String id) { | ||
this.id = id; | ||
} | ||
|
||
public String getFirstName() { | ||
return firstName; | ||
} | ||
|
||
public void setFirstName(String firstName) { | ||
this.firstName = firstName; | ||
} | ||
|
||
public String getMiddleName() { | ||
return middleName; | ||
} | ||
|
||
public void setMiddleName(String middleName) { | ||
this.middleName = middleName; | ||
} | ||
|
||
public String getLastName() { | ||
return lastName; | ||
} | ||
|
||
public void setLastName(String lastName) { | ||
this.lastName = lastName; | ||
} | ||
|
||
public String getPhoneNumber() { | ||
return phoneNumber; | ||
} | ||
|
||
public void setPhoneNumber(String phoneNumber) { | ||
this.phoneNumber = phoneNumber; | ||
} | ||
|
||
public LocalDateTime getUpdated() { | ||
return updated; | ||
} | ||
|
||
public void setUpdated(LocalDateTime updated) { | ||
this.updated = updated; | ||
} | ||
|
||
public List<Address> getAddresses() { | ||
return addresses; | ||
} | ||
|
||
public void setAddresses(List<Address> addresses) { | ||
this.addresses = addresses; | ||
} | ||
|
||
public List<Payment> getPayments() { | ||
return payments; | ||
} | ||
|
||
public void setPayments(List<Payment> payments) { | ||
this.payments = payments; | ||
} | ||
|
||
public Profile getProfile() { | ||
return profile; | ||
} | ||
|
||
public void setProfile(Profile profile) { | ||
this.profile = profile; | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
package com.bravo.user.dao.repository; | ||
|
||
import com.bravo.user.dao.model.Payment; | ||
import org.springframework.data.jpa.repository.JpaRepository; | ||
import org.springframework.stereotype.Repository; | ||
|
||
import java.util.List; | ||
|
||
@Repository | ||
public interface PaymentRepository extends JpaRepository<Payment,String> { | ||
|
||
// Finds All Payments linked to the User ID provided | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you think this comment adds value? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not really a lot. More so to briefly describe what the method will do. |
||
List<Payment> findAllByUserId(String userId); | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package com.bravo.user.service; | ||
|
||
import com.bravo.user.dao.model.Payment; | ||
import com.bravo.user.dao.repository.PaymentRepository; | ||
import org.springframework.beans.factory.annotation.Autowired; | ||
import org.springframework.stereotype.Service; | ||
|
||
import java.util.List; | ||
|
||
@Service | ||
public class PaymentService { | ||
|
||
@Autowired | ||
private PaymentRepository paymentRepository; | ||
|
||
@Autowired | ||
private UserService userService; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||
|
||
|
||
public List<Payment> getUserPayments(String userId) { | ||
return paymentRepository.findAllByUserId(userId); | ||
} | ||
|
||
public Payment savePayment(Payment payment) { | ||
return paymentRepository.save(payment); | ||
} | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -43,10 +43,11 @@ public UserReadDto create(final UserSaveDto request){ | |
} | ||
|
||
public UserReadDto retrieve(final String id){ | ||
Optional<User> optional = userRepository.findById(id); | ||
User user = getUser(id, optional); | ||
User user = userRepository.findById(id).get(); | ||
|
||
|
||
LOGGER.info("found user '{}'", id); | ||
System.out.println(user.toString()); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Don't commit There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Okay. Noted |
||
return resourceMapper.convertUser(user); | ||
} | ||
|
||
|
@@ -130,4 +131,6 @@ private User getUser(final String id, final Optional<User> user){ | |
} | ||
return user.get(); | ||
} | ||
|
||
|
||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,7 +9,7 @@ spring: | |
password: ${DB_PASSWORD:password} | ||
username: ${DB_USERNAME:sa} | ||
url: ${DB_URL:jdbc:h2:mem:testdb} | ||
h2.console.enabled: false | ||
h2.console.enabled: true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The console should only be enabled locally. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ah. I enabled to see the database tables and forgot to disable it. |
||
jpa: | ||
database-platform: ${DB_DIALECT:org.hibernate.dialect.H2Dialect} | ||
properties.hibernate: | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unused import and whitespace.