go-hibp/hibp.go

208 lines
4.8 KiB
Go
Raw Normal View History

2021-09-21 11:21:04 +02:00
package hibp
2021-09-19 18:10:12 +02:00
import (
"bytes"
2021-09-21 11:21:04 +02:00
"crypto/tls"
"fmt"
"io"
"log"
2021-09-19 18:10:12 +02:00
"net/http"
2021-09-21 11:21:04 +02:00
"net/url"
2021-09-19 18:10:12 +02:00
"time"
)
2021-09-21 11:21:04 +02:00
// Version represents the version of this package
const Version = "1.0.1"
2021-09-19 18:10:12 +02:00
2021-09-21 18:21:23 +02:00
// BaseUrl is the base URL for the majority of API calls
const BaseUrl = "https://haveibeenpwned.com/api/v3"
// DefaultUserAgent defines the default UA string for the HTTP client
// Currently the URL in the UA string is comment out, as there is a bug in the HIBP API
// not allowing multiple slashes
const DefaultUserAgent = `go-hibp v` + Version + ` (https://github.com/wneessen/go-hibp)`
2021-09-21 11:21:04 +02:00
// Client is the HIBP client object
type Client struct {
hc *http.Client // HTTP client to perform the API requests
to time.Duration // HTTP client timeout
ak string // HIBP API key
ua string // User agent string for the HTTP client
// If set to true, the HTTP client will sleep instead of failing in case the HTTP 429
// rate limit hits a request
rlSleep bool
2021-09-19 18:10:12 +02:00
2021-09-21 18:21:23 +02:00
PwnedPassApi *PwnedPassApi // Reference to the PwnedPassApi API
PwnedPassApiOpts *PwnedPasswordOptions // Additional options for the PwnedPassApi API
2021-09-22 16:20:54 +02:00
BreachApi *BreachApi // Reference to the BreachApi
PasteApi *PasteApi // Reference to the PasteApi
2021-09-21 11:21:04 +02:00
}
// Option is a function that is used for grouping of Client options.
type Option func(*Client)
// New creates and returns a new HIBP client object
func New(options ...Option) Client {
c := Client{}
2021-09-21 11:21:04 +02:00
// Set defaults
c.to = time.Second * 5
2021-09-21 18:21:23 +02:00
c.PwnedPassApiOpts = &PwnedPasswordOptions{}
c.ua = DefaultUserAgent
2021-09-21 11:21:04 +02:00
// Set additional options
for _, opt := range options {
if opt == nil {
continue
}
opt(&c)
2021-09-21 11:21:04 +02:00
}
// Add a http client to the Client object
c.hc = httpClient(c.to)
// Associate the different HIBP service APIs with the Client
c.PwnedPassApi = &PwnedPassApi{hibp: &c}
c.BreachApi = &BreachApi{hibp: &c}
2021-09-22 16:20:54 +02:00
c.PasteApi = &PasteApi{hibp: &c}
2021-09-21 11:21:04 +02:00
return c
}
// WithHttpTimeout overrides the default http client timeout
func WithHttpTimeout(t time.Duration) Option {
return func(c *Client) {
c.to = t
}
}
// WithApiKey set the optional API key to the Client object
func WithApiKey(k string) Option {
return func(c *Client) {
c.ak = k
}
}
2021-09-21 18:21:23 +02:00
// WithPwnedPadding enables padding-mode for the PwnedPasswords API client
func WithPwnedPadding() Option {
return func(c *Client) {
c.PwnedPassApiOpts.WithPadding = true
}
}
// WithUserAgent sets a custom user agent string for the HTTP client
func WithUserAgent(a string) Option {
if a == "" {
return nil
}
return func(c *Client) {
c.ua = a
}
}
// WithRateLimitSleep let's the HTTP client sleep in case the API rate limiting hits (Defaults to fail)
func WithRateLimitSleep() Option {
return func(c *Client) {
c.rlSleep = true
}
}
2021-09-21 11:21:04 +02:00
// HttpReq performs an HTTP request to the corresponding API
func (c *Client) HttpReq(m, p string, q map[string]string) (*http.Request, error) {
2021-09-21 11:21:04 +02:00
u, err := url.Parse(p)
if err != nil {
return nil, err
}
if m == http.MethodGet {
uq := u.Query()
for k, v := range q {
uq.Add(k, v)
}
u.RawQuery = uq.Encode()
}
2021-09-21 11:21:04 +02:00
hr, err := http.NewRequest(m, u.String(), nil)
2021-09-19 18:10:12 +02:00
if err != nil {
2021-09-21 11:21:04 +02:00
return nil, err
}
if m == http.MethodPost {
pd := url.Values{}
for k, v := range q {
pd.Add(k, v)
}
rb := io.NopCloser(bytes.NewBufferString(pd.Encode()))
hr.Body = rb
}
2021-09-21 11:21:04 +02:00
hr.Header.Set("Accept", "application/json")
hr.Header.Set("user-agent", c.ua)
2021-09-21 11:21:04 +02:00
if c.ak != "" {
2021-09-21 18:21:23 +02:00
hr.Header.Set("hibp-api-key", c.ak)
}
if c.PwnedPassApiOpts.WithPadding {
hr.Header.Set("Add-Padding", "true")
2021-09-19 18:10:12 +02:00
}
2021-09-21 11:21:04 +02:00
return hr, nil
}
// HttpResBody performs the API call to the given path and returns the response body as byte array
func (c *Client) HttpResBody(m string, p string, q map[string]string) ([]byte, *http.Response, error) {
hreq, err := c.HttpReq(m, p, q)
if err != nil {
return nil, nil, err
}
hr, err := c.hc.Do(hreq)
if err != nil {
return nil, hr, err
}
defer func() {
_ = hr.Body.Close()
}()
hb, err := io.ReadAll(hr.Body)
if err != nil {
return nil, hr, err
}
if hr.StatusCode == 429 && c.rlSleep {
headerDelay := hr.Header.Get("Retry-After")
delayTime, err := time.ParseDuration(headerDelay + "s")
if err != nil {
return nil, hr, err
}
log.Printf("API rate limit hit. Retrying request in %s", delayTime.String())
time.Sleep(delayTime)
return c.HttpResBody(m, p, q)
}
if hr.StatusCode != 200 {
return nil, hr, fmt.Errorf("API responded with non HTTP-200: %s - %s", hr.Status, hb)
}
return hb, hr, nil
}
2021-09-21 11:21:04 +02:00
// httpClient returns a custom http client for the HIBP Client object
func httpClient(to time.Duration) *http.Client {
tlsConfig := &tls.Config{
MaxVersion: tls.VersionTLS13,
MinVersion: tls.VersionTLS12,
}
httpTransport := &http.Transport{TLSClientConfig: tlsConfig}
httpClient := &http.Client{
Transport: httpTransport,
Timeout: 5 * time.Second,
2021-09-19 18:10:12 +02:00
}
2021-09-21 11:21:04 +02:00
if to.Nanoseconds() > 0 {
httpClient.Timeout = to
2021-09-19 18:10:12 +02:00
}
2021-09-21 11:21:04 +02:00
return httpClient
2021-09-19 18:10:12 +02:00
}