alipay
This commit is contained in:
parent
261c38e1db
commit
8a685c0f00
|
@ -2,7 +2,6 @@ package main
|
||||||
|
|
||||||
import (
|
import (
|
||||||
"enterprise/common/config"
|
"enterprise/common/config"
|
||||||
"enterprise/common/global"
|
|
||||||
"enterprise/server"
|
"enterprise/server"
|
||||||
_ "enterprise/service/salary_calculator"
|
_ "enterprise/service/salary_calculator"
|
||||||
)
|
)
|
||||||
|
@ -11,7 +10,7 @@ func main() {
|
||||||
config.LoadServerConfig()
|
config.LoadServerConfig()
|
||||||
config.LoadAliPay()
|
config.LoadAliPay()
|
||||||
config.LoadCorpConfig()
|
config.LoadCorpConfig()
|
||||||
global.InitGlobal()
|
//global.InitGlobal()
|
||||||
|
|
||||||
if err := server.Start(); err != nil {
|
if err := server.Start(); err != nil {
|
||||||
panic(err)
|
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/api"
|
||||||
"enterprise/server/service"
|
"enterprise/server/service"
|
||||||
"enterprise/server/session"
|
"enterprise/server/session"
|
||||||
|
"fmt"
|
||||||
"github.com/gin-gonic/gin"
|
"github.com/gin-gonic/gin"
|
||||||
|
"github.com/smbrave/goutil"
|
||||||
"net/http"
|
"net/http"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
@ -22,8 +24,13 @@ func (q *Payment) AlipayAuth(ctx *gin.Context) {
|
||||||
authCode := ctx.Query("auth_code")
|
authCode := ctx.Query("auth_code")
|
||||||
state := ctx.Query("state")
|
state := ctx.Query("state")
|
||||||
|
|
||||||
data := service.NewPay().AlipayAuth(sess, authCode, state)
|
userid, staffUser := service.NewPay().AlipayAuth(sess, authCode, state)
|
||||||
ctx.JSON(http.StatusOK, session.NewRsp(data))
|
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) {
|
func (q *Payment) Pay(ctx *gin.Context) {
|
||||||
|
|
|
@ -25,7 +25,7 @@ func NewPay() *Pay {
|
||||||
return &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)
|
corp, err := dao.NewCorpDao().GetByHost(sess.GetHeader().Host)
|
||||||
session.CheckDBError(err)
|
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)))
|
panic(config.ErrInternal.New().Append(goutil.EncodeJSON(res)))
|
||||||
}
|
}
|
||||||
|
|
||||||
if state != "" {
|
staffUser, err := dao.NewStaffUserDao().Get(cast.ToInt64(state))
|
||||||
staffUser, err := dao.NewStaffUserDao().Get(cast.ToInt64(state))
|
session.CheckDBError(err)
|
||||||
session.CheckDBError(err)
|
session.CheckNilError(staffUser)
|
||||||
session.CheckNilError(staffUser)
|
payee := staffUser.GetPayee()
|
||||||
payee := staffUser.GetPayee()
|
payee.AlipayUid = res.UserId
|
||||||
payee.AlipayUid = res.UserId
|
staffUser.Payee = goutil.EncodeJSON(payee)
|
||||||
staffUser.Payee = goutil.EncodeJSON(payee)
|
err = dao.NewStaffUserDao().Update(staffUser)
|
||||||
err = dao.NewStaffUserDao().Update(staffUser)
|
session.CheckDBError(err)
|
||||||
session.CheckDBError(err)
|
return res.UserId, staffUser
|
||||||
}
|
|
||||||
|
|
||||||
data := make(map[string]interface{})
|
|
||||||
data["state"] = state
|
|
||||||
data["userid"] = res.UserId
|
|
||||||
log.Errorf("state=%s,userid=%s", state, res.UserId)
|
|
||||||
return data
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func (p *Pay) Pay(corp *model.Corp, req *api.PayReq) {
|
func (p *Pay) Pay(corp *model.Corp, req *api.PayReq) {
|
||||||
|
|
Loading…
Reference in New Issue