🎨 登录跳转

This commit is contained in:
Liang Ding 2019-05-17 14:09:19 +08:00
parent fb124a3a5b
commit e230dfdb2d
No known key found for this signature in database
GPG Key ID: 136F30F901A2231D
2 changed files with 4 additions and 7 deletions

View File

@ -55,11 +55,9 @@ func RedirectGitHubHandler(w http.ResponseWriter, r *http.Request) {
clientId := data["clientId"].(string)
loginAuthURL := data["loginAuthURL"].(string)
referer := r.URL.Query().Get("referer")
if "" == referer || !strings.Contains(referer, "://") {
referer = conf.Wide.Server + referer
}
state := util.Rand.String(16) + referer
state := r.URL.Query().Get("state")
referer := conf.Wide.Server + "__" + state
state = util.Rand.String(16) + referer
states[state] = state
path := loginAuthURL + "?client_id=" + clientId + "&state=" + state + "&scope=public_repo,read:user,user:follow"
http.Redirect(w, r, path, http.StatusSeeOther)

View File

@ -55,8 +55,7 @@
<script type="text/javascript" src="/static/js/lib/jquery-2.1.1.min.js"></script>
<script>
$('.oauth').click(function () {
window.location.href = '/oauth/github/redirect?referer=' + document.referrer + '__' +
($('input').prop('checked') ? '0' : '1')
window.location.href = '/oauth/github/redirect?state=' + ($('input').prop('checked') ? '0' : '1')
})
</script>
</body>