ofxgo/cmd/ofx/util.go

32 lines
682 B
Go
Raw Normal View History

2017-03-22 20:29:08 -04:00
package main
import (
2017-04-17 10:54:20 -04:00
"fmt"
2017-03-22 20:29:08 -04:00
"github.com/aclindsa/ofxgo"
2017-04-17 10:54:20 -04:00
"os"
2017-03-22 20:29:08 -04:00
)
func newRequest() (ofxgo.Client, *ofxgo.Request) {
2017-04-17 10:54:20 -04:00
ver, err := ofxgo.NewOfxVersion(ofxVersion)
if err != nil {
fmt.Println("Error creating new OfxVersion enum:", err)
os.Exit(1)
}
var client = ofxgo.BasicClient{
2017-04-12 21:40:42 -04:00
AppID: appID,
2017-03-22 20:29:08 -04:00
AppVer: appVer,
2017-04-17 10:54:20 -04:00
SpecVersion: ver,
2017-03-22 20:29:08 -04:00
NoIndent: noIndentRequests,
}
var query ofxgo.Request
query.URL = serverURL
query.Signon.ClientUID = ofxgo.UID(clientUID)
2017-04-12 21:40:42 -04:00
query.Signon.UserID = ofxgo.String(username)
2017-03-22 20:29:08 -04:00
query.Signon.UserPass = ofxgo.String(password)
query.Signon.Org = ofxgo.String(org)
query.Signon.Fid = ofxgo.String(fid)
return &client, &query
}