@@ -66,3 +66,13 @@ GRANT ALL ON SEQUENCES TO ncp_db;
|
|||||||
Зайти в контейнер:
|
Зайти в контейнер:
|
||||||
docker exec -it {name} bash
|
docker exec -it {name} bash
|
||||||
|
|
||||||
|
------
|
||||||
|
|
||||||
|
Создать для сущности FileEntity sequence для икремента индетификатора
|
||||||
|
|
||||||
|
CREATE SEQUENCE IF NOT EXISTS file_support_id_seq START 1;
|
||||||
|
|
||||||
|
ALTER TABLE file_entities
|
||||||
|
ALTER COLUMN support_id
|
||||||
|
SET DEFAULT nextval('file_support_id_seq');
|
||||||
|
|
||||||
|
|||||||
@@ -1,41 +0,0 @@
|
|||||||
package ru.soune.nocopy.dto.file;
|
|
||||||
|
|
||||||
import lombok.AllArgsConstructor;
|
|
||||||
import lombok.Builder;
|
|
||||||
import lombok.Data;
|
|
||||||
import lombok.NoArgsConstructor;
|
|
||||||
|
|
||||||
@Data
|
|
||||||
@Builder
|
|
||||||
@NoArgsConstructor
|
|
||||||
@AllArgsConstructor
|
|
||||||
public class FileApiResponse<T> {
|
|
||||||
|
|
||||||
private boolean success;
|
|
||||||
private String message;
|
|
||||||
private T data;
|
|
||||||
private String error;
|
|
||||||
|
|
||||||
public static <T> FileApiResponse<T> success(T data) {
|
|
||||||
return FileApiResponse.<T>builder()
|
|
||||||
.success(true)
|
|
||||||
.message("Operation completed successfully")
|
|
||||||
.data(data)
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static <T> FileApiResponse<T> success(String message, T data) {
|
|
||||||
return FileApiResponse.<T>builder()
|
|
||||||
.success(true)
|
|
||||||
.message(message)
|
|
||||||
.data(data)
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
|
|
||||||
public static <T> FileApiResponse<T> error(String error) {
|
|
||||||
return FileApiResponse.<T>builder()
|
|
||||||
.success(false)
|
|
||||||
.error(error)
|
|
||||||
.build();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -30,4 +30,5 @@ public class FileEntityResponse {
|
|||||||
private String formattedSize;
|
private String formattedSize;
|
||||||
private String downloadUrl;
|
private String downloadUrl;
|
||||||
private boolean existsOnDisk;
|
private boolean existsOnDisk;
|
||||||
|
private Integer supportId;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,10 +2,13 @@ package ru.soune.nocopy.entity.file;
|
|||||||
|
|
||||||
import jakarta.persistence.*;
|
import jakarta.persistence.*;
|
||||||
import lombok.*;
|
import lombok.*;
|
||||||
|
import org.hibernate.annotations.GenerationTime;
|
||||||
import org.springframework.data.annotation.CreatedDate;
|
import org.springframework.data.annotation.CreatedDate;
|
||||||
import org.springframework.data.annotation.LastModifiedDate;
|
import org.springframework.data.annotation.LastModifiedDate;
|
||||||
import org.springframework.data.jpa.domain.support.AuditingEntityListener;
|
import org.springframework.data.jpa.domain.support.AuditingEntityListener;
|
||||||
|
|
||||||
|
import java.sql.DriverManager;
|
||||||
|
import java.sql.SQLException;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
|
|
||||||
@Data
|
@Data
|
||||||
@@ -16,11 +19,13 @@ import java.time.LocalDateTime;
|
|||||||
@Table(name = "file_entities")
|
@Table(name = "file_entities")
|
||||||
@EntityListeners(AuditingEntityListener.class)
|
@EntityListeners(AuditingEntityListener.class)
|
||||||
public class FileEntity {
|
public class FileEntity {
|
||||||
|
|
||||||
@Id
|
@Id
|
||||||
@GeneratedValue(strategy = GenerationType.UUID)
|
@GeneratedValue(strategy = GenerationType.UUID)
|
||||||
private String id;
|
private String id;
|
||||||
|
|
||||||
|
@Column(name = "support_id", unique = true, updatable = false)
|
||||||
|
private Integer supportId;
|
||||||
|
|
||||||
@Column(name = "user_id", nullable = false)
|
@Column(name = "user_id", nullable = false)
|
||||||
private Long userId;
|
private Long userId;
|
||||||
|
|
||||||
@@ -70,9 +75,4 @@ public class FileEntity {
|
|||||||
}
|
}
|
||||||
this.updatedAt = LocalDateTime.now();
|
this.updatedAt = LocalDateTime.now();
|
||||||
}
|
}
|
||||||
|
|
||||||
@PreUpdate
|
|
||||||
public void preUpdate() {
|
|
||||||
this.updatedAt = LocalDateTime.now();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -17,7 +17,6 @@ import java.nio.file.Files;
|
|||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.nio.file.Paths;
|
import java.nio.file.Paths;
|
||||||
import java.time.LocalDateTime;
|
import java.time.LocalDateTime;
|
||||||
import java.time.ZoneOffset;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.stream.Collectors;
|
import java.util.stream.Collectors;
|
||||||
|
|
||||||
@@ -223,6 +222,7 @@ public class FileEntityService {
|
|||||||
.formattedSize(formatFileSize(fileEntity.getFileSize()))
|
.formattedSize(formatFileSize(fileEntity.getFileSize()))
|
||||||
.downloadUrl("/api/v" + version + "/files/download/" + fileEntity.getId())
|
.downloadUrl("/api/v" + version + "/files/download/" + fileEntity.getId())
|
||||||
.existsOnDisk(existsOnDisk)
|
.existsOnDisk(existsOnDisk)
|
||||||
|
.supportId(fileEntity.getSupportId())
|
||||||
.build();
|
.build();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user