2017-03-22 20:29:08 -04:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"github.com/aclindsa/ofxgo"
|
|
|
|
"os"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
var getAccountsCommand = Command{
|
|
|
|
Name: "get-accounts",
|
|
|
|
Description: "List accounts at your financial institution",
|
|
|
|
Flags: flag.NewFlagSet("get-accounts", flag.ExitOnError),
|
|
|
|
CheckFlags: checkServerFlags,
|
|
|
|
Do: getAccounts,
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
defineServerFlags(getAccountsCommand.Flags)
|
|
|
|
}
|
|
|
|
|
|
|
|
func getAccounts() {
|
|
|
|
client, query := NewRequest()
|
|
|
|
|
|
|
|
uid, err := ofxgo.RandomUID()
|
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Error creating uid for transaction:", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
acctInfo := ofxgo.AcctInfoRequest{
|
2017-03-30 10:24:26 -04:00
|
|
|
TrnUID: *uid,
|
2017-04-04 05:45:19 -04:00
|
|
|
DtAcctUp: ofxgo.Date{Time: time.Unix(0, 0)},
|
2017-03-22 20:29:08 -04:00
|
|
|
}
|
|
|
|
query.Signup = append(query.Signup, &acctInfo)
|
|
|
|
|
2017-03-25 06:14:52 -04:00
|
|
|
response, err := client.Request(query)
|
2017-03-22 20:29:08 -04:00
|
|
|
if err != nil {
|
|
|
|
fmt.Println("Error requesting account information:", err)
|
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2017-03-25 06:14:52 -04:00
|
|
|
if response.Signon.Status.Code != 0 {
|
|
|
|
meaning, _ := response.Signon.Status.CodeMeaning()
|
|
|
|
fmt.Printf("Nonzero signon status (%d: %s) with message: %s\n", response.Signon.Status.Code, meaning, response.Signon.Status.Message)
|
2017-03-22 20:29:08 -04:00
|
|
|
os.Exit(1)
|
|
|
|
}
|
|
|
|
|
2017-03-25 06:14:52 -04:00
|
|
|
if len(response.Signup) < 1 {
|
2017-03-22 20:29:08 -04:00
|
|
|
fmt.Println("No signup messages received")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-03-28 19:47:17 -04:00
|
|
|
fmt.Printf("\nFound the following accounts:\n\n")
|
2017-03-22 20:29:08 -04:00
|
|
|
|
2017-03-31 11:54:43 -04:00
|
|
|
if acctinfo, ok := response.Signup[0].(*ofxgo.AcctInfoResponse); ok {
|
2017-03-22 20:29:08 -04:00
|
|
|
for _, acct := range acctinfo.AcctInfo {
|
|
|
|
if acct.BankAcctInfo != nil {
|
|
|
|
fmt.Printf("Bank Account:\n\tBankId: \"%s\"\n\tAcctId: \"%s\"\n\tAcctType: %s\n", acct.BankAcctInfo.BankAcctFrom.BankId, acct.BankAcctInfo.BankAcctFrom.AcctId, acct.BankAcctInfo.BankAcctFrom.AcctType)
|
|
|
|
} else if acct.CCAcctInfo != nil {
|
|
|
|
fmt.Printf("Credit card:\n\tAcctId: \"%s\"\n", acct.CCAcctInfo.CCAcctFrom.AcctId)
|
|
|
|
} else if acct.InvAcctInfo != nil {
|
|
|
|
fmt.Printf("Investment account:\n\tBrokerId: \"%s\"\n\tAcctId: \"%s\"\n", acct.InvAcctInfo.InvAcctFrom.BrokerId, acct.InvAcctInfo.InvAcctFrom.AcctId)
|
|
|
|
} else {
|
|
|
|
fmt.Printf("Unknown type: %s %s\n", acct.Name, acct.Desc)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|