You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Facebook/BE/src/main/java/org/example/services/UserService.java

43 lines
1.5 KiB

10 months ago
package org.example.services;
import org.example.models.User;
9 months ago
import org.example.repositories.PostRepository;
10 months ago
import org.example.repositories.UserRepository;
import org.example.requests.CreateUserRequest;
import org.springframework.security.crypto.password.PasswordEncoder;
import org.springframework.stereotype.Service;
@Service
public class UserService {
private final UserRepository userRepository;
private final PasswordEncoder passwordEncoder;
9 months ago
private final PostRepository postRepository;
10 months ago
9 months ago
public UserService(UserRepository userRepository, PasswordEncoder passwordEncoder, PostRepository postRepository) {
10 months ago
this.userRepository = userRepository;
this.passwordEncoder = passwordEncoder;
9 months ago
this.postRepository = postRepository;
10 months ago
}
public User createUser(CreateUserRequest request) {
10 months ago
if (userRepository.existsByUsername(request.getUsername())) {
throw new IllegalArgumentException("Username already exists. Please choose a different username.");
}
10 months ago
User user = new User();
user.setName(request.getName());
// TODO: make sure that this username doesn't exist.
user.setUsername(request.getUsername());
user.setRoles(request.getRoles());
user.setPassword(passwordEncoder.encode(request.getPassword()));
userRepository.save(user);
return user;
}
9 months ago
public void addFriend(String username1, String username2) {
userRepository.addFriend(username1,username2);
}
10 months ago
}