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

first commit #10

Open
wants to merge 1 commit into
base: master
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
Binary file added .DS_Store
Binary file not shown.
Binary file added src/.DS_Store
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
import com.bezkoder.springjwt.security.jwt.JwtUtils;
import com.bezkoder.springjwt.security.services.UserDetailsImpl;

@CrossOrigin(origins = "*", maxAge = 3600)
@CrossOrigin(origins = "*")
@RestController
@RequestMapping("/api/auth")
public class AuthController {
Expand Down Expand Up @@ -74,21 +74,21 @@ public ResponseEntity<?> authenticateUser(@Valid @RequestBody LoginRequest login

@PostMapping("/signup")
public ResponseEntity<?> registerUser(@Valid @RequestBody SignupRequest signUpRequest) {
if (userRepository.existsByUsername(signUpRequest.getUsername())) {
if (userRepository.existsByNom(signUpRequest.getNom())) {
return ResponseEntity
.badRequest()
.body(new MessageResponse("Error: Username is already taken!"));
}

if (userRepository.existsByEmail(signUpRequest.getEmail())) {
if (userRepository.existsByUsername(signUpRequest.getUsername())) {
return ResponseEntity
.badRequest()
.body(new MessageResponse("Error: Email is already in use!"));
}

// Create new user's account
User user = new User(signUpRequest.getUsername(),
signUpRequest.getEmail(),
User user = new User(signUpRequest.getNom(),
signUpRequest.getUsername(),
encoder.encode(signUpRequest.getPassword()));

Set<String> strRoles = signUpRequest.getRole();
Expand Down
181 changes: 119 additions & 62 deletions src/main/java/com/bezkoder/springjwt/models/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,81 +9,138 @@
import javax.validation.constraints.Size;

@Entity
@Table( name = "users",
uniqueConstraints = {
@UniqueConstraint(columnNames = "username"),
@UniqueConstraint(columnNames = "email")
})
@Table(name = "user")
public class User {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

@NotBlank
@Size(max = 20)
private String username;

@NotBlank
@Size(max = 50)
@Email
private String email;

@NotBlank
@Size(max = 120)
private String password;

@ManyToMany(fetch = FetchType.LAZY)
@JoinTable( name = "user_roles",
joinColumns = @JoinColumn(name = "user_id"),
inverseJoinColumns = @JoinColumn(name = "role_id"))
private Set<Role> roles = new HashSet<>();

public User() {
}
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private Long id;

private String username;

private String nom;

private String nickname;

private String server;

//Modos ---> Fer una taula que tingui id i el modo (1-4) que vol jugar
private Boolean modo_flex;

private Boolean modo_duo;

private Boolean modo_clash;

private Boolean modo_otro;

//Tipos ---> Fer una taula que tingui id i el modo (1-5) que vol jugar
private Boolean tipo_4fun;

private Boolean tipo_tryhard;

private Boolean tipo_champs;

private Boolean tipo_otps;

private Boolean rol_jungle;

//Rols ---> Fer una taula que tingui id i el modo (1-5) que vol jugar
private Boolean rol_top;

private Boolean rol_mid;

private Boolean rol_bot;

private Boolean rol_supp;

private Boolean rol_fill;

// Suposo que faltaria una pels personatges

private String password;



public User(String username, String email, String password) {
@Transient
private String passwordConfirm;


public User() {}


public User(String nom, String username, String password) {
this.nom = nom;
this.username = username;
this.email = email;
this.password = password;
}

public Long getId() {
return id;
}

public void setId(Long id) {
this.id = id;
}
@ManyToMany
private Set<Role> roles;

public String getUsername() {
return username;
}
public Long getId() {
return id;
}

public void setUsername(String username) {
this.username = username;
}
public void setId(Long id) {
this.id = id;
}

public String getEmail() {
return email;
}
public String getNom() {
return nom;
}

public void setEmail(String email) {
this.email = email;
}
public void setNom(String nom) {
this.nom = nom;
}
public String getUsername() {
return username;
}

public String getPassword() {
return password;
}
public void setUsername(String username) {
this.username = username;
}

public void setPassword(String password) {
this.password = password;
}
public String getNickname() {
return nickname;
}

public Set<Role> getRoles() {
return roles;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}

public void setRoles(Set<Role> roles) {
this.roles = roles;
}
public String getServer() {
return server;
}

public void setServer(String server) {
this.server = server;
}

public String getPassword() {
return password;
}

public void setPassword(String password) {
this.password = password;
}

public String getPasswordConfirm() {
return passwordConfirm;
}

public void setPasswordConfirm(String passwordConfirm) {
this.passwordConfirm = passwordConfirm;
}

public Set<Role> getRoles() {
return roles;
}

public void setRoles(Set<Role> roles) {
this.roles = roles;
}
@Override
public String toString() {
return "User{" + "id=" + id + ", name=" + nom + ", email=" + username + ", server=" + server + ", nickname=" + nickname + '}';
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,33 +7,33 @@
public class SignupRequest {
@NotBlank
@Size(min = 3, max = 20)
private String username;
private String nom;

@NotBlank
@Size(max = 50)
@Email
private String email;
private String username;

private Set<String> role;

@NotBlank
@Size(min = 6, max = 40)
private String password;

public String getUsername() {
return username;
public String getNom() {
return nom;
}

public void setUsername(String username) {
this.username = username;
public void setNom(String nom) {
this.nom = nom;
}

public String getEmail() {
return email;
public String getUsername() {
return username;
}

public void setEmail(String email) {
this.email = email;
public void setUsername(String username) {
this.username = username;
}

public String getPassword() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ public class JwtResponse {
private String type = "Bearer";
private Long id;
private String username;
private String email;
private String nom;
private List<String> roles;

public JwtResponse(String accessToken, Long id, String username, String email, List<String> roles) {
public JwtResponse(String accessToken, Long id, String nom, String username, List<String> roles) {
this.token = accessToken;
this.id = id;
this.username = username;
this.email = email;
this.nom = nom;
this.roles = roles;
}

Expand Down Expand Up @@ -42,12 +42,12 @@ public void setId(Long id) {
this.id = id;
}

public String getEmail() {
return email;
public String getNom() {
return nom;
}

public void setEmail(String email) {
this.email = email;
public void setNom(String nom) {
this.nom = nom;
}

public String getUsername() {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
public interface UserRepository extends JpaRepository<User, Long> {
Optional<User> findByUsername(String username);

Boolean existsByUsername(String username);
Boolean existsByNom(String username);

Boolean existsByEmail(String email);
Boolean existsByUsername(String username);
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.HttpMethod;
import org.springframework.security.authentication.AuthenticationManager;
import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
import org.springframework.security.config.annotation.method.configuration.EnableGlobalMethodSecurity;
Expand Down Expand Up @@ -51,7 +52,7 @@ public AuthenticationManager authenticationManagerBean() throws Exception {
public PasswordEncoder passwordEncoder() {
return new BCryptPasswordEncoder();
}

@Override
protected void configure(HttpSecurity http) throws Exception {
http.cors().and().csrf().disable()
Expand All @@ -62,5 +63,8 @@ protected void configure(HttpSecurity http) throws Exception {
.anyRequest().authenticated();

http.addFilterBefore(authenticationJwtTokenFilter(), UsernamePasswordAuthenticationFilter.class);



}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,10 @@ public class UserDetailsImpl implements UserDetails {

private Collection<? extends GrantedAuthority> authorities;

public UserDetailsImpl(Long id, String username, String email, String password,
public UserDetailsImpl(Long id, String username, String password,
Collection<? extends GrantedAuthority> authorities) {
this.id = id;
this.username = username;
this.email = email;
this.password = password;
this.authorities = authorities;
}
Expand All @@ -43,7 +42,6 @@ public static UserDetailsImpl build(User user) {
return new UserDetailsImpl(
user.getId(),
user.getUsername(),
user.getEmail(),
user.getPassword(),
authorities);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ public class UserDetailsServiceImpl implements UserDetailsService {

@Override
@Transactional
public UserDetails loadUserByUsername(String username) throws UsernameNotFoundException {
User user = userRepository.findByUsername(username)
.orElseThrow(() -> new UsernameNotFoundException("User Not Found with username: " + username));
public UserDetails loadUserByUsername(String email) throws UsernameNotFoundException {
User user = userRepository.findByUsername(email)
.orElseThrow(() -> new UsernameNotFoundException("User Not Found with username: " + email));

return UserDetailsImpl.build(user);
}
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
spring.datasource.url= jdbc:mysql://localhost:3306/testdb?useSSL=false
spring.datasource.url= jdbc:mysql://localhost:3306/Matcher?useUnicode=true&useJDBCCompliantTimezoneShift=true&useLegacyDatetimeCode=false&serverTimezone=UTC
spring.datasource.username= root
spring.datasource.password= 123456
spring.datasource.password= dj1932001

spring.jpa.properties.hibernate.dialect= org.hibernate.dialect.MySQL5InnoDBDialect
spring.jpa.hibernate.ddl-auto= update
Expand Down