mirror of
https://github.com/aclindsa/ofxgo.git
synced 2024-11-14 17:20:04 -05:00
78 lines
1.6 KiB
Go
78 lines
1.6 KiB
Go
|
package main
|
||
|
|
||
|
import (
|
||
|
"flag"
|
||
|
"fmt"
|
||
|
"github.com/aclindsa/ofxgo"
|
||
|
"io"
|
||
|
"os"
|
||
|
"time"
|
||
|
)
|
||
|
|
||
|
var ccDownloadCommand = Command{
|
||
|
Name: "download-cc",
|
||
|
Description: "Download a credit card account statement to a file",
|
||
|
Flags: flag.NewFlagSet("download-cc", flag.ExitOnError),
|
||
|
CheckFlags: ccDownloadCheckFlags,
|
||
|
Do: ccDownload,
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
defineServerFlags(ccDownloadCommand.Flags)
|
||
|
ccDownloadCommand.Flags.StringVar(&filename, "filename", "./download.ofx", "The file to save to")
|
||
|
ccDownloadCommand.Flags.StringVar(&acctId, "acctid", "", "AcctId (from `get-accounts` subcommand)")
|
||
|
}
|
||
|
|
||
|
func ccDownloadCheckFlags() bool {
|
||
|
ret := checkServerFlags()
|
||
|
|
||
|
if len(filename) == 0 {
|
||
|
fmt.Println("Error: Filename empty")
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
return ret
|
||
|
}
|
||
|
|
||
|
func ccDownload() {
|
||
|
client, query := NewRequest()
|
||
|
|
||
|
uid, err := ofxgo.RandomUID()
|
||
|
if err != nil {
|
||
|
fmt.Println("Error creating uid for transaction:", err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
|
||
|
statementRequest := ofxgo.CCStatementRequest{
|
||
|
TrnUID: *uid,
|
||
|
CCAcctFrom: ofxgo.CCAcct{
|
||
|
AcctId: ofxgo.String(acctId),
|
||
|
},
|
||
|
DtStart: ofxgo.Date(time.Unix(0, 0)),
|
||
|
DtEnd: ofxgo.Date(time.Now()),
|
||
|
Include: true,
|
||
|
}
|
||
|
query.CreditCards = append(query.CreditCards, &statementRequest)
|
||
|
|
||
|
response, err := client.RequestNoParse(query)
|
||
|
|
||
|
if err != nil {
|
||
|
fmt.Println("Error requesting account statement:", err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
defer response.Body.Close()
|
||
|
|
||
|
file, err := os.Create(filename)
|
||
|
if err != nil {
|
||
|
fmt.Println("Error creating file to write to:", err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
defer file.Close()
|
||
|
|
||
|
_, err = io.Copy(file, response.Body)
|
||
|
if err != nil {
|
||
|
fmt.Println("Error writing response to file:", err)
|
||
|
os.Exit(1)
|
||
|
}
|
||
|
}
|