Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
X
xyqb-user2
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
head_group
xyqb-user2
Commits
6914d9f0
Commit
6914d9f0
authored
Nov 28, 2024
by
xuepeng.chang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
头像替换 avatar.xyqb.com 域名处理
parent
da0fa8ad
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
5 deletions
+10
-5
UserCenterController.java
...controller/internal/user/center/UserCenterController.java
+10
-5
No files found.
src/main/java/cn/quantgroup/xyqb/controller/internal/user/center/UserCenterController.java
View file @
6914d9f0
...
...
@@ -27,6 +27,11 @@ import org.springframework.web.bind.annotation.RequestMapping;
import
org.springframework.web.bind.annotation.RequestParam
;
import
org.springframework.web.bind.annotation.RestController
;
import
javax.imageio.ImageIO
;
import
java.awt.image.BufferedImage
;
import
java.io.ByteArrayInputStream
;
import
java.io.File
;
import
java.io.IOException
;
import
java.util.*
;
import
java.util.concurrent.CountDownLatch
;
import
java.util.concurrent.ExecutorService
;
...
...
@@ -321,16 +326,16 @@ public class UserCenterController implements IBaseController {
for
(
UserInfoEntity
userInfoEntity
:
allUserInfo
)
{
executorService
.
execute
(()
->
{
try
{
String
avatarUrl
=
userInfoEntity
.
getPhoto
();
String
avatarUrl
=
userInfoEntity
.
getPhoto
();
log
.
info
(
"开始执行头像刷新.id={},avatarUrl={}"
,
userInfoEntity
.
getId
(),
avatarUrl
);
if
(
StringUtils
.
isEmpty
(
avatarUrl
)){
return
;
}
if
(
StringUtils
.
isEmpty
(
extractPhoneNumberFromUrl
(
avatarUrl
)))
{
return
;
if
(
avatarUrl
.
contains
(
"avatar.xyqb.com"
))
{
avatarUrl
=
avatarUrl
.
replace
(
"avatar.xyqb.com"
,
"avatar.q-gp.com"
)
;
}
byte
[]
avatarBytes
=
HttpClientUtil
.
download
(
avatarUrl
);
// log.info("头像:"+avatarBytes);
if
(
Objects
.
isNull
(
avatarBytes
)){
log
.
info
(
"下载头像失败.id={},avatarUrl={}"
,
userInfoEntity
.
getId
(),
avatarUrl
);
userInfoEntity
.
setPhoto
(
"https://img.91xr.cn/avatar.18dd2e2a.png"
);
...
...
@@ -338,7 +343,7 @@ public class UserCenterController implements IBaseController {
return
;
}
String
imageName
=
"avatar/"
+
UUID
.
randomUUID
().
toString
()+
".jpg"
;
String
fileName
=
qiNiuYunUtil
.
overrideUpload
(
avatarBytes
,
".jpg"
,
imageName
);
String
fileName
=
qiNiuYunUtil
.
upload
(
avatarBytes
,
null
);
userInfoEntity
.
setPhoto
(
fileName
);
userInfoRepository
.
save
(
userInfoEntity
);
log
.
info
(
"开始执行头像刷新完成.id={},avatarUrl={}"
,
userInfoEntity
.
getId
(),
avatarUrl
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment