bench-forgejo/routers/user/social.go

96 lines
2.3 KiB
Go
Raw Normal View History

2014-04-02 08:09:04 +05:30
// Copyright 2014 The Gogs Authors. All rights reserved.
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file.
2014-04-02 08:09:04 +05:30
package user
import (
"encoding/json"
2014-04-14 03:42:07 +05:30
"errors"
2014-04-12 20:49:17 +05:30
"fmt"
2014-11-29 07:50:13 +05:30
// "strings"
2014-11-29 08:08:35 +05:30
"time"
2014-04-02 08:09:04 +05:30
2014-11-29 07:50:13 +05:30
"github.com/macaron-contrib/oauth2"
2014-11-29 08:08:35 +05:30
"github.com/gogits/gogs/models"
2014-04-02 08:09:04 +05:30
"github.com/gogits/gogs/modules/log"
"github.com/gogits/gogs/modules/middleware"
2014-05-26 05:41:25 +05:30
"github.com/gogits/gogs/modules/setting"
2014-04-14 03:42:07 +05:30
"github.com/gogits/gogs/modules/social"
2014-04-02 08:09:04 +05:30
)
2014-07-26 09:54:27 +05:30
func SocialSignIn(ctx *middleware.Context) {
2014-05-26 05:41:25 +05:30
if setting.OauthService == nil {
2014-11-29 07:50:13 +05:30
ctx.Handle(404, "OAuth2 service not enabled", nil)
2014-04-09 21:37:57 +05:30
return
}
2014-04-14 03:42:07 +05:30
2014-11-29 08:08:35 +05:30
next := setting.AppSubUrl + "/user/login"
2014-11-29 07:50:13 +05:30
info := ctx.Session.Get(oauth2.KEY_TOKEN)
if info == nil {
2014-11-29 08:08:35 +05:30
ctx.Redirect(next)
2014-04-12 20:49:17 +05:30
return
2014-04-09 21:37:57 +05:30
}
2014-04-14 03:42:07 +05:30
2014-11-29 07:50:13 +05:30
name := ctx.Params(":name")
connect, ok := social.SocialMap[name]
if !ok {
ctx.Handle(404, "social login not enabled", errors.New(name))
return
}
2014-04-09 21:37:57 +05:30
2014-11-29 07:50:13 +05:30
tk := new(oauth2.Token)
if err := json.Unmarshal(info.([]byte), tk); err != nil {
ctx.Handle(500, "Unmarshal token", err)
2014-04-12 20:49:17 +05:30
return
2014-04-09 21:37:57 +05:30
}
2014-04-12 22:45:19 +05:30
ui, err := connect.UserInfo(tk, ctx.Req.URL)
2014-04-12 20:49:17 +05:30
if err != nil {
2014-11-29 07:50:13 +05:30
ctx.Handle(500, fmt.Sprintf("UserInfo(%s)", name), err)
return
}
2014-11-29 08:24:49 +05:30
if len(ui.Identity) == 0 {
ctx.Handle(404, "no identity is presented", errors.New(name))
return
}
2014-04-14 03:42:07 +05:30
log.Info("social.SocialSignIn(social login): %s", ui)
2014-11-29 08:08:35 +05:30
oa, err := models.GetOauth2(ui.Identity)
switch err {
case nil:
ctx.Session.Set("uid", oa.User.Id)
ctx.Session.Set("uname", oa.User.Name)
case models.ErrOauth2RecordNotExist:
raw, _ := json.Marshal(tk)
oa = &models.Oauth2{
Uid: -1,
Type: connect.Type(),
Identity: ui.Identity,
Token: string(raw),
}
log.Trace("social.SocialSignIn(oa): %v", oa)
if err = models.AddOauth2(oa); err != nil {
log.Error(4, "social.SocialSignIn(add oauth2): %v", err) // 501
return
}
case models.ErrOauth2NotAssociated:
next = setting.AppSubUrl + "/user/sign_up"
default:
ctx.Handle(500, "social.SocialSignIn(GetOauth2)", err)
return
}
2014-04-14 03:42:07 +05:30
2014-11-29 08:08:35 +05:30
oa.Updated = time.Now()
if err = models.UpdateOauth2(oa); err != nil {
log.Error(4, "UpdateOauth2: %v", err)
}
2014-08-10 05:55:02 +05:30
2014-11-29 08:08:35 +05:30
ctx.Session.Set("socialId", oa.Id)
ctx.Session.Set("socialName", ui.Name)
ctx.Session.Set("socialEmail", ui.Email)
log.Trace("social.SocialSignIn(social ID): %v", oa.Id)
ctx.Redirect(next)
2014-04-02 08:09:04 +05:30
}