mirror of
https://github.com/ccmjga/zhilu-admin
synced 2026-04-08 06:27:36 +00:00
init minio
This commit is contained in:
@@ -15,3 +15,11 @@ ALLOWED_ORIGINS=http://localhost,https://localhost,http://localhost:8080,http://
|
|||||||
ALLOWED_METHODS=*
|
ALLOWED_METHODS=*
|
||||||
ALLOWED_HEADERS=*
|
ALLOWED_HEADERS=*
|
||||||
ALLOWED_EXPOSE_HEADERS=*
|
ALLOWED_EXPOSE_HEADERS=*
|
||||||
|
# minio
|
||||||
|
MINIO_ENDPOINT=http://host.docker.internal:9000
|
||||||
|
MINIO_EXPOSE_PORT=9000
|
||||||
|
MINIO_WEB_PORT=9001
|
||||||
|
MINIO_STORE=~/docker/store/mjga/minio/data
|
||||||
|
MINIO_ROOT_USER=minio
|
||||||
|
MINIO_ROOT_PASSWORD=minio123
|
||||||
|
MINIO_DEFAULT_BUCKETS=zhilu
|
||||||
|
|||||||
@@ -53,6 +53,7 @@ dependencies {
|
|||||||
implementation("org.apache.commons:commons-lang3:3.17.0")
|
implementation("org.apache.commons:commons-lang3:3.17.0")
|
||||||
implementation("org.apache.commons:commons-collections4:4.4")
|
implementation("org.apache.commons:commons-collections4:4.4")
|
||||||
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0")
|
implementation("org.springdoc:springdoc-openapi-starter-webmvc-ui:2.6.0")
|
||||||
|
implementation("io.minio:minio:8.5.17")
|
||||||
implementation("org.jooq:jooq-meta:$jooqVersion")
|
implementation("org.jooq:jooq-meta:$jooqVersion")
|
||||||
implementation("com.auth0:java-jwt:4.4.0")
|
implementation("com.auth0:java-jwt:4.4.0")
|
||||||
implementation("org.flywaydb:flyway-core:$flywayVersion")
|
implementation("org.flywaydb:flyway-core:$flywayVersion")
|
||||||
|
|||||||
@@ -36,16 +36,9 @@ public class UserRolePermissionOperatorTool {
|
|||||||
if (user != null) {
|
if (user != null) {
|
||||||
throw new BusinessException("用户已存在");
|
throw new BusinessException("用户已存在");
|
||||||
}
|
}
|
||||||
identityAccessService.upsertUser(new UserUpsertDto(null, name, name, true));
|
identityAccessService.upsertUser(new UserUpsertDto(null, name, name, true, null));
|
||||||
}
|
}
|
||||||
|
|
||||||
// @Tool(value = "查询用户")
|
|
||||||
// List<User> queryUser(@P(value = "用户名",required = false) String username, @P(value =
|
|
||||||
// "开始日期",required = false) LocalDateTime startDate, @P(value = "结束日期",required = false)
|
|
||||||
// LocalDateTime endDate) {
|
|
||||||
// return userRepository.fetchBy(new UserQueryDto(username, startDate, endDate));
|
|
||||||
// }
|
|
||||||
|
|
||||||
@Tool(value = "删除用户")
|
@Tool(value = "删除用户")
|
||||||
void deleteUser(@P(value = "用户名") String username) {
|
void deleteUser(@P(value = "用户名") String username) {
|
||||||
userRepository.deleteByUsername(username);
|
userRepository.deleteByUsername(username);
|
||||||
@@ -56,7 +49,7 @@ public class UserRolePermissionOperatorTool {
|
|||||||
@P(value = "用户名") String name,
|
@P(value = "用户名") String name,
|
||||||
@P(value = "密码", required = false) String password,
|
@P(value = "密码", required = false) String password,
|
||||||
@P(value = "是否开启", required = false) Boolean enable) {
|
@P(value = "是否开启", required = false) Boolean enable) {
|
||||||
identityAccessService.upsertUser(new UserUpsertDto(null, name, password, enable));
|
identityAccessService.upsertUser(new UserUpsertDto(null, name, password, enable, null));
|
||||||
}
|
}
|
||||||
|
|
||||||
@Tool(value = {"给用户绑定角色", "给用户分配角色"})
|
@Tool(value = {"给用户绑定角色", "给用户分配角色"})
|
||||||
|
|||||||
@@ -0,0 +1,26 @@
|
|||||||
|
package com.zl.mjga.config.minio;
|
||||||
|
|
||||||
|
import io.minio.MinioClient;
|
||||||
|
import lombok.Getter;
|
||||||
|
import lombok.Setter;
|
||||||
|
import lombok.extern.slf4j.Slf4j;
|
||||||
|
import org.springframework.boot.context.properties.ConfigurationProperties;
|
||||||
|
import org.springframework.context.annotation.Bean;
|
||||||
|
import org.springframework.context.annotation.Configuration;
|
||||||
|
|
||||||
|
@Configuration
|
||||||
|
@Setter
|
||||||
|
@Getter
|
||||||
|
@ConfigurationProperties(prefix = "minio")
|
||||||
|
@Slf4j
|
||||||
|
public class MinIoConfig {
|
||||||
|
private String endpoint;
|
||||||
|
private String accessKey;
|
||||||
|
private String secretKey;
|
||||||
|
private String defaultBucket;
|
||||||
|
|
||||||
|
@Bean
|
||||||
|
public MinioClient minioClient() {
|
||||||
|
return MinioClient.builder().endpoint(endpoint).credentials(accessKey, secretKey).build();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,6 @@
|
|||||||
package com.zl.mjga.controller;
|
package com.zl.mjga.controller;
|
||||||
|
|
||||||
|
import com.zl.mjga.config.minio.MinIoConfig;
|
||||||
import com.zl.mjga.dto.PageRequestDto;
|
import com.zl.mjga.dto.PageRequestDto;
|
||||||
import com.zl.mjga.dto.PageResponseDto;
|
import com.zl.mjga.dto.PageResponseDto;
|
||||||
import com.zl.mjga.dto.department.DepartmentBindDto;
|
import com.zl.mjga.dto.department.DepartmentBindDto;
|
||||||
@@ -12,17 +13,23 @@ import com.zl.mjga.repository.PermissionRepository;
|
|||||||
import com.zl.mjga.repository.RoleRepository;
|
import com.zl.mjga.repository.RoleRepository;
|
||||||
import com.zl.mjga.repository.UserRepository;
|
import com.zl.mjga.repository.UserRepository;
|
||||||
import com.zl.mjga.service.IdentityAccessService;
|
import com.zl.mjga.service.IdentityAccessService;
|
||||||
|
import io.minio.MinioClient;
|
||||||
|
import io.minio.PutObjectArgs;
|
||||||
|
import io.minio.errors.*;
|
||||||
import jakarta.validation.Valid;
|
import jakarta.validation.Valid;
|
||||||
|
import java.awt.image.BufferedImage;
|
||||||
import java.security.Principal;
|
import java.security.Principal;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
import javax.imageio.ImageIO;
|
||||||
import lombok.RequiredArgsConstructor;
|
import lombok.RequiredArgsConstructor;
|
||||||
import org.jooq.generated.mjga.tables.pojos.User;
|
import org.jooq.generated.mjga.tables.pojos.User;
|
||||||
import org.springframework.http.HttpStatus;
|
import org.springframework.http.HttpStatus;
|
||||||
|
import org.springframework.http.MediaType;
|
||||||
import org.springframework.security.access.prepost.PreAuthorize;
|
import org.springframework.security.access.prepost.PreAuthorize;
|
||||||
import org.springframework.security.authentication.DisabledException;
|
import org.springframework.security.authentication.DisabledException;
|
||||||
import org.springframework.web.bind.annotation.*;
|
import org.springframework.web.bind.annotation.*;
|
||||||
|
import org.springframework.web.multipart.MultipartFile;
|
||||||
|
|
||||||
@SuppressWarnings("PMD.AvoidDuplicateLiterals")
|
|
||||||
@RestController
|
@RestController
|
||||||
@RequestMapping("/iam")
|
@RequestMapping("/iam")
|
||||||
@RequiredArgsConstructor
|
@RequiredArgsConstructor
|
||||||
@@ -32,6 +39,34 @@ public class IdentityAccessController {
|
|||||||
private final UserRepository userRepository;
|
private final UserRepository userRepository;
|
||||||
private final RoleRepository roleRepository;
|
private final RoleRepository roleRepository;
|
||||||
private final PermissionRepository permissionRepository;
|
private final PermissionRepository permissionRepository;
|
||||||
|
private final MinioClient minioClient;
|
||||||
|
private final MinIoConfig minIoConfig;
|
||||||
|
|
||||||
|
@PostMapping(
|
||||||
|
value = "/avatar/upload",
|
||||||
|
consumes = MediaType.MULTIPART_FORM_DATA_VALUE,
|
||||||
|
produces = MediaType.TEXT_PLAIN_VALUE)
|
||||||
|
public String uploadAvatar(Principal principal, @RequestPart("file") MultipartFile multipartFile)
|
||||||
|
throws Exception {
|
||||||
|
String objectName = String.format("avatar/%s/avatar.jpg", principal.getName());
|
||||||
|
if (multipartFile.isEmpty()) {
|
||||||
|
throw new BusinessException("上传的文件不能为空");
|
||||||
|
}
|
||||||
|
long size = multipartFile.getSize();
|
||||||
|
if (size > 200 * 1024) {
|
||||||
|
throw new BusinessException("头像文件大小不能超过200KB");
|
||||||
|
}
|
||||||
|
BufferedImage img = ImageIO.read(multipartFile.getInputStream());
|
||||||
|
if (img == null) {
|
||||||
|
throw new BusinessException("非法的上传文件");
|
||||||
|
}
|
||||||
|
minioClient.putObject(
|
||||||
|
PutObjectArgs.builder().bucket(minIoConfig.getDefaultBucket()).object(objectName).stream(
|
||||||
|
multipartFile.getInputStream(), size, -1)
|
||||||
|
.contentType(multipartFile.getContentType())
|
||||||
|
.build());
|
||||||
|
return objectName;
|
||||||
|
}
|
||||||
|
|
||||||
@GetMapping("/me")
|
@GetMapping("/me")
|
||||||
UserRolePermissionDto currentUser(Principal principal) {
|
UserRolePermissionDto currentUser(Principal principal) {
|
||||||
|
|||||||
@@ -19,6 +19,8 @@ public class UserRolePermissionDto {
|
|||||||
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)
|
||||||
private String password;
|
private String password;
|
||||||
|
|
||||||
|
private String avatar;
|
||||||
|
|
||||||
private Boolean enable;
|
private Boolean enable;
|
||||||
@Builder.Default private List<RoleDto> roles = new LinkedList<>();
|
@Builder.Default private List<RoleDto> roles = new LinkedList<>();
|
||||||
|
|
||||||
|
|||||||
@@ -14,4 +14,5 @@ public class UserUpsertDto {
|
|||||||
@NotEmpty private String username;
|
@NotEmpty private String username;
|
||||||
private String password;
|
private String password;
|
||||||
@NotNull private Boolean enable;
|
@NotNull private Boolean enable;
|
||||||
|
private String avatar;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ public class UserRepository extends UserDao {
|
|||||||
value(user.getId()).as("id"),
|
value(user.getId()).as("id"),
|
||||||
value(user.getUsername()).as("username"),
|
value(user.getUsername()).as("username"),
|
||||||
value(user.getPassword()).as("password"),
|
value(user.getPassword()).as("password"),
|
||||||
|
value(user.getAvatar()).as("avatar"),
|
||||||
value(user.getEnable()).as("enable"))
|
value(user.getEnable()).as("enable"))
|
||||||
.asTable("newUser"))
|
.asTable("newUser"))
|
||||||
.on(USER.ID.eq(DSL.field(DSL.name("newUser", "id"), Long.class)))
|
.on(USER.ID.eq(DSL.field(DSL.name("newUser", "id"), Long.class)))
|
||||||
@@ -46,11 +47,13 @@ public class UserRepository extends UserDao {
|
|||||||
StringUtils.isNotEmpty(user.getPassword())
|
StringUtils.isNotEmpty(user.getPassword())
|
||||||
? DSL.field(DSL.name("newUser", "password"), String.class)
|
? DSL.field(DSL.name("newUser", "password"), String.class)
|
||||||
: USER.PASSWORD)
|
: USER.PASSWORD)
|
||||||
|
.set(USER.AVATAR, DSL.field(DSL.name("newUser", "avatar"), String.class))
|
||||||
.set(USER.ENABLE, DSL.field(DSL.name("newUser", "enable"), Boolean.class))
|
.set(USER.ENABLE, DSL.field(DSL.name("newUser", "enable"), Boolean.class))
|
||||||
.whenNotMatchedThenInsert(USER.USERNAME, USER.PASSWORD, USER.ENABLE)
|
.whenNotMatchedThenInsert(USER.USERNAME, USER.PASSWORD, USER.AVATAR, USER.ENABLE)
|
||||||
.values(
|
.values(
|
||||||
DSL.field(DSL.name("newUser", "username"), String.class),
|
DSL.field(DSL.name("newUser", "username"), String.class),
|
||||||
DSL.field(DSL.name("newUser", "password"), String.class),
|
DSL.field(DSL.name("newUser", "password"), String.class),
|
||||||
|
DSL.field(DSL.name("newUser", "avatar"), String.class),
|
||||||
DSL.field(DSL.name("newUser", "enable"), Boolean.class))
|
DSL.field(DSL.name("newUser", "enable"), Boolean.class))
|
||||||
.execute();
|
.execute();
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -27,9 +27,18 @@ spring:
|
|||||||
enabled: true
|
enabled: true
|
||||||
locations: classpath:db/migration
|
locations: classpath:db/migration
|
||||||
default-schema: ${DATABASE_DEFAULT_SCHEMA}
|
default-schema: ${DATABASE_DEFAULT_SCHEMA}
|
||||||
|
servlet:
|
||||||
|
multipart:
|
||||||
|
max-file-size: 1MB
|
||||||
|
max-request-size: 10MB
|
||||||
springdoc:
|
springdoc:
|
||||||
swagger-ui:
|
swagger-ui:
|
||||||
path: /swagger-ui.html
|
path: /swagger-ui.html
|
||||||
jwt:
|
jwt:
|
||||||
secret: ${JWT_SECRET:secret}
|
secret: ${JWT_SECRET:secret}
|
||||||
expiration-min: ${JWT_EXPIRATION_MIN:100}
|
expiration-min: ${JWT_EXPIRATION_MIN:100}
|
||||||
|
minio:
|
||||||
|
endpoint: ${MINIO_ENDPOINT}
|
||||||
|
access-key: ${MINIO_ROOT_USER}
|
||||||
|
secret-key: ${MINIO_ROOT_PASSWORD}
|
||||||
|
default-bucket: ${MINIO_DEFAULT_BUCKETS}
|
||||||
@@ -3,6 +3,7 @@ CREATE SCHEMA IF NOT EXISTS mjga;
|
|||||||
CREATE TABLE mjga.user (
|
CREATE TABLE mjga.user (
|
||||||
id BIGSERIAL PRIMARY KEY,
|
id BIGSERIAL PRIMARY KEY,
|
||||||
username VARCHAR NOT NULL UNIQUE,
|
username VARCHAR NOT NULL UNIQUE,
|
||||||
|
avatar VARCHAR,
|
||||||
create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
password VARCHAR NOT NULL,
|
password VARCHAR NOT NULL,
|
||||||
enable BOOLEAN NOT NULL DEFAULT TRUE
|
enable BOOLEAN NOT NULL DEFAULT TRUE
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import static org.springframework.test.web.servlet.request.MockMvcRequestBuilder
|
|||||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
|
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.jsonPath;
|
||||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
||||||
|
|
||||||
|
import com.zl.mjga.config.minio.MinIoConfig;
|
||||||
import com.zl.mjga.config.security.HttpFireWallConfig;
|
import com.zl.mjga.config.security.HttpFireWallConfig;
|
||||||
import com.zl.mjga.controller.IdentityAccessController;
|
import com.zl.mjga.controller.IdentityAccessController;
|
||||||
import com.zl.mjga.dto.PageRequestDto;
|
import com.zl.mjga.dto.PageRequestDto;
|
||||||
@@ -15,6 +16,7 @@ import com.zl.mjga.repository.PermissionRepository;
|
|||||||
import com.zl.mjga.repository.RoleRepository;
|
import com.zl.mjga.repository.RoleRepository;
|
||||||
import com.zl.mjga.repository.UserRepository;
|
import com.zl.mjga.repository.UserRepository;
|
||||||
import com.zl.mjga.service.IdentityAccessService;
|
import com.zl.mjga.service.IdentityAccessService;
|
||||||
|
import io.minio.MinioClient;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.springframework.beans.factory.annotation.Autowired;
|
import org.springframework.beans.factory.annotation.Autowired;
|
||||||
@@ -34,6 +36,8 @@ public class JacksonAnnotationMvcTest {
|
|||||||
@MockBean private UserRepository userRepository;
|
@MockBean private UserRepository userRepository;
|
||||||
@MockBean private RoleRepository roleRepository;
|
@MockBean private RoleRepository roleRepository;
|
||||||
@MockBean private PermissionRepository permissionRepository;
|
@MockBean private PermissionRepository permissionRepository;
|
||||||
|
@MockBean private MinioClient minioClient;
|
||||||
|
@MockBean private MinIoConfig minIoConfig;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@WithMockUser
|
@WithMockUser
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.
|
|||||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
||||||
|
|
||||||
import com.fasterxml.jackson.databind.ObjectMapper;
|
import com.fasterxml.jackson.databind.ObjectMapper;
|
||||||
|
import com.zl.mjga.config.minio.MinIoConfig;
|
||||||
import com.zl.mjga.config.security.HttpFireWallConfig;
|
import com.zl.mjga.config.security.HttpFireWallConfig;
|
||||||
import com.zl.mjga.controller.IdentityAccessController;
|
import com.zl.mjga.controller.IdentityAccessController;
|
||||||
import com.zl.mjga.dto.PageRequestDto;
|
import com.zl.mjga.dto.PageRequestDto;
|
||||||
@@ -16,6 +17,7 @@ import com.zl.mjga.repository.PermissionRepository;
|
|||||||
import com.zl.mjga.repository.RoleRepository;
|
import com.zl.mjga.repository.RoleRepository;
|
||||||
import com.zl.mjga.repository.UserRepository;
|
import com.zl.mjga.repository.UserRepository;
|
||||||
import com.zl.mjga.service.IdentityAccessService;
|
import com.zl.mjga.service.IdentityAccessService;
|
||||||
|
import io.minio.MinioClient;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import org.jooq.generated.mjga.tables.pojos.User;
|
import org.jooq.generated.mjga.tables.pojos.User;
|
||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
@@ -36,6 +38,8 @@ class UserRolePermissionMvcTest {
|
|||||||
@MockBean private UserRepository userRepository;
|
@MockBean private UserRepository userRepository;
|
||||||
@MockBean private RoleRepository roleRepository;
|
@MockBean private RoleRepository roleRepository;
|
||||||
@MockBean private PermissionRepository permissionRepository;
|
@MockBean private PermissionRepository permissionRepository;
|
||||||
|
@MockBean private MinioClient minioClient;
|
||||||
|
@MockBean private MinIoConfig minIoConfig;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@WithMockUser
|
@WithMockUser
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ import org.testcontainers.junit.jupiter.Testcontainers;
|
|||||||
public class AbstractDataAccessLayerTest {
|
public class AbstractDataAccessLayerTest {
|
||||||
|
|
||||||
public static PostgreSQLContainer<?> postgres =
|
public static PostgreSQLContainer<?> postgres =
|
||||||
new PostgreSQLContainer<>("postgres:17.3-alpine").withDatabaseName("mjga");
|
new PostgreSQLContainer<>("pgvector/pgvector:pg17").withDatabaseName("mjga");
|
||||||
|
|
||||||
@DynamicPropertySource
|
@DynamicPropertySource
|
||||||
static void postgresProperties(DynamicPropertyRegistry registry) {
|
static void postgresProperties(DynamicPropertyRegistry registry) {
|
||||||
|
|||||||
@@ -34,9 +34,9 @@ public class SortByDALTest extends AbstractDataAccessLayerTest {
|
|||||||
void userPageFetchWithNoSort() {
|
void userPageFetchWithNoSort() {
|
||||||
UserQueryDto rbacQueryDto = new UserQueryDto("test", null, null);
|
UserQueryDto rbacQueryDto = new UserQueryDto("test", null, null);
|
||||||
Result<Record> records = userRepository.pageFetchBy(PageRequestDto.of(1, 10), rbacQueryDto);
|
Result<Record> records = userRepository.pageFetchBy(PageRequestDto.of(1, 10), rbacQueryDto);
|
||||||
assertThat(records.get(0).get(USER.ID)).isEqualTo(1);
|
assertThat(records.get(2).get(USER.ID)).isEqualTo(1);
|
||||||
assertThat(records.get(1).get(USER.ID)).isEqualTo(2);
|
assertThat(records.get(1).get(USER.ID)).isEqualTo(2);
|
||||||
assertThat(records.get(2).get(USER.ID)).isEqualTo(3);
|
assertThat(records.get(0).get(USER.ID)).isEqualTo(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
|||||||
@@ -100,8 +100,8 @@ public class UserRolePermissionDALTest extends AbstractDataAccessLayerTest {
|
|||||||
Result<Record> records = userRepository.pageFetchBy(PageRequestDto.of(1, 10), rbacQueryDto);
|
Result<Record> records = userRepository.pageFetchBy(PageRequestDto.of(1, 10), rbacQueryDto);
|
||||||
assertThat(records.size()).isEqualTo(2);
|
assertThat(records.size()).isEqualTo(2);
|
||||||
|
|
||||||
assertThat(records.get(0).get(USER.ID)).isEqualTo(1);
|
assertThat(records.get(1).get(USER.ID)).isEqualTo(1);
|
||||||
assertThat(records.get(1).get(USER.ID)).isEqualTo(2);
|
assertThat(records.get(0).get(USER.ID)).isEqualTo(2);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@@ -142,8 +142,8 @@ public class UserRolePermissionDALTest extends AbstractDataAccessLayerTest {
|
|||||||
roleQueryDto.setBindState(BindState.ALL);
|
roleQueryDto.setBindState(BindState.ALL);
|
||||||
Result<Record> records = roleRepository.pageFetchBy(PageRequestDto.of(1, 10), roleQueryDto);
|
Result<Record> records = roleRepository.pageFetchBy(PageRequestDto.of(1, 10), roleQueryDto);
|
||||||
assertThat(records.get(0).getValue("total_role")).isEqualTo(2);
|
assertThat(records.get(0).getValue("total_role")).isEqualTo(2);
|
||||||
assertThat(records.get(0).getValue(ROLE.NAME)).isEqualTo("testRoleA");
|
assertThat(records.get(1).getValue(ROLE.NAME)).isEqualTo("testRoleA");
|
||||||
assertThat(records.get(1).getValue(ROLE.NAME)).isEqualTo("testRoleB");
|
assertThat(records.get(0).getValue(ROLE.NAME)).isEqualTo("testRoleB");
|
||||||
|
|
||||||
roleQueryDto = new RoleQueryDto();
|
roleQueryDto = new RoleQueryDto();
|
||||||
roleQueryDto.setRoleCode("testRoleA");
|
roleQueryDto.setRoleCode("testRoleA");
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ import static org.springframework.security.test.web.servlet.request.SecurityMock
|
|||||||
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
|
import static org.springframework.test.web.servlet.request.MockMvcRequestBuilders.post;
|
||||||
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
import static org.springframework.test.web.servlet.result.MockMvcResultMatchers.status;
|
||||||
|
|
||||||
|
import com.zl.mjga.config.minio.MinIoConfig;
|
||||||
import com.zl.mjga.config.security.HttpFireWallConfig;
|
import com.zl.mjga.config.security.HttpFireWallConfig;
|
||||||
import com.zl.mjga.config.security.Jwt;
|
import com.zl.mjga.config.security.Jwt;
|
||||||
import com.zl.mjga.config.security.UserDetailsServiceImpl;
|
import com.zl.mjga.config.security.UserDetailsServiceImpl;
|
||||||
@@ -19,6 +20,7 @@ import com.zl.mjga.repository.RoleRepository;
|
|||||||
import com.zl.mjga.repository.UserRepository;
|
import com.zl.mjga.repository.UserRepository;
|
||||||
import com.zl.mjga.service.IdentityAccessService;
|
import com.zl.mjga.service.IdentityAccessService;
|
||||||
import com.zl.mjga.service.SignService;
|
import com.zl.mjga.service.SignService;
|
||||||
|
import io.minio.MinioClient;
|
||||||
import jakarta.servlet.http.HttpServletRequest;
|
import jakarta.servlet.http.HttpServletRequest;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
@@ -49,6 +51,8 @@ public class AuthenticationAndAuthorityTest {
|
|||||||
@MockBean private UserRepository userRepository;
|
@MockBean private UserRepository userRepository;
|
||||||
@MockBean private RoleRepository roleRepository;
|
@MockBean private RoleRepository roleRepository;
|
||||||
@MockBean private PermissionRepository permissionRepository;
|
@MockBean private PermissionRepository permissionRepository;
|
||||||
|
@MockBean private MinioClient minioClient;
|
||||||
|
@MockBean private MinIoConfig minIoConfig;
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void givenRequestOnPublicService_shouldSucceedWith200() throws Exception {
|
public void givenRequestOnPublicService_shouldSucceedWith200() throws Exception {
|
||||||
|
|||||||
@@ -3,7 +3,8 @@ CREATE SCHEMA IF NOT EXISTS mjga;
|
|||||||
CREATE TABLE mjga.user (
|
CREATE TABLE mjga.user (
|
||||||
id BIGSERIAL PRIMARY KEY,
|
id BIGSERIAL PRIMARY KEY,
|
||||||
username VARCHAR NOT NULL UNIQUE,
|
username VARCHAR NOT NULL UNIQUE,
|
||||||
create_time TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
avatar VARCHAR,
|
||||||
|
create_time TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT CURRENT_TIMESTAMP,
|
||||||
password VARCHAR NOT NULL,
|
password VARCHAR NOT NULL,
|
||||||
enable BOOLEAN NOT NULL DEFAULT TRUE
|
enable BOOLEAN NOT NULL DEFAULT TRUE
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -3,9 +3,12 @@ VITE_SOURCE_MAP=true
|
|||||||
# mock
|
# mock
|
||||||
#VITE_ENABLE_MOCK=true
|
#VITE_ENABLE_MOCK=true
|
||||||
#VITE_BASE_URL=http://localhost:5173
|
#VITE_BASE_URL=http://localhost:5173
|
||||||
|
#VITE_STATIC_URL=http://localhost:5173/static
|
||||||
# local
|
# local
|
||||||
VITE_ENABLE_MOCK=false
|
VITE_ENABLE_MOCK=false
|
||||||
VITE_BASE_URL=http://localhost:8080
|
VITE_BASE_URL=http://localhost:8080
|
||||||
|
VITE_STATIC_URL=http://localhost:8080/static
|
||||||
# dev
|
# dev
|
||||||
#VITE_ENABLE_MOCK=false
|
#VITE_ENABLE_MOCK=false
|
||||||
#VITE_BASE_URL=https://localhost/api
|
#VITE_BASE_URL=https://localhost/api
|
||||||
|
#VITE_STATIC_URL=https://localhost/
|
||||||
|
|||||||
29
frontend/package-lock.json
generated
29
frontend/package-lock.json
generated
@@ -13,6 +13,7 @@
|
|||||||
"@vuepic/vue-datepicker": "^11.0.2",
|
"@vuepic/vue-datepicker": "^11.0.2",
|
||||||
"@vueuse/core": "^13.0.0",
|
"@vueuse/core": "^13.0.0",
|
||||||
"apexcharts": "^3.46.0",
|
"apexcharts": "^3.46.0",
|
||||||
|
"compressorjs": "^1.2.1",
|
||||||
"dayjs": "^1.11.13",
|
"dayjs": "^1.11.13",
|
||||||
"dompurify": "^3.2.6",
|
"dompurify": "^3.2.6",
|
||||||
"flowbite": "^3.1.2",
|
"flowbite": "^3.1.2",
|
||||||
@@ -2901,6 +2902,12 @@
|
|||||||
"url": "https://github.com/sponsors/antfu"
|
"url": "https://github.com/sponsors/antfu"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/blueimp-canvas-to-blob": {
|
||||||
|
"version": "3.29.0",
|
||||||
|
"resolved": "http://mirrors.tencent.com/npm/blueimp-canvas-to-blob/-/blueimp-canvas-to-blob-3.29.0.tgz",
|
||||||
|
"integrity": "sha512-0pcSSGxC0QxT+yVkivxIqW0Y4VlO2XSDPofBAqoJ1qJxgH9eiUDLv50Rixij2cDuEfx4M6DpD9UGZpRhT5Q8qg==",
|
||||||
|
"license": "MIT"
|
||||||
|
},
|
||||||
"node_modules/brace-expansion": {
|
"node_modules/brace-expansion": {
|
||||||
"version": "2.0.1",
|
"version": "2.0.1",
|
||||||
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz",
|
||||||
@@ -3166,6 +3173,16 @@
|
|||||||
"node": ">=14"
|
"node": ">=14"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"node_modules/compressorjs": {
|
||||||
|
"version": "1.2.1",
|
||||||
|
"resolved": "http://mirrors.tencent.com/npm/compressorjs/-/compressorjs-1.2.1.tgz",
|
||||||
|
"integrity": "sha512-+geIjeRnPhQ+LLvvA7wxBQE5ddeLU7pJ3FsKFWirDw6veY3s9iLxAQEw7lXGHnhCJvBujEQWuNnGzZcvCvdkLQ==",
|
||||||
|
"license": "MIT",
|
||||||
|
"dependencies": {
|
||||||
|
"blueimp-canvas-to-blob": "^3.29.0",
|
||||||
|
"is-blob": "^2.1.0"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/config-chain": {
|
"node_modules/config-chain": {
|
||||||
"version": "1.1.13",
|
"version": "1.1.13",
|
||||||
"resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz",
|
"resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz",
|
||||||
@@ -3919,6 +3936,18 @@
|
|||||||
"dev": true,
|
"dev": true,
|
||||||
"license": "ISC"
|
"license": "ISC"
|
||||||
},
|
},
|
||||||
|
"node_modules/is-blob": {
|
||||||
|
"version": "2.1.0",
|
||||||
|
"resolved": "http://mirrors.tencent.com/npm/is-blob/-/is-blob-2.1.0.tgz",
|
||||||
|
"integrity": "sha512-SZ/fTft5eUhQM6oF/ZaASFDEdbFVe89Imltn9uZr03wdKMcWNVYSMjQPFtg05QuNkt5l5c135ElvXEQG0rk4tw==",
|
||||||
|
"license": "MIT",
|
||||||
|
"engines": {
|
||||||
|
"node": ">=6"
|
||||||
|
},
|
||||||
|
"funding": {
|
||||||
|
"url": "https://github.com/sponsors/sindresorhus"
|
||||||
|
}
|
||||||
|
},
|
||||||
"node_modules/is-core-module": {
|
"node_modules/is-core-module": {
|
||||||
"version": "2.16.1",
|
"version": "2.16.1",
|
||||||
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
|
"resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz",
|
||||||
|
|||||||
@@ -23,6 +23,7 @@
|
|||||||
"@vuepic/vue-datepicker": "^11.0.2",
|
"@vuepic/vue-datepicker": "^11.0.2",
|
||||||
"@vueuse/core": "^13.0.0",
|
"@vueuse/core": "^13.0.0",
|
||||||
"apexcharts": "^3.46.0",
|
"apexcharts": "^3.46.0",
|
||||||
|
"compressorjs": "^1.2.1",
|
||||||
"dayjs": "^1.11.13",
|
"dayjs": "^1.11.13",
|
||||||
"dompurify": "^3.2.6",
|
"dompurify": "^3.2.6",
|
||||||
"flowbite": "^3.1.2",
|
"flowbite": "^3.1.2",
|
||||||
|
|||||||
@@ -610,6 +610,44 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"/iam/avatar/upload": {
|
||||||
|
"post": {
|
||||||
|
"tags": [
|
||||||
|
"identity-access-controller"
|
||||||
|
],
|
||||||
|
"operationId": "uploadAvatar",
|
||||||
|
"requestBody": {
|
||||||
|
"content": {
|
||||||
|
"multipart/form-data": {
|
||||||
|
"schema": {
|
||||||
|
"required": [
|
||||||
|
"file"
|
||||||
|
],
|
||||||
|
"type": "object",
|
||||||
|
"properties": {
|
||||||
|
"file": {
|
||||||
|
"type": "string",
|
||||||
|
"format": "binary"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"responses": {
|
||||||
|
"200": {
|
||||||
|
"description": "OK",
|
||||||
|
"content": {
|
||||||
|
"text/plain": {
|
||||||
|
"schema": {
|
||||||
|
"type": "string"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"/department": {
|
"/department": {
|
||||||
"post": {
|
"post": {
|
||||||
"tags": [
|
"tags": [
|
||||||
@@ -1300,6 +1338,9 @@
|
|||||||
},
|
},
|
||||||
"enable": {
|
"enable": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"avatar": {
|
||||||
|
"type": "string"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
@@ -1732,6 +1773,9 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"writeOnly": true
|
"writeOnly": true
|
||||||
},
|
},
|
||||||
|
"avatar": {
|
||||||
|
"type": "string"
|
||||||
|
},
|
||||||
"enable": {
|
"enable": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
},
|
},
|
||||||
|
|||||||
45
frontend/src/api/types/schema.d.ts
vendored
45
frontend/src/api/types/schema.d.ts
vendored
@@ -292,6 +292,22 @@ export interface paths {
|
|||||||
patch?: never;
|
patch?: never;
|
||||||
trace?: never;
|
trace?: never;
|
||||||
};
|
};
|
||||||
|
"/iam/avatar/upload": {
|
||||||
|
parameters: {
|
||||||
|
query?: never;
|
||||||
|
header?: never;
|
||||||
|
path?: never;
|
||||||
|
cookie?: never;
|
||||||
|
};
|
||||||
|
get?: never;
|
||||||
|
put?: never;
|
||||||
|
post: operations["uploadAvatar"];
|
||||||
|
delete?: never;
|
||||||
|
options?: never;
|
||||||
|
head?: never;
|
||||||
|
patch?: never;
|
||||||
|
trace?: never;
|
||||||
|
};
|
||||||
"/department": {
|
"/department": {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: never;
|
query?: never;
|
||||||
@@ -631,6 +647,7 @@ export interface components {
|
|||||||
username: string;
|
username: string;
|
||||||
password?: string;
|
password?: string;
|
||||||
enable: boolean;
|
enable: boolean;
|
||||||
|
avatar?: string;
|
||||||
};
|
};
|
||||||
RoleUpsertDto: {
|
RoleUpsertDto: {
|
||||||
/** Format: int64 */
|
/** Format: int64 */
|
||||||
@@ -780,6 +797,7 @@ export interface components {
|
|||||||
id?: number;
|
id?: number;
|
||||||
username?: string;
|
username?: string;
|
||||||
password?: string;
|
password?: string;
|
||||||
|
avatar?: string;
|
||||||
enable?: boolean;
|
enable?: boolean;
|
||||||
roles?: components["schemas"]["RoleDto"][];
|
roles?: components["schemas"]["RoleDto"][];
|
||||||
/** Format: date-time */
|
/** Format: date-time */
|
||||||
@@ -1402,6 +1420,33 @@ export interface operations {
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
uploadAvatar: {
|
||||||
|
parameters: {
|
||||||
|
query?: never;
|
||||||
|
header?: never;
|
||||||
|
path?: never;
|
||||||
|
cookie?: never;
|
||||||
|
};
|
||||||
|
requestBody?: {
|
||||||
|
content: {
|
||||||
|
"multipart/form-data": {
|
||||||
|
/** Format: binary */
|
||||||
|
file: string;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
responses: {
|
||||||
|
/** @description OK */
|
||||||
|
200: {
|
||||||
|
headers: {
|
||||||
|
[name: string]: unknown;
|
||||||
|
};
|
||||||
|
content: {
|
||||||
|
"text/plain": string;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
upsertDepartment: {
|
upsertDepartment: {
|
||||||
parameters: {
|
parameters: {
|
||||||
query?: never;
|
query?: never;
|
||||||
|
|||||||
@@ -111,8 +111,15 @@ import useUserStore from "../composables/store/useUserStore";
|
|||||||
import { useUserUpsert } from "../composables/user/useUserUpsert";
|
import { useUserUpsert } from "../composables/user/useUserUpsert";
|
||||||
import type { UserUpsertSubmitModel } from "../types/user";
|
import type { UserUpsertSubmitModel } from "../types/user";
|
||||||
|
|
||||||
const { messages, chat, isLoading, cancel, searchAction, executeAction, clearConversation } =
|
const {
|
||||||
useAiChat();
|
messages,
|
||||||
|
chat,
|
||||||
|
isLoading,
|
||||||
|
cancel,
|
||||||
|
searchAction,
|
||||||
|
executeAction,
|
||||||
|
clearConversation,
|
||||||
|
} = useAiChat();
|
||||||
const { user } = useUserStore();
|
const { user } = useUserStore();
|
||||||
const userUpsertModal = ref<ModalInterface>();
|
const userUpsertModal = ref<ModalInterface>();
|
||||||
const departmentUpsertModal = ref<ModalInterface>();
|
const departmentUpsertModal = ref<ModalInterface>();
|
||||||
|
|||||||
@@ -41,6 +41,10 @@
|
|||||||
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5"
|
class="bg-gray-50 border border-gray-300 text-gray-900 text-sm rounded-lg focus:ring-blue-500 focus:border-blue-500 block w-full p-2.5"
|
||||||
required placeholder="编辑时非必填" />
|
required placeholder="编辑时非必填" />
|
||||||
</div>
|
</div>
|
||||||
|
<label class="block mb-2 text-sm font-medium text-gray-900" for="file_input">上传头像</label>
|
||||||
|
<input
|
||||||
|
class="block w-full text-sm text-gray-900 border border-gray-300 rounded-lg cursor-pointer bg-gray-50 focus:outline-none"
|
||||||
|
id="file_input" type="file" accept="image/*" @change="handleFileChange">
|
||||||
<div class="w-full">
|
<div class="w-full">
|
||||||
<label for="status" class="block mb-2 text-sm font-medium text-gray-900">状态</label>
|
<label for="status" class="block mb-2 text-sm font-medium text-gray-900">状态</label>
|
||||||
<select id="status" v-model="formData.enable"
|
<select id="status" v-model="formData.enable"
|
||||||
@@ -61,11 +65,15 @@
|
|||||||
|
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
import { useUserUpsert } from "@/composables/user/useUserUpsert";
|
||||||
import type { UserUpsertSubmitModel } from "@/types/user";
|
import type { UserUpsertSubmitModel } from "@/types/user";
|
||||||
|
import Compressor from "compressorjs";
|
||||||
import { initFlowbite } from "flowbite";
|
import { initFlowbite } from "flowbite";
|
||||||
import { onMounted, ref, watch } from "vue";
|
import { onMounted, ref, watch } from "vue";
|
||||||
import { z } from "zod";
|
import { z } from "zod";
|
||||||
import type { components } from "../api/types/schema";
|
import type { components } from "../api/types/schema";
|
||||||
|
import { ValidationError } from "@/types/error";
|
||||||
|
import useAlertStore from "@/composables/store/useAlertStore";
|
||||||
|
|
||||||
const { user, onSubmit } = defineProps<{
|
const { user, onSubmit } = defineProps<{
|
||||||
user?: components["schemas"]["UserRolePermissionDto"];
|
user?: components["schemas"]["UserRolePermissionDto"];
|
||||||
@@ -74,12 +82,15 @@ const { user, onSubmit } = defineProps<{
|
|||||||
}>();
|
}>();
|
||||||
|
|
||||||
const formData = ref();
|
const formData = ref();
|
||||||
|
const { uploadUserAvatar } = useUserUpsert();
|
||||||
|
const { showAlert } = useAlertStore();
|
||||||
|
|
||||||
const updateFormData = (newUser: typeof user) => {
|
const updateFormData = (newUser: typeof user) => {
|
||||||
formData.value = {
|
formData.value = {
|
||||||
id: newUser?.id,
|
id: newUser?.id,
|
||||||
username: newUser?.username,
|
username: newUser?.username,
|
||||||
password: undefined,
|
password: undefined,
|
||||||
|
avatar: newUser?.avatar ?? undefined,
|
||||||
enable: newUser?.enable ?? true,
|
enable: newUser?.enable ?? true,
|
||||||
confirmPassword: undefined,
|
confirmPassword: undefined,
|
||||||
};
|
};
|
||||||
@@ -89,10 +100,51 @@ watch(() => user, updateFormData, {
|
|||||||
immediate: true,
|
immediate: true,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
const validateFile = (file?: File) => {
|
||||||
|
if (!file) {
|
||||||
|
throw new ValidationError("您未选择文件");
|
||||||
|
}
|
||||||
|
const allowedTypes = ["image/jpeg", "image/png", "image/gif"];
|
||||||
|
if (!allowedTypes.includes(file.type)) {
|
||||||
|
throw new ValidationError("不支持的文件类型");
|
||||||
|
}
|
||||||
|
const maxSize = 200 * 1024; // 200KB
|
||||||
|
if (file.size > maxSize) {
|
||||||
|
throw new ValidationError("文件大小超过限制(200KB)");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
const handleFileChange = (event: Event) => {
|
||||||
|
const file = (event.target as HTMLInputElement).files?.[0];
|
||||||
|
try {
|
||||||
|
validateFile(file);
|
||||||
|
new Compressor(file!, {
|
||||||
|
quality: 0.8, // 压缩质量,0-1之间
|
||||||
|
maxWidth: 800, // 最大宽度
|
||||||
|
maxHeight: 800, // 最大高度
|
||||||
|
mimeType: "auto", // 自动选择最佳格式
|
||||||
|
success: async (compressedFile: File) => {
|
||||||
|
formData.value.avatar = await uploadUserAvatar(compressedFile);
|
||||||
|
showAlert({
|
||||||
|
content: "上传成功",
|
||||||
|
level: "success",
|
||||||
|
});
|
||||||
|
},
|
||||||
|
error: (err: Error) => {
|
||||||
|
throw err;
|
||||||
|
},
|
||||||
|
});
|
||||||
|
} catch (error) {
|
||||||
|
(event.target as HTMLInputElement).value = "";
|
||||||
|
throw error;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
const handleSubmit = async () => {
|
const handleSubmit = async () => {
|
||||||
const userSchema = z
|
const userSchema = z
|
||||||
.object({
|
.object({
|
||||||
id: z.number().optional(),
|
id: z.number().optional(),
|
||||||
|
avatar: z.string().optional(),
|
||||||
username: z
|
username: z
|
||||||
.string({
|
.string({
|
||||||
message: "用户名不能为空",
|
message: "用户名不能为空",
|
||||||
|
|||||||
@@ -1,20 +1,35 @@
|
|||||||
import { ref } from "vue";
|
|
||||||
import client from "../../api/client";
|
import client from "../../api/client";
|
||||||
import type { UserUpsertSubmitModel } from "../../types/user";
|
import type { UserUpsertSubmitModel } from "../../types/user";
|
||||||
|
|
||||||
export const useUserUpsert = () => {
|
export const useUserUpsert = () => {
|
||||||
|
const uploadUserAvatar = async (file: File) => {
|
||||||
|
const { data } = await client.POST("/iam/avatar/upload", {
|
||||||
|
body: {
|
||||||
|
file: file as unknown as string,
|
||||||
|
},
|
||||||
|
bodySerializer: (body) => {
|
||||||
|
const formData = new FormData();
|
||||||
|
formData.set("file", body?.file as unknown as string);
|
||||||
|
return formData;
|
||||||
|
},
|
||||||
|
parseAs: "text",
|
||||||
|
});
|
||||||
|
return data;
|
||||||
|
};
|
||||||
const upsertUser = async (user: UserUpsertSubmitModel) => {
|
const upsertUser = async (user: UserUpsertSubmitModel) => {
|
||||||
const { data } = await client.POST("/iam/user", {
|
await client.POST("/iam/user", {
|
||||||
body: {
|
body: {
|
||||||
id: user.id,
|
id: user.id,
|
||||||
username: user.username,
|
username: user.username,
|
||||||
password: user.password,
|
password: user.password,
|
||||||
enable: user.enable,
|
enable: user.enable,
|
||||||
|
avatar: user.avatar,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
uploadUserAvatar,
|
||||||
upsertUser,
|
upsertUser,
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,3 +1,10 @@
|
|||||||
|
class ValidationError extends Error {
|
||||||
|
constructor(message: string) {
|
||||||
|
super(message);
|
||||||
|
this.name = "ValidationError";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
class HttpError extends Error {
|
class HttpError extends Error {
|
||||||
status: number;
|
status: number;
|
||||||
detail?: string;
|
detail?: string;
|
||||||
@@ -37,4 +44,10 @@ class InternalServerError extends HttpError {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export { UnAuthError, ForbiddenError, RequestError, InternalServerError };
|
export {
|
||||||
|
UnAuthError,
|
||||||
|
ForbiddenError,
|
||||||
|
RequestError,
|
||||||
|
InternalServerError,
|
||||||
|
ValidationError,
|
||||||
|
};
|
||||||
|
|||||||
1
frontend/src/types/user.d.ts
vendored
1
frontend/src/types/user.d.ts
vendored
@@ -3,6 +3,7 @@ export interface UserUpsertSubmitModel {
|
|||||||
username: string;
|
username: string;
|
||||||
password?: string;
|
password?: string;
|
||||||
enable: boolean;
|
enable: boolean;
|
||||||
|
avatar?: string;
|
||||||
}
|
}
|
||||||
|
|
||||||
export type User = UserRolePermissionModel | null;
|
export type User = UserRolePermissionModel | null;
|
||||||
|
|||||||
@@ -5,6 +5,7 @@ import {
|
|||||||
ForbiddenError,
|
ForbiddenError,
|
||||||
InternalServerError,
|
InternalServerError,
|
||||||
RequestError,
|
RequestError,
|
||||||
|
ValidationError,
|
||||||
UnAuthError,
|
UnAuthError,
|
||||||
} from "../types/error";
|
} from "../types/error";
|
||||||
import { z } from "zod";
|
import { z } from "zod";
|
||||||
@@ -23,7 +24,12 @@ const makeErrorHandler =
|
|||||||
) =>
|
) =>
|
||||||
(err: unknown, instance: ComponentPublicInstance | null, info: string) => {
|
(err: unknown, instance: ComponentPublicInstance | null, info: string) => {
|
||||||
console.error(err);
|
console.error(err);
|
||||||
if (err instanceof UnAuthError) {
|
if (err instanceof ValidationError) {
|
||||||
|
showAlert({
|
||||||
|
level: "error",
|
||||||
|
content: err.message,
|
||||||
|
});
|
||||||
|
} else if (err instanceof UnAuthError) {
|
||||||
signOut();
|
signOut();
|
||||||
router.push(RoutePath.LOGIN);
|
router.push(RoutePath.LOGIN);
|
||||||
showAlert({
|
showAlert({
|
||||||
|
|||||||
Reference in New Issue
Block a user