2017-03-11 07:15:15 -05:00
|
|
|
package ofxgo
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
|
|
|
"github.com/golang/go/src/encoding/xml"
|
|
|
|
)
|
|
|
|
|
2017-03-11 07:18:02 -05:00
|
|
|
type SignonRequest struct {
|
|
|
|
XMLName xml.Name `xml:"SONRQ"`
|
2017-03-16 11:14:58 -04:00
|
|
|
DtClient Date `xml:"DTCLIENT"` // Current time on client, overwritten in Client.Request()
|
2017-03-11 07:18:02 -05:00
|
|
|
UserId String `xml:"USERID"`
|
|
|
|
UserPass String `xml:"USERPASS,omitempty"`
|
|
|
|
UserKey String `xml:"USERKEY,omitempty"`
|
|
|
|
Language String `xml:"LANGUAGE"` // Defaults to ENG
|
|
|
|
Org String `xml:"FI>ORG"`
|
|
|
|
Fid String `xml:"FI>FID"`
|
2017-03-16 11:13:21 -04:00
|
|
|
AppId String `xml:"APPID"` // Overwritten in Client.Request()
|
|
|
|
AppVer String `xml:"APPVER"` // Overwritten in Client.Request()
|
2017-03-11 07:18:02 -05:00
|
|
|
ClientUID UID `xml:"CLIENTUID,omitempty"`
|
2017-03-11 07:15:15 -05:00
|
|
|
}
|
|
|
|
|
2017-03-11 07:18:02 -05:00
|
|
|
func (r *SignonRequest) Name() string {
|
2017-03-11 07:15:15 -05:00
|
|
|
return "SONRQ"
|
|
|
|
}
|
|
|
|
|
2017-03-11 07:18:02 -05:00
|
|
|
func (r *SignonRequest) Valid() (bool, error) {
|
2017-03-11 07:15:15 -05:00
|
|
|
if len(r.UserId) < 1 || len(r.UserId) > 32 {
|
|
|
|
return false, errors.New("SONRQ>USERID invalid length")
|
|
|
|
}
|
|
|
|
if (len(r.UserPass) == 0) == (len(r.UserKey) == 0) {
|
|
|
|
return false, errors.New("One and only one of SONRQ>USERPASS and USERKEY must be supplied")
|
|
|
|
}
|
|
|
|
if len(r.UserPass) > 32 {
|
|
|
|
return false, errors.New("SONRQ>USERPASS invalid length")
|
|
|
|
}
|
|
|
|
if len(r.UserKey) > 64 {
|
|
|
|
return false, errors.New("SONRQ>USERKEY invalid length")
|
|
|
|
}
|
|
|
|
if len(r.Language) == 0 {
|
|
|
|
r.Language = "ENG"
|
|
|
|
} else if len(r.Language) != 3 {
|
|
|
|
return false, errors.New("SONRQ>LANGUAGE invalid length")
|
|
|
|
}
|
2017-03-16 11:13:21 -04:00
|
|
|
if len(r.AppId) < 1 || len(r.AppId) > 5 {
|
2017-03-11 07:15:15 -05:00
|
|
|
return false, errors.New("SONRQ>APPID invalid length")
|
|
|
|
}
|
2017-03-16 11:13:21 -04:00
|
|
|
if len(r.AppVer) < 1 || len(r.AppVer) > 4 {
|
2017-03-11 07:15:15 -05:00
|
|
|
return false, errors.New("SONRQ>APPVER invalid length")
|
|
|
|
}
|
|
|
|
if ok, err := r.ClientUID.Valid(); !ok {
|
|
|
|
if len(r.ClientUID) > 0 { // ClientUID isn't required
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true, nil
|
|
|
|
}
|
|
|
|
|
2017-03-11 07:18:02 -05:00
|
|
|
type Status struct {
|
|
|
|
XMLName xml.Name `xml:"STATUS"`
|
|
|
|
Code Int `xml:"CODE"`
|
|
|
|
Severity String `xml:"SEVERITY"`
|
|
|
|
Message String `xml:"MESSAGE,omitempty"`
|
2017-03-11 07:15:15 -05:00
|
|
|
}
|
|
|
|
|
2017-03-11 07:18:02 -05:00
|
|
|
func (s *Status) Valid() (bool, error) {
|
2017-03-11 07:15:15 -05:00
|
|
|
switch s.Severity {
|
|
|
|
case "INFO", "WARN", "ERROR":
|
|
|
|
return true, nil
|
|
|
|
default:
|
|
|
|
return false, errors.New("Invalid STATUS>SEVERITY")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-11 07:18:02 -05:00
|
|
|
type SignonResponse struct {
|
|
|
|
XMLName xml.Name `xml:"SONRS"`
|
|
|
|
Status Status `xml:"STATUS"`
|
2017-03-11 21:13:06 -05:00
|
|
|
DtServer Date `xml:"DTSERVER"`
|
2017-03-11 07:18:02 -05:00
|
|
|
UserKey String `xml:"USERKEY,omitempty"`
|
|
|
|
TsKeyExpire Date `xml:"TSKEYEXPIRE,omitempty"`
|
|
|
|
Language String `xml:"LANGUAGE"`
|
2017-03-11 21:13:06 -05:00
|
|
|
DtProfUp Date `xml:"DTPROFUP,omitempty"`
|
|
|
|
DtAcctUp Date `xml:"DTACCTUP,omitempty"`
|
2017-03-11 07:18:02 -05:00
|
|
|
Org String `xml:"FI>ORG"`
|
|
|
|
Fid String `xml:"FI>FID"`
|
|
|
|
SessCookie String `xml:"SESSCOOKIE,omitempty"`
|
|
|
|
AccessKey String `xml:"ACCESSKEY,omitempty"`
|
2017-03-11 07:15:15 -05:00
|
|
|
}
|
|
|
|
|
2017-03-11 07:18:02 -05:00
|
|
|
func (r *SignonResponse) Name() string {
|
2017-03-11 07:15:15 -05:00
|
|
|
return "SONRS"
|
|
|
|
}
|
|
|
|
|
2017-03-11 07:18:02 -05:00
|
|
|
func (r *SignonResponse) Valid() (bool, error) {
|
2017-03-11 07:15:15 -05:00
|
|
|
if len(r.Language) != 3 {
|
|
|
|
return false, errors.New("SONRS>LANGUAGE invalid length: " + string(r.Language))
|
|
|
|
}
|
|
|
|
return r.Status.Valid()
|
|
|
|
}
|