about summary refs log tree commit diff
path: root/users/wpcarro/tools/monzo_ynab/monzo/client.go
blob: 9621ffc5ad517ede83feae975c27e3766d5c8a48 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package monzoClient

import (
	"fmt"
	"log"
	"monzoSerde"
	"net/http"
	"net/url"
	"strings"
	"time"
	"tokens"
	"utils"
)

const (
	accountID = "pizza"
)

type Client struct{}

// Ensure that the token server is running and return a new instance of a Client
// struct.
func Create() *Client {
	tokens.StartServer()
	time.Sleep(time.Second * 1)
	return &Client{}
}

// Returns a slice of transactions from the last 24 hours.
func (c *Client) TransactionsLast24Hours() []monzoSerde.Transaction {
	token := tokens.GetState().AccessToken
	form := url.Values{"account_id": {accountID}}
	client := http.Client{}
	req, _ := http.NewRequest("POST", "https://api.monzo.com/transactions",
		strings.NewReader(form.Encode()))
	req.Header.Add("Authorization", fmt.Sprintf("Bearer %s", token))
	req.Header.Add("Content-Type", "application/x-www-form-urlencoded")
	req.Header.Add("User-Agent", "monzo-ynab")
	res, err := client.Do(req)

	utils.DebugRequest(req)
	utils.DebugResponse(res)

	if err != nil {
		utils.DebugRequest(req)
		utils.DebugResponse(res)
		log.Fatal(err)
	}
	defer res.Body.Close()

	return []monzoSerde.Transaction{}
}