|
@@ -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:相对路径")
|