393 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			Go
		
	
	
	
			
		
		
	
	
			393 lines
		
	
	
		
			9.9 KiB
		
	
	
	
		
			Go
		
	
	
	
| package main
 | |
| 
 | |
| import (
 | |
| 	"bytes"
 | |
| 	"encoding/base64"
 | |
| 	"errors"
 | |
| 	"fmt"
 | |
| 	"github.com/bitly/go-simplejson"
 | |
| 	"io/ioutil"
 | |
| 	"log"
 | |
| 	"net/http"
 | |
| 	"net/http/httputil"
 | |
| 	"net/url"
 | |
| 	"strings"
 | |
| 	"time"
 | |
| )
 | |
| 
 | |
| const signInPath = "/oauth2/sign_in"
 | |
| const oauthStartPath = "/oauth2/start"
 | |
| const oauthCallbackPath = "/oauth2/callback"
 | |
| 
 | |
| type OauthProxy struct {
 | |
| 	CookieSeed string
 | |
| 	CookieKey  string
 | |
| 	Validator  func(string) bool
 | |
| 
 | |
| 	redirectUrl        *url.URL // the url to receive requests at
 | |
| 	oauthRedemptionUrl *url.URL // endpoint to redeem the code
 | |
| 	oauthLoginUrl      *url.URL // to redirect the user to
 | |
| 	oauthUserInfoUrl   *url.URL
 | |
| 	oauthScope         string
 | |
| 	clientID           string
 | |
| 	clientSecret       string
 | |
| 	SignInMessage      string
 | |
| 	HtpasswdFile       *HtpasswdFile
 | |
| 	serveMux           *http.ServeMux
 | |
| }
 | |
| 
 | |
| func NewOauthProxy(proxyUrls []*url.URL, clientID string, clientSecret string, validator func(string) bool) *OauthProxy {
 | |
| 	login, _ := url.Parse("https://accounts.google.com/o/oauth2/auth")
 | |
| 	redeem, _ := url.Parse("https://accounts.google.com/o/oauth2/token")
 | |
| 	info, _ := url.Parse("https://www.googleapis.com/oauth2/v2/userinfo")
 | |
| 	serveMux := http.NewServeMux()
 | |
| 	for _, u := range proxyUrls {
 | |
| 		path := u.Path
 | |
| 		if len(path) == 0 {
 | |
| 			path = "/"
 | |
| 		}
 | |
| 		u.Path = ""
 | |
| 		log.Printf("mapping %s => %s", path, u)
 | |
| 		serveMux.Handle(path, httputil.NewSingleHostReverseProxy(u))
 | |
| 	}
 | |
| 	return &OauthProxy{
 | |
| 		CookieKey:  "_oauthproxy",
 | |
| 		CookieSeed: *cookieSecret,
 | |
| 		Validator:  validator,
 | |
| 
 | |
| 		clientID:           clientID,
 | |
| 		clientSecret:       clientSecret,
 | |
| 		oauthScope:         "https://www.googleapis.com/auth/userinfo.profile https://www.googleapis.com/auth/userinfo.email",
 | |
| 		oauthRedemptionUrl: redeem,
 | |
| 		oauthLoginUrl:      login,
 | |
| 		oauthUserInfoUrl:   info,
 | |
| 		serveMux:           serveMux,
 | |
| 	}
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) SetRedirectUrl(redirectUrl *url.URL) {
 | |
| 	redirectUrl.Path = oauthCallbackPath
 | |
| 	p.redirectUrl = redirectUrl
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) GetLoginURL(redirectUrl string) string {
 | |
| 	params := url.Values{}
 | |
| 	params.Add("redirect_uri", p.redirectUrl.String())
 | |
| 	params.Add("approval_prompt", "force")
 | |
| 	params.Add("scope", p.oauthScope)
 | |
| 	params.Add("client_id", p.clientID)
 | |
| 	params.Add("response_type", "code")
 | |
| 	if strings.HasPrefix(redirectUrl, "/") {
 | |
| 		params.Add("state", redirectUrl)
 | |
| 	}
 | |
| 	return fmt.Sprintf("%s?%s", p.oauthLoginUrl, params.Encode())
 | |
| }
 | |
| 
 | |
| func apiRequest(req *http.Request) (*simplejson.Json, error) {
 | |
| 	httpclient := &http.Client{}
 | |
| 	resp, err := httpclient.Do(req)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	body, err := ioutil.ReadAll(resp.Body)
 | |
| 	resp.Body.Close()
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	if resp.StatusCode != 200 {
 | |
| 		log.Printf("got response code %d - %s", resp.StatusCode, body)
 | |
| 		return nil, errors.New("api request returned 200 status code")
 | |
| 	}
 | |
| 	data, err := simplejson.NewJson(body)
 | |
| 	if err != nil {
 | |
| 		return nil, err
 | |
| 	}
 | |
| 	return data, nil
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) redeemCode(code string) (string, error) {
 | |
| 	if code == "" {
 | |
| 		return "", errors.New("missing code")
 | |
| 	}
 | |
| 	params := url.Values{}
 | |
| 	params.Add("redirect_uri", p.redirectUrl.String())
 | |
| 	params.Add("client_id", p.clientID)
 | |
| 	params.Add("client_secret", p.clientSecret)
 | |
| 	params.Add("code", code)
 | |
| 	params.Add("grant_type", "authorization_code")
 | |
| 	log.Printf("body is %s", params.Encode())
 | |
| 	req, err := http.NewRequest("POST", p.oauthRedemptionUrl.String(), bytes.NewBufferString(params.Encode()))
 | |
| 	if err != nil {
 | |
| 		log.Printf("failed building request %s", err.Error())
 | |
| 		return "", err
 | |
| 	}
 | |
| 	req.Header.Set("Content-Type", "application/x-www-form-urlencoded")
 | |
| 	json, err := apiRequest(req)
 | |
| 	if err != nil {
 | |
| 		log.Printf("failed making request %s", err.Error())
 | |
| 		return "", err
 | |
| 	}
 | |
| 	access_token, err := json.Get("access_token").String()
 | |
| 	if err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 	return access_token, nil
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) getUserInfo(token string) (string, error) {
 | |
| 	params := url.Values{}
 | |
| 	params.Add("access_token", token)
 | |
| 	endpoint := fmt.Sprintf("%s?%s", p.oauthUserInfoUrl.String(), params.Encode())
 | |
| 	log.Printf("calling %s", endpoint)
 | |
| 	req, err := http.NewRequest("GET", endpoint, nil)
 | |
| 	if err != nil {
 | |
| 		log.Printf("failed building request %s", err.Error())
 | |
| 		return "", err
 | |
| 	}
 | |
| 	json, err := apiRequest(req)
 | |
| 	if err != nil {
 | |
| 		log.Printf("failed making request %s", err.Error())
 | |
| 		return "", err
 | |
| 	}
 | |
| 	email, err := json.Get("email").String()
 | |
| 	if err != nil {
 | |
| 		log.Printf("failed getting email from response %s", err.Error())
 | |
| 		return "", err
 | |
| 	}
 | |
| 	return email, nil
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) ClearCookie(rw http.ResponseWriter, req *http.Request) {
 | |
| 	domain := strings.Split(req.Host, ":")[0]
 | |
| 	if *cookieDomain != "" && strings.HasSuffix(domain, *cookieDomain) {
 | |
| 		domain = *cookieDomain
 | |
| 	}
 | |
| 	cookie := &http.Cookie{
 | |
| 		Name:     p.CookieKey,
 | |
| 		Value:    "",
 | |
| 		Path:     "/",
 | |
| 		Domain:   domain,
 | |
| 		Expires:  time.Now().Add(time.Duration(1) * time.Hour * -1),
 | |
| 		HttpOnly: true,
 | |
| 	}
 | |
| 	http.SetCookie(rw, cookie)
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) SetCookie(rw http.ResponseWriter, req *http.Request, val string) {
 | |
| 
 | |
| 	domain := strings.Split(req.Host, ":")[0] // strip the port (if any)
 | |
| 	if *cookieDomain != "" && strings.HasSuffix(domain, *cookieDomain) {
 | |
| 		domain = *cookieDomain
 | |
| 	}
 | |
| 	cookie := &http.Cookie{
 | |
| 		Name:     p.CookieKey,
 | |
| 		Value:    signedCookieValue(p.CookieSeed, p.CookieKey, val),
 | |
| 		Path:     "/",
 | |
| 		Domain:   domain,
 | |
| 		Expires:  time.Now().Add(time.Duration(168) * time.Hour), // 7 days
 | |
| 		HttpOnly: true,
 | |
| 		// Secure: req. ... ? set if X-Scheme: https ?
 | |
| 	}
 | |
| 	http.SetCookie(rw, cookie)
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) ErrorPage(rw http.ResponseWriter, code int, title string, message string) {
 | |
| 	log.Printf("ErrorPage %d %s %s", code, title, message)
 | |
| 	rw.WriteHeader(code)
 | |
| 	templates := getTemplates()
 | |
| 	t := struct {
 | |
| 		Title   string
 | |
| 		Message string
 | |
| 	}{
 | |
| 		Title:   fmt.Sprintf("%d %s", code, title),
 | |
| 		Message: message,
 | |
| 	}
 | |
| 	templates.ExecuteTemplate(rw, "error.html", t)
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) SignInPage(rw http.ResponseWriter, req *http.Request, code int) {
 | |
| 	p.ClearCookie(rw, req)
 | |
| 	rw.WriteHeader(code)
 | |
| 	templates := getTemplates()
 | |
| 
 | |
| 	t := struct {
 | |
| 		SignInMessage string
 | |
| 		Htpasswd      bool
 | |
| 		Redirect      string
 | |
| 	}{
 | |
| 		SignInMessage: p.SignInMessage,
 | |
| 		Htpasswd:      p.HtpasswdFile != nil,
 | |
| 		Redirect:      req.URL.RequestURI(),
 | |
| 	}
 | |
| 	templates.ExecuteTemplate(rw, "sign_in.html", t)
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) ManualSignIn(rw http.ResponseWriter, req *http.Request) (string, bool) {
 | |
| 	if req.Method != "POST" || p.HtpasswdFile == nil {
 | |
| 		return "", false
 | |
| 	}
 | |
| 	user := req.FormValue("username")
 | |
| 	passwd := req.FormValue("password")
 | |
| 	if user == "" {
 | |
| 		return "", false
 | |
| 	}
 | |
| 	// check auth
 | |
| 	if p.HtpasswdFile.Validate(user, passwd) {
 | |
| 		log.Printf("authenticated %s via manual sign in", user)
 | |
| 		return user, true
 | |
| 	}
 | |
| 	return "", false
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) GetRedirect(req *http.Request) (string, error) {
 | |
| 	err := req.ParseForm()
 | |
| 
 | |
| 	if err != nil {
 | |
| 		return "", err
 | |
| 	}
 | |
| 
 | |
| 	redirect := req.FormValue("rd")
 | |
| 
 | |
| 	if redirect == "" {
 | |
| 		redirect = "/"
 | |
| 	}
 | |
| 
 | |
| 	return redirect, err
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) ServeHTTP(rw http.ResponseWriter, req *http.Request) {
 | |
| 	// check if this is a redirect back at the end of oauth
 | |
| 	remoteIP := req.Header.Get("X-Real-IP")
 | |
| 	if remoteIP == "" {
 | |
| 		remoteIP = req.RemoteAddr
 | |
| 	}
 | |
| 	log.Printf("%s %s %s", remoteIP, req.Method, req.URL.Path)
 | |
| 
 | |
| 	var ok bool
 | |
| 	var user string
 | |
| 
 | |
| 	if req.URL.Path == signInPath {
 | |
| 		redirect, err := p.GetRedirect(req)
 | |
| 		if err != nil {
 | |
| 			p.ErrorPage(rw, 500, "Internal Error", err.Error())
 | |
| 			return
 | |
| 		}
 | |
| 
 | |
| 		user, ok = p.ManualSignIn(rw, req)
 | |
| 		if ok {
 | |
| 			p.SetCookie(rw, req, user)
 | |
| 			http.Redirect(rw, req, redirect, 302)
 | |
| 		} else {
 | |
| 			p.SignInPage(rw, req, 200)
 | |
| 		}
 | |
| 		return
 | |
| 	}
 | |
| 	if req.URL.Path == oauthStartPath {
 | |
| 		redirect, err := p.GetRedirect(req)
 | |
| 		if err != nil {
 | |
| 			p.ErrorPage(rw, 500, "Internal Error", err.Error())
 | |
| 			return
 | |
| 		}
 | |
| 		http.Redirect(rw, req, p.GetLoginURL(redirect), 302)
 | |
| 		return
 | |
| 	}
 | |
| 	if req.URL.Path == oauthCallbackPath {
 | |
| 		// finish the oauth cycle
 | |
| 		err := req.ParseForm()
 | |
| 		if err != nil {
 | |
| 			p.ErrorPage(rw, 500, "Internal Error", err.Error())
 | |
| 			return
 | |
| 		}
 | |
| 		errorString := req.Form.Get("error")
 | |
| 		if errorString != "" {
 | |
| 			p.ErrorPage(rw, 403, "Permission Denied", errorString)
 | |
| 			return
 | |
| 		}
 | |
| 
 | |
| 		token, err := p.redeemCode(req.Form.Get("code"))
 | |
| 		if err != nil {
 | |
| 			log.Printf("error redeeming code %s", err.Error())
 | |
| 			p.ErrorPage(rw, 500, "Internal Error", err.Error())
 | |
| 			return
 | |
| 		}
 | |
| 		// validate user
 | |
| 		email, err := p.getUserInfo(token)
 | |
| 		if err != nil {
 | |
| 			log.Printf("error redeeming code %s", err.Error())
 | |
| 			p.ErrorPage(rw, 500, "Internal Error", err.Error())
 | |
| 			return
 | |
| 		}
 | |
| 
 | |
| 		redirect := req.Form.Get("state")
 | |
| 		if redirect == "" {
 | |
| 			redirect = "/"
 | |
| 		}
 | |
| 
 | |
| 		// set cookie, or deny
 | |
| 		if p.Validator(email) {
 | |
| 			log.Printf("authenticating %s completed", email)
 | |
| 			p.SetCookie(rw, req, email)
 | |
| 			http.Redirect(rw, req, redirect, 302)
 | |
| 			return
 | |
| 		} else {
 | |
| 			p.ErrorPage(rw, 403, "Permission Denied", "Invalid Account")
 | |
| 			return
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if !ok {
 | |
| 		cookie, err := req.Cookie(p.CookieKey)
 | |
| 		if err == nil {
 | |
| 			var email string
 | |
| 			email, ok = validateCookie(cookie, p.CookieSeed)
 | |
| 			user = strings.Split(email, "@")[0]
 | |
| 		}
 | |
| 	}
 | |
| 
 | |
| 	if !ok {
 | |
| 		user, ok = p.CheckBasicAuth(req)
 | |
| 		// if we want to promote basic auth requests to cookie'd requests, we could do that here
 | |
| 		// not sure that would be ideal in all circumstances though
 | |
| 		// if ok {
 | |
| 		// 	p.SetCookie(rw, req, user)
 | |
| 		// }
 | |
| 	}
 | |
| 
 | |
| 	if !ok {
 | |
| 		log.Printf("invalid cookie")
 | |
| 		p.SignInPage(rw, req, 403)
 | |
| 		return
 | |
| 	}
 | |
| 
 | |
| 	// At this point, the user is authenticated. proxy normally
 | |
| 	if *passBasicAuth {
 | |
| 		req.SetBasicAuth(user, "")
 | |
| 		req.Header["X-Forwarded-User"] = []string{user}
 | |
| 	}
 | |
| 
 | |
| 	p.serveMux.ServeHTTP(rw, req)
 | |
| }
 | |
| 
 | |
| func (p *OauthProxy) CheckBasicAuth(req *http.Request) (string, bool) {
 | |
| 	if p.HtpasswdFile == nil {
 | |
| 		return "", false
 | |
| 	}
 | |
| 	s := strings.SplitN(req.Header.Get("Authorization"), " ", 2)
 | |
| 	if len(s) != 2 || s[0] != "Basic" {
 | |
| 		return "", false
 | |
| 	}
 | |
| 	b, err := base64.StdEncoding.DecodeString(s[1])
 | |
| 	if err != nil {
 | |
| 		return "", false
 | |
| 	}
 | |
| 	pair := strings.SplitN(string(b), ":", 2)
 | |
| 	if len(pair) != 2 {
 | |
| 		return "", false
 | |
| 	}
 | |
| 	if p.HtpasswdFile.Validate(pair[0], pair[1]) {
 | |
| 		log.Printf("authenticated %s via basic auth", pair[0])
 | |
| 		return pair[0], true
 | |
| 	}
 | |
| 	return "", false
 | |
| }
 |