Checkpoint 3. Create tables

This commit is contained in:
Gnazarov 2025-02-20 10:39:41 +03:00
parent c4e4bcec19
commit 83bc1b8e85
16 changed files with 168 additions and 37 deletions

View File

@ -54,6 +54,14 @@
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
<!-- <dependency>-->
<!-- <groupId>org.springframework.boot</groupId>-->
<!-- <artifactId>spring-boot-starter-security</artifactId>-->
<!-- </dependency>-->
</dependencies>
</project>

View File

@ -1,4 +1,40 @@
package com.example.nto.config;
public class WebSecurityConfig {
}
//package com.example.nto.config;
//
//import lombok.RequiredArgsConstructor;
//import org.springframework.context.annotation.Configuration;
//import org.springframework.security.config.annotation.authentication.builders.AuthenticationManagerBuilder;
//import org.springframework.security.config.annotation.web.builders.HttpSecurity;
//import org.springframework.security.config.annotation.web.configuration.EnableWebSecurity;
//import org.springframework.security.config.annotation.web.configuration.WebSecurityConfigurerAdapter;
//import org.springframework.security.core.userdetails.UserDetailsService;
//import org.springframework.security.crypto.bcrypt.BCryptPasswordEncoder;
//import org.springframework.security.crypto.password.PasswordEncoder;
//
//@Configuration
//@EnableWebSecurity
//@RequiredArgsConstructor
//public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
//
// private final UserDetailsService userDetailsService;
//
// @Override
// protected void configure(HttpSecurity http) throws Exception {
// http
// .csrf().disable()
// .authorizeRequests()
// .antMatchers("/api/employee/registration").hasAuthority("ROLE_ADMIN")
// .anyRequest().authenticated()
// .and()
// .httpBasic()
// .and()
// }
//
// @Override
// protected void configure(AuthenticationManagerBuilder auth) throws Exception {
// auth.userDetailsService(userDetailsService).passwordEncoder(passwordEncoder());
// }
//
// public PasswordEncoder passwordEncoder(){
// return new BCryptPasswordEncoder();
// }
//}

View File

@ -12,13 +12,19 @@ import org.springframework.http.ResponseEntity;
import org.springframework.web.bind.annotation.*;
import java.time.LocalDateTime;
import java.util.Optional;
@RestController
@RequestMapping("/api")
@RequestMapping("/api/employee")
@AllArgsConstructor
public class EmployeeController {
private EmployeeServiceImpl service;
@GetMapping("/{username}")
public ResponseEntity<String> findEmployeeByUsername(@PathVariable String username){
Employee volunteer = service.findEmployeeByUsername(username);
return ResponseEntity.status(HttpStatus.OK).body("Employee with username "+username+" exists");
}
@GetMapping("/{login}/auth")
private ResponseEntity<String> getAuth(@PathVariable("login") String login){
@ -27,7 +33,7 @@ public class EmployeeController {
return ResponseEntity.status(400).body("что-то пошло не так");
}
Employee employee = service.findEmployeeByLogin(login);
Employee employee = service.findEmployeeByUsername(login);
if(employee!=null){
return ResponseEntity.status(200).body("данный логин существует - можно пользоваться приложением");
@ -46,7 +52,7 @@ public class EmployeeController {
return ResponseEntity.status(400).body("что-то пошло не так");
}
Employee employee = service.findEmployeeByLogin(login);
Employee employee = service.findEmployeeByUsername(login);
if(employee!=null){
return ResponseEntity.ok(employee);
@ -67,7 +73,7 @@ public class EmployeeController {
return ResponseEntity.status(400).body("что-то пошло не так");
}
Employee employee = service.findEmployeeByLogin(login);
Employee employee = service.findEmployeeByUsername(login);
if(employee!=null){
employee.setLastVisit(LocalDateTime.now().toString());
service.updateLocalTime(employee);
@ -79,6 +85,8 @@ public class EmployeeController {
}
}
@PostMapping("/registration")
public ResponseEntity<EmployeeDTO> registerEmployee(@RequestBody RegisterDTO dto) {
return ResponseEntity.status(HttpStatus.OK).body(service.createEmployee(dto));

View File

@ -13,7 +13,7 @@ public class EmployeeDTO {
private String photo;
private String position;
private String jobPos;
private String lastVisit;

View File

@ -13,6 +13,6 @@ public class RegisterDTO {
private String photo;
private String position;
private String jobPos;
}

View File

@ -1,4 +1,20 @@
package com.example.nto.entity;
public class Authority {
import lombok.Data;
//import org.springframework.security.core.GrantedAuthority;
import javax.persistence.*;
@Data
@Entity
@Table(name = "authorities")
public class Authority {//implements GrantedAuthority {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
@Column(name = "authority")
private String authority;
}

View File

@ -4,9 +4,10 @@ import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.Data;
import lombok.NoArgsConstructor;
//import org.springframework.security.core.userdetails.UserDetails;
import javax.persistence.*;
import java.time.LocalDateTime;
import java.util.Set;
@Data
@Builder
@ -14,13 +15,13 @@ import java.time.LocalDateTime;
@AllArgsConstructor
@Entity
@Table(name="employee")
public class Employee {
public class Employee {//implements UserDetails {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
@Column(name = "login")
private String login;
@Column(name = "username")
private String username;
@Column(name = "password")
private String password;
@ -31,9 +32,32 @@ public class Employee {
@Column(name = "photo")
private String photo;
@Column(name="position")
private String position;
@Column(name="job_pos")
private String jobPos;
@Column(name="lastVisit")
private String lastVisit;
// @ManyToMany(fetch = FetchType.EAGER)
// private Set<Authority> authorities;
// @Override
// public boolean isAccountNonExpired() {
// return true;
// }
//
// @Override
// public boolean isAccountNonLocked() {
// return true;
// }
//
// @Override
// public boolean isCredentialsNonExpired() {
// return true;
// }
//
// @Override
// public boolean isEnabled() {
// return true;
// }
}

View File

@ -1,4 +1,7 @@
package com.example.nto.repository;
public interface AuthorityRepository {
import com.example.nto.entity.Employee;
import org.springframework.data.jpa.repository.JpaRepository;
public interface AuthorityRepository extends JpaRepository<Employee, Long> {
}

View File

@ -6,5 +6,5 @@ import org.springframework.data.jpa.repository.JpaRepository;
import java.util.Optional;
public interface EmployeeRepository extends JpaRepository<Employee, Long> {
public Optional<Employee> findEmployeeByLogin(String login);
public Optional<Employee> findEmployeeByUsername(String login);
}

View File

@ -8,6 +8,8 @@ import org.springframework.stereotype.Service;
@Service
public interface EmployeeService {
public void updateLocalTime(Employee employee);
public Employee findEmployeeByLogin(String login);
public Employee findEmployeeByUsername(String login);
EmployeeDTO createEmployee(RegisterDTO dto);
}

View File

@ -4,6 +4,7 @@ import com.example.nto.dto.EmployeeDTO;
import com.example.nto.dto.RegisterDTO;
import com.example.nto.entity.Employee;
import com.example.nto.exceptions.EmployeeAlreadyExistException;
import com.example.nto.exceptions.EmployeeNotFoundException;
import com.example.nto.repository.EmployeeRepository;
import com.example.nto.service.EmployeeService;
import com.example.nto.util.EmployeeMapper;
@ -24,25 +25,25 @@ public class EmployeeServiceImpl implements EmployeeService {
}
@Override
public Employee findEmployeeByLogin(String login) {
public Employee findEmployeeByUsername(String login) {
return repository.findEmployeeByLogin(login).get();
return repository.findEmployeeByUsername(login).orElseThrow(() -> new EmployeeNotFoundException("Employee with username "+login+" not found"));
}
@Override
public EmployeeDTO createEmployee(RegisterDTO dto) {
Optional<Employee> optionalEmployee = repository.findEmployeeByLogin(dto.getUsername());
Optional<Employee> optionalEmployee = repository.findEmployeeByUsername(dto.getUsername());
if(optionalEmployee.isPresent()){
throw new EmployeeAlreadyExistException("Employee with username " + dto.getUsername() +" already exist");
}
Employee employee = new Employee();
employee.setName(dto.getName());
employee.setLogin(dto.getUsername());
employee.setUsername(dto.getUsername());
employee.setPassword(dto.getPassword());
employee.setPhoto(dto.getPhoto());
employee.setPosition(dto.getPosition());
employee.setJobPos(dto.getJobPos());
employee.setLastVisit(LocalDateTime.now().toString());
return EmployeeMapper.convertToDTO(repository.save(employee));

View File

@ -1,4 +1,20 @@
package com.example.nto.service.impl;
public class UserDetailsServiceImpl {
}
//package com.example.nto.service.impl;
//
//import com.example.nto.repository.EmployeeRepository;
//import lombok.RequiredArgsConstructor;
//import org.springframework.security.core.userdetails.UserDetails;
//import org.springframework.security.core.userdetails.UserDetailsService;
//import org.springframework.security.core.userdetails.UsernameNotFoundException;
//import org.springframework.stereotype.Service;
//
//@Service
//@RequiredArgsConstructor
//public class UserDetailsServiceImpl implements UserDetailsService {
//
// private final EmployeeRepository employeeRepository;
//
// @Override
// public UserDetails loadUserByUsername(String s) throws UsernameNotFoundException{
// return employeeRepository.findEmployeeByUsername(s).get();
// }
//}

View File

@ -4,19 +4,16 @@ import com.example.nto.dto.EmployeeDTO;
import com.example.nto.entity.Employee;
import lombok.experimental.UtilityClass;
import java.time.format.DateTimeFormatter;
import java.time.format.FormatStyle;
@UtilityClass
public class EmployeeMapper {
public EmployeeDTO convertToDTO(Employee employee){
EmployeeDTO dto = new EmployeeDTO();
dto.setId(employee.getId());
dto.setUsername(employee.getLogin());
dto.setUsername(employee.getUsername());
dto.setName(employee.getName());
dto.setPhoto(employee.getPhoto());
dto.setPosition(employee.getPosition());
dto.setJobPos(employee.getJobPos());
dto.setLastVisit(employee.getLastVisit());
return dto;

View File

@ -1,11 +1,21 @@
server:
port: 8081
spring:
sql:
init:
mode: always
datasource:
url: jdbc:postgresql://localhost:5432/testdb
data: classpath:data.sql
schema: classpath:schema.sql
username: "postgres"
password: "MobileDev"
initialization-mode: always
driver-class-name:
org.postgresql.Driver
@ -18,7 +28,7 @@ spring:
hibernate:
#ddl-auto: none
ddl-auto: create
ddl-auto: create-drop
# Показываем запросы
show-sql: true

View File

@ -1,4 +1,9 @@
INSERT INTO employee (id, login, password, name, photo, position, last_visit)
INSERT INTO authorities (id, authority)
VALUES
(1, 'ROLE_EMPLOYEE'),
(2, 'ROLE_ADMIN');
INSERT INTO employee (id, username, password, name, photo, job_pos, last_visit)
VALUES
(1, 'pivanov', 'employee', 'Иванов Петр Федорович', 'https://funnyducks.ru/upload/iblock/0cd/0cdeb7ec3ed6fddda0f90fccee05557d.jpg', 'Разработчик', '2024-02-12T08:30'),
(2, 'ipetrov', 'employee', 'Петров Иван Константинович', 'https://funnyducks.ru/upload/iblock/0cd/0cdeb7ec3ed6fddda0f90fccee05557d.jpg', 'Аналитик', '2024-02-13T08:35'),
@ -11,4 +16,4 @@ VALUES
(9223372036854775807),
(1122334455667788990),
(998877665544332211),
(5566778899001122334);
(5566778899001122334);

View File

@ -0,0 +1,5 @@
CREATE TABLE IF NOT EXISTS authorities(
id auto_increment primary key, authority VARCHAR(255));
CREATE TABLE IF NOT EXISTS employee(
id auto_increment primary key, username VARCHAR(255), password VARCHAR(255), name VARCHAR(255), photo VARCHAR(255), job_pos VARCHAR(255), last_visit VARCHAR(255));