Skip to content
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

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions src/main/java/com/bravo/user/App.java
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,15 @@
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

import java.util.UUID;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unused import and whitespace.


@SpringBootApplication
public class App {

public static void main(String[] args) {

SpringApplication.run(App.class, args);
}


}
36 changes: 36 additions & 0 deletions src/main/java/com/bravo/user/controller/PaymentController.java
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);
}
Copy link
Member

@wheeleruniverse wheeleruniverse Nov 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. Weird whitespace. Too much whitespace on the bottom.
  2. GetMapping should not end with a /
  3. Should not return DAO model. Should use a DTO model instead.

Copy link
Author

Choose a reason for hiding this comment

The 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.
I'll need to do some research to see the advantage of this.
Thanks, Justin.
I really value this feedback.

Copy link
Member

Choose a reason for hiding this comment

The 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.

Copy link
Author

Choose a reason for hiding this comment

The 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.

Choose a reason for hiding this comment

The 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.




}
55 changes: 51 additions & 4 deletions src/main/java/com/bravo/user/dao/model/Payment.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -15,6 +13,7 @@ public class Payment {

@Id
@Column(name = "id")
@GeneratedValue(strategy = GenerationType.IDENTITY) // Auto increments ID upon creation
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

  1. The id is a string so how would the auto increment work?
  2. The id is being set explicitly in the constructor. Does this @GeneratedValue overwrite that?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You are right.
Being that ID is a string, this isn't needed. I think I added it out of habit.

private String id;

@Column(name = "user_id", nullable = false)
Expand All @@ -37,4 +36,52 @@ public Payment(){
this.id = UUID.randomUUID().toString();
this.updated = LocalDateTime.now();
}

public String getId() {
Copy link
Member

@wheeleruniverse wheeleruniverse Nov 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Getters and Setters are provided by Lombok @Data annotation already on this model.
https://projectlombok.org/features/Data

Copy link
Author

Choose a reason for hiding this comment

The 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;
}
}
55 changes: 50 additions & 5 deletions src/main/java/com/bravo/user/dao/model/Profile.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member

@wheeleruniverse wheeleruniverse Nov 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Getters and Setters are provided by Lombok @Data annotation. Why did you remove it? https://projectlombok.org/features/Data

@Table(name = "profile")
public class Profile {

Expand Down Expand Up @@ -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;
}
}
88 changes: 76 additions & 12 deletions src/main/java/com/bravo/user/dao/model/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member

@wheeleruniverse wheeleruniverse Nov 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Getters and Setters are provided by Lombok @Data annotation. Why did you remove it? https://projectlombok.org/features/Data

@Table(name = "user")
public class User {

Expand All @@ -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)
Expand All @@ -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;
}
}
14 changes: 14 additions & 0 deletions src/main/java/com/bravo/user/dao/repository/PaymentRepository.java
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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do you think this comment adds value?

Copy link
Author

Choose a reason for hiding this comment

The 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.
I could have gone into more detail of how it works based on the method signature and name, being that the way this works is somewhat abstract.

List<Payment> findAllByUserId(String userId);
}
27 changes: 27 additions & 0 deletions src/main/java/com/bravo/user/service/PaymentService.java
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;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

userService is unused here.



public List<Payment> getUserPayments(String userId) {
return paymentRepository.findAllByUserId(userId);
}

public Payment savePayment(Payment payment) {
return paymentRepository.save(payment);
}
}
7 changes: 5 additions & 2 deletions src/main/java/com/bravo/user/service/UserService.java
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Don't commit System.out or System.err. Use a Logger instead.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay. Noted

return resourceMapper.convertUser(user);
}

Expand Down Expand Up @@ -130,4 +131,6 @@ private User getUser(final String id, final Optional<User> user){
}
return user.get();
}


}
2 changes: 1 addition & 1 deletion src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The console should only be enabled locally.

Copy link
Author

Choose a reason for hiding this comment

The 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.
Noted

jpa:
database-platform: ${DB_DIALECT:org.hibernate.dialect.H2Dialect}
properties.hibernate:
Expand Down
Loading