alipay
This commit is contained in:
parent
261c38e1db
commit
8a685c0f00
|
@ -2,7 +2,6 @@ package main
|
|||
|
||||
import (
|
||||
"enterprise/common/config"
|
||||
"enterprise/common/global"
|
||||
"enterprise/server"
|
||||
_ "enterprise/service/salary_calculator"
|
||||
)
|
||||
|
@ -11,7 +10,7 @@ func main() {
|
|||
config.LoadServerConfig()
|
||||
config.LoadAliPay()
|
||||
config.LoadCorpConfig()
|
||||
global.InitGlobal()
|
||||
//global.InitGlobal()
|
||||
|
||||
if err := server.Start(); err != nil {
|
||||
panic(err)
|
||||
|
|
|
@ -0,0 +1,87 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="zh-CN">
|
||||
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>绑定结果页面</title>
|
||||
<style>
|
||||
body {
|
||||
font-family: Arial, sans-serif;
|
||||
background-color: #f4f4f4;
|
||||
margin: 0;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
}
|
||||
|
||||
.payment-container {
|
||||
background-color: #fff;
|
||||
padding: 20px;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.payment-success {
|
||||
color: #28a745;
|
||||
}
|
||||
|
||||
.payment-failure {
|
||||
color: #dc3545;
|
||||
}
|
||||
|
||||
.payment-container button {
|
||||
background-color: #007BFF;
|
||||
color: #fff;
|
||||
padding: 10px 20px;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
margin-top: 20px;
|
||||
}
|
||||
|
||||
.payment-container button:hover {
|
||||
background-color: #0056b3;
|
||||
}
|
||||
|
||||
.success-icon {
|
||||
width: 80px;
|
||||
height: 80px;
|
||||
background-color: #28a745;
|
||||
border-radius: 50%;
|
||||
margin: 0 auto 20px;
|
||||
position: relative;
|
||||
animation: scaleIn 0.4s ease 0.2s both;
|
||||
}
|
||||
|
||||
.success-icon::before {
|
||||
content: "";
|
||||
width: 20px;
|
||||
height: 40px;
|
||||
border: 3px solid white;
|
||||
border-top: none;
|
||||
border-left: none;
|
||||
transform: rotate(45deg);
|
||||
position: absolute;
|
||||
top: 15px;
|
||||
left: 30px;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<div class="payment-container">
|
||||
<div class="success-icon"></div>
|
||||
<div class="{{.style}}">
|
||||
<h1>{{.title}}</h1>
|
||||
<p>{{.message}}</p>
|
||||
</div>
|
||||
</div>
|
||||
<script>
|
||||
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -6,7 +6,9 @@ import (
|
|||
"enterprise/server/api"
|
||||
"enterprise/server/service"
|
||||
"enterprise/server/session"
|
||||
"fmt"
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/smbrave/goutil"
|
||||
"net/http"
|
||||
)
|
||||
|
||||
|
@ -22,8 +24,13 @@ func (q *Payment) AlipayAuth(ctx *gin.Context) {
|
|||
authCode := ctx.Query("auth_code")
|
||||
state := ctx.Query("state")
|
||||
|
||||
data := service.NewPay().AlipayAuth(sess, authCode, state)
|
||||
ctx.JSON(http.StatusOK, session.NewRsp(data))
|
||||
userid, staffUser := service.NewPay().AlipayAuth(sess, authCode, state)
|
||||
username := goutil.If(staffUser.Realname != "", staffUser.Realname, staffUser.Username)
|
||||
ctx.HTML(http.StatusOK, "alipay.html", gin.H{
|
||||
"title": "绑定成功",
|
||||
"message": fmt.Sprintf("您支付宝【%s】已成功绑定到用户【%s】", userid, username),
|
||||
"style": "payment-success",
|
||||
})
|
||||
}
|
||||
|
||||
func (q *Payment) Pay(ctx *gin.Context) {
|
||||
|
|
|
@ -25,7 +25,7 @@ func NewPay() *Pay {
|
|||
return &Pay{}
|
||||
}
|
||||
|
||||
func (p *Pay) AlipayAuth(sess *session.AdminSession, authCode, state string) interface{} {
|
||||
func (p *Pay) AlipayAuth(sess *session.AdminSession, authCode, state string) (string, *model.StaffUser) {
|
||||
|
||||
corp, err := dao.NewCorpDao().GetByHost(sess.GetHeader().Host)
|
||||
session.CheckDBError(err)
|
||||
|
@ -45,22 +45,15 @@ func (p *Pay) AlipayAuth(sess *session.AdminSession, authCode, state string) int
|
|||
panic(config.ErrInternal.New().Append(goutil.EncodeJSON(res)))
|
||||
}
|
||||
|
||||
if state != "" {
|
||||
staffUser, err := dao.NewStaffUserDao().Get(cast.ToInt64(state))
|
||||
session.CheckDBError(err)
|
||||
session.CheckNilError(staffUser)
|
||||
payee := staffUser.GetPayee()
|
||||
payee.AlipayUid = res.UserId
|
||||
staffUser.Payee = goutil.EncodeJSON(payee)
|
||||
err = dao.NewStaffUserDao().Update(staffUser)
|
||||
session.CheckDBError(err)
|
||||
}
|
||||
|
||||
data := make(map[string]interface{})
|
||||
data["state"] = state
|
||||
data["userid"] = res.UserId
|
||||
log.Errorf("state=%s,userid=%s", state, res.UserId)
|
||||
return data
|
||||
staffUser, err := dao.NewStaffUserDao().Get(cast.ToInt64(state))
|
||||
session.CheckDBError(err)
|
||||
session.CheckNilError(staffUser)
|
||||
payee := staffUser.GetPayee()
|
||||
payee.AlipayUid = res.UserId
|
||||
staffUser.Payee = goutil.EncodeJSON(payee)
|
||||
err = dao.NewStaffUserDao().Update(staffUser)
|
||||
session.CheckDBError(err)
|
||||
return res.UserId, staffUser
|
||||
}
|
||||
|
||||
func (p *Pay) Pay(corp *model.Corp, req *api.PayReq) {
|
||||
|
|
Loading…
Reference in New Issue