oauth2_proxy/api/api.go

43 lines
887 B
Go
Raw Normal View History

package api
import (
2015-06-06 18:15:43 +00:00
"fmt"
"io/ioutil"
"log"
"net/http"
"github.com/bitly/go-simplejson"
)
func Request(req *http.Request) (*simplejson.Json, error) {
2015-05-21 03:23:48 +00:00
resp, err := http.DefaultClient.Do(req)
if err != nil {
log.Printf("%s %s %s", req.Method, req.URL, err)
return nil, err
}
body, err := ioutil.ReadAll(resp.Body)
resp.Body.Close()
log.Printf("%d %s %s %s", resp.StatusCode, req.Method, req.URL, body)
if err != nil {
return nil, err
}
if resp.StatusCode != 200 {
2015-06-06 18:15:43 +00:00
return nil, fmt.Errorf("got %d %s", resp.StatusCode, body)
}
data, err := simplejson.NewJson(body)
if err != nil {
return nil, err
}
return data, nil
}
2015-05-13 01:48:13 +00:00
2015-06-06 18:15:43 +00:00
func RequestUnparsedResponse(url string, header http.Header) (resp *http.Response, err error) {
2015-05-13 01:48:13 +00:00
req, err := http.NewRequest("GET", url, nil)
if err != nil {
2015-06-06 18:15:43 +00:00
return nil, err
2015-05-13 01:48:13 +00:00
}
req.Header = header
2015-06-06 18:15:43 +00:00
return http.DefaultClient.Do(req)
2015-05-13 01:48:13 +00:00
}