Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hilo-group
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
hujiebin
hilo-group
Commits
c2492d28
Commit
c2492d28
authored
Mar 22, 2023
by
chenweijian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
家族头像增加检查
parent
ea79ac0e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
group_power.go
route/group_power_r/group_power.go
+21
-0
No files found.
route/group_power_r/group_power.go
View file @
c2492d28
...
@@ -5,8 +5,11 @@ import (
...
@@ -5,8 +5,11 @@ import (
"fmt"
"fmt"
"git.hilo.cn/hilo-common/domain"
"git.hilo.cn/hilo-common/domain"
"git.hilo.cn/hilo-common/mycontext"
"git.hilo.cn/hilo-common/mycontext"
"git.hilo.cn/hilo-common/resource/config"
"git.hilo.cn/hilo-common/resource/mysql"
"git.hilo.cn/hilo-common/resource/mysql"
"git.hilo.cn/hilo-common/resource/redisCli"
"git.hilo.cn/hilo-common/resource/redisCli"
"git.hilo.cn/hilo-common/sdk/aws"
"git.hilo.cn/hilo-common/sdk/tencentyun"
"git.hilo.cn/hilo-common/utils"
"git.hilo.cn/hilo-common/utils"
"github.com/gin-gonic/gin"
"github.com/gin-gonic/gin"
"github.com/jinzhu/now"
"github.com/jinzhu/now"
...
@@ -1461,6 +1464,24 @@ func GroupPowerSetInfo(c *gin.Context) (*mycontext.MyContext, error) {
...
@@ -1461,6 +1464,24 @@ func GroupPowerSetInfo(c *gin.Context) (*mycontext.MyContext, error) {
return
myContext
,
bizerr
.
GroupPowerCannotRepeated
return
myContext
,
bizerr
.
GroupPowerCannotRepeated
}
}
}
}
if
para
.
Icon
!=
""
{
switch
config
.
GetConfigApp
()
.
MODERATE
{
case
"AWS"
:
passed
,
err
:=
aws
.
ModerateLabels
(
model
.
Log
,
userId
,
para
.
Icon
)
if
err
==
nil
{
if
!
passed
{
return
myContext
,
bizerr
.
ImagePolicyViolation
}
}
else
{
model
.
Log
.
Warnf
(
"ModerateLabels err:%v"
,
err
)
}
case
"TENCENT"
:
label
,
err
:=
tencentyun
.
ModerateImage
(
model
,
userId
,
""
,
utils
.
StripAwsPrefix
(
para
.
Icon
),
para
.
Icon
)
if
err
==
nil
&&
label
!=
"Pass"
{
return
myContext
,
bizerr
.
ImagePolicyViolation
}
}
}
// 修改家族信息
// 修改家族信息
err
=
groupPower_m
.
UpdateFamily
(
model
,
para
.
Id
,
para
.
Name
,
para
.
Nameplate
,
para
.
Declaration
,
para
.
Icon
)
err
=
groupPower_m
.
UpdateFamily
(
model
,
para
.
Id
,
para
.
Name
,
para
.
Nameplate
,
para
.
Declaration
,
para
.
Icon
)
...
...
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