tvl-depot/users/wpcarro/tools/monzo_ynab/monzo/client.go
William Carroll d36aaeb967 fix(wpcarro/ynab): Remove .skip-subtree
**TL;DR:**
- Delete half-baked packaging attempts (`job.nix`, `token.nix`).
- Ensure golang code compiles.
  - Some "packages" were being treated like "programs" presumably for
    debugging/testing purposes back when I was working on this. Make those
    behave like libraries.
  - Remove stale imports.
  - Fix syntax errors.
  - Miscellaneous other chores.
- Drop `shell.nix` and `use_nix` directive.

Change-Id: I63c275680bac55a3cad3b9cb48d51cdc431fbe48
Reviewed-on: https://cl.tvl.fyi/c/depot/+/7318
Autosubmit: wpcarro <wpcarro@gmail.com>
Tested-by: BuildkiteCI
Reviewed-by: wpcarro <wpcarro@gmail.com>
2022-11-21 05:30:58 +00:00

52 lines
1.1 KiB
Go

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{}
}