58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
|
package example
|
||
|
|
||
|
import (
|
||
|
"encoding/json"
|
||
|
"errors"
|
||
|
"fmt"
|
||
|
"net/http"
|
||
|
|
||
|
"github.com/RangelReale/osin"
|
||
|
)
|
||
|
|
||
|
func HandleLoginPage(ar *osin.AuthorizeRequest, w http.ResponseWriter, r *http.Request) bool {
|
||
|
r.ParseForm()
|
||
|
if r.Method == "POST" && r.Form.Get("login") == "test" && r.Form.Get("password") == "test" {
|
||
|
return true
|
||
|
}
|
||
|
|
||
|
w.Write([]byte("<html><body>"))
|
||
|
|
||
|
w.Write([]byte(fmt.Sprintf("LOGIN %s (use test/test)<br/>", ar.Client.GetId())))
|
||
|
w.Write([]byte(fmt.Sprintf("<form action=\"/authorize?%s\" method=\"POST\">", r.URL.RawQuery)))
|
||
|
|
||
|
w.Write([]byte("Login: <input type=\"text\" name=\"login\" /><br/>"))
|
||
|
w.Write([]byte("Password: <input type=\"password\" name=\"password\" /><br/>"))
|
||
|
w.Write([]byte("<input type=\"submit\"/>"))
|
||
|
|
||
|
w.Write([]byte("</form>"))
|
||
|
|
||
|
w.Write([]byte("</body></html>"))
|
||
|
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func DownloadAccessToken(url string, auth *osin.BasicAuth, output map[string]interface{}) error {
|
||
|
// download access token
|
||
|
preq, err := http.NewRequest("POST", url, nil)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
if auth != nil {
|
||
|
preq.SetBasicAuth(auth.Username, auth.Password)
|
||
|
}
|
||
|
|
||
|
pclient := &http.Client{}
|
||
|
presp, err := pclient.Do(preq)
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if presp.StatusCode != 200 {
|
||
|
return errors.New("Invalid status code")
|
||
|
}
|
||
|
|
||
|
jdec := json.NewDecoder(presp.Body)
|
||
|
err = jdec.Decode(&output)
|
||
|
return err
|
||
|
}
|