Browse Source

添加用户头像和修改用户名功能提交

zsy 1 month ago
parent
commit
0f837c63d9

+ 1 - 1
src/main/java/com/rf/AIquantum/dialogue/dao/model/ChatHistoryEntity.java

@@ -32,7 +32,7 @@ public class ChatHistoryEntity extends BaseEntity {
     @Column(name = "content", columnDefinition = "text not null comment '消息内容'")
     private String content;
 
-    @Column(name = "image", columnDefinition = "longtext comment '图片(Base64编码的字符串表示)'")
+    @Column(name = "image", columnDefinition = "varchar(255) comment '图片URL'")
     private String image;
 
     @Column(name = "status", columnDefinition = "int(2) not null comment  '状态(0:删除;1:正常)'")

+ 1 - 1
src/main/java/com/rf/AIquantum/dialogue/rest/DialogueController.java

@@ -61,7 +61,7 @@ public class DialogueController extends BaseController {
     private ChatHistoryService chatHistoryService;
 
     @PostMapping("/saveChat")
-    @ApiOperation(value = "保存对话",notes = "参数包括:phone:手机号, dialogueId:对话id(为空时是新建对话), content:消息内容,image:图片(Base64格式,可以为空)")
+    @ApiOperation(value = "保存对话",notes = "参数包括:phone:手机号, dialogueId:对话id(为空时是新建对话), content:消息内容,image:图片(可以为空)")
     public Result saveChat(MultipartFile image, String phone, String dialogueId, String content) throws UnsupportedEncodingException {
         /*JSONObject jsonObject =JSONObject.parseObject(jsonParam);
         if (!jsonObject.containsKey("phone")) {

+ 3 - 0
src/main/java/com/rf/AIquantum/user/dao/model/UserEntity.java

@@ -34,4 +34,7 @@ public class UserEntity extends BaseEntity {
     @Column(name = "role_type", columnDefinition = "varchar(2) default '1' comment  '角色(默认为1 1普通用户;2 管理员)'")
     private String roleType;
 
+    @Column(name = "avatar", columnDefinition = "varchar(255) comment '头像URL'")
+    private String avatar;
+
 }

+ 68 - 0
src/main/java/com/rf/AIquantum/user/rest/UserController.java

@@ -10,11 +10,13 @@ import com.rf.AIquantum.utils.JWTUtil;
 import com.rf.AIquantum.utils.Result;
 import io.swagger.annotations.Api;
 import io.swagger.annotations.ApiOperation;
+import org.apache.commons.io.FileUtils;
 import org.apache.commons.lang.StringUtils;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.http.MediaType;
 import org.springframework.util.DigestUtils;
 import org.springframework.web.bind.annotation.*;
+import org.springframework.web.multipart.MultipartFile;
 
 import javax.servlet.http.HttpServletRequest;
 import java.io.File;
@@ -126,6 +128,72 @@ public class UserController extends BaseController {
         }
     }
 
+    /**
+     * 修改用户名
+     * @param
+     * @return
+     */
+    @ApiOperation(value = "修改用户名",notes = "data参数包括:id:用户id,userName:新用户名")
+    @PostMapping("/updateUserName")
+    public Result updateUserName(String id, String userName){
+        if (userName == null || userName.equals("")){
+            return fail(null, "用户名不能为空");
+        }
+        if (userName.length() > 50){
+            return fail(null, "用户名过长");
+        }
+        UserEntity userEntity = userService.findById(id);
+        if (userEntity == null) {
+            return fail(null, "用户不存在");
+        }
+        userEntity.setUserName(userName);
+        userEntity.setUpdateTime(DateUtil.now());
+        this.userService.save(userEntity);
+        return success();
+    }
+
+    /**
+     * 修改用户头像
+     * @param
+     * @return
+     */
+    @ApiOperation(value = "修改用户头像",notes = "data参数包括:id:用户id,avatar:用户头像文件")
+    @PostMapping("/updateAvatar")
+    public Result updateAvatar(String id, MultipartFile avatar){
+        if (avatar == null) {
+            return fail("头像为空");
+        } else {
+            UserEntity userEntity = userService.findById(id);
+            if (userEntity == null) {
+                return fail(null, "用户不存在");
+            }
+            String fileName = "";
+            String FILEDIR = "./userAvatar/";
+            String avatarUrl = "";
+            if (!avatar.isEmpty()) {
+                fileName = userEntity.getPhone() + "-=-" + System.currentTimeMillis() + "-=-" + avatar.getOriginalFilename();
+                try {
+                    File temp = new File(FILEDIR);
+                    if (!temp.exists()) {
+                        temp.mkdirs();
+                    }
+                    File fileLocal = new File(FILEDIR, fileName);
+                    FileUtils.copyInputStreamToFile(avatar.getInputStream(), fileLocal);
+                    avatarUrl = FILEDIR + fileName;
+                    userEntity.setAvatar(avatarUrl);
+                    userEntity.setUpdateTime(DateUtil.now());
+                    this.userService.save(userEntity);
+                    return success();
+                } catch (Exception e) {
+                    e.printStackTrace();
+                    return fail("文件上传失败");
+                }
+            } else {
+                return fail("图片为空");
+            }
+        }
+    }
+
     @GetMapping(value = "/show",produces = MediaType.IMAGE_JPEG_VALUE )
     @ResponseBody
     @ApiOperation(value = "图片展示",notes = "filePath:相对路径")