1
0
Fork 0
empact/server/auth.go

42 lines
974 B
Go
Raw Permalink Normal View History

2015-03-05 07:46:19 +00:00
package server
import (
2015-03-06 12:36:35 +00:00
"log"
2015-03-05 07:46:19 +00:00
"net/http"
"net/url"
2015-03-05 08:07:18 +00:00
"github.com/localhots/empact/config"
2015-03-05 12:57:36 +00:00
"github.com/localhots/empact/task"
2015-03-05 07:46:19 +00:00
)
func authSigninHandler(w http.ResponseWriter, r *http.Request) {
params := url.Values{}
params.Set("client_id", config.C().ClientID)
params.Set("redirect_uri", config.C().RedirectURI)
2015-03-05 15:04:44 +00:00
params.Set("scope", "read:org, repo, admin:org_hook")
2015-03-05 12:57:36 +00:00
http.Redirect(w, r, config.C().AuthURL+"?"+params.Encode(), 302)
2015-03-05 07:46:19 +00:00
}
func authCallbackHandler(w http.ResponseWriter, r *http.Request) {
2015-03-07 14:56:02 +00:00
req, _ := parseRequest(w, r)
2015-03-05 07:46:19 +00:00
if r.FormValue("error") != "" {
w.Write([]byte(r.FormValue("error_description")))
2015-03-06 12:36:35 +00:00
return
}
2015-03-05 12:57:36 +00:00
2015-03-06 12:36:35 +00:00
code := r.FormValue("code")
2015-03-06 13:23:01 +00:00
log.Printf("Got code %q\n", code)
2015-03-07 14:56:02 +00:00
if token, login, err := task.Authenticate(code); err == nil {
req.authorize(token, login)
2015-03-06 12:36:35 +00:00
} else {
panic(err)
2015-03-05 07:46:19 +00:00
}
}
2015-03-05 15:25:26 +00:00
func authHandler(w http.ResponseWriter, r *http.Request) {
2015-03-07 14:56:02 +00:00
if req, _ := parseRequest(w, r); req.login == "" {
http.Redirect(w, r, "/", 302)
2015-03-05 15:25:26 +00:00
}
}