v0.2.8 v0.2.8
Vernon Keenan 2021-02-06 14:33:20 -08:00
parent 7ba5f66512
commit f8f1ee34ea
1 changed files with 15 additions and 15 deletions

View File

@ -11,34 +11,34 @@ import (
// NewIngestParams is a prams type
type NewIngestParams struct {
accountID string
backendID string
objectType string
objList []*devops_models.Ingest
principal *User
ref string
AccountID string
BackendID string
ObjectType string
ObjList []*devops_models.Ingest
Principal *User
Ref string
}
// NewIngest is an ingest helper function
func NewIngest(params *NewIngestParams) (string, error) {
sugar.Debug("ops.newIngest: 📥")
if params.accountID == "" || params.principal.TenantID == "" {
if params.AccountID == "" || params.Principal.TenantID == "" {
return "", fmt.Errorf("ops.newIngest: 💣 ⛔ params.AccountID or params.TaxnexusAccount are blank")
}
dt := time.Now().Format(dateTimeFormat)
theIngest := &devops_models.Ingest{
AccountID: &params.accountID,
BackendID: params.backendID,
AccountID: &params.AccountID,
BackendID: params.BackendID,
EndDate: dt,
ID: uuid.New().String(),
IngestDate: dt,
IngestType: "fabric",
ObjectType: &params.objectType,
Ref: params.ref,
ObjectType: &params.ObjectType,
Ref: params.Ref,
StartDate: dt,
Status: "new",
}
params.objList = []*devops_models.Ingest{theIngest}
params.ObjList = []*devops_models.Ingest{theIngest}
_, err := PostIngests(params)
if err != nil {
return "", err
@ -49,12 +49,12 @@ func NewIngest(params *NewIngestParams) (string, error) {
// PostIngests is an ingest helper function
func PostIngests(params *NewIngestParams) ([]*devops_models.Ingest, error) {
sugar.Debugf("ops.postIngests: 📥 len=%d", len(params.objList))
sugar.Debugf("ops.postIngests: 📥 len=%d", len(params.ObjList))
devopsParams := ingest.NewPostIngestsParams()
devopsParams.IngestRequest = &devops_models.IngestRequest{
Data: params.objList,
Data: params.ObjList,
}
response, err := devopsClient.Ingest.PostIngests(devopsParams, params.principal.Auth)
response, err := devopsClient.Ingest.PostIngests(devopsParams, params.Principal.Auth)
if err != nil {
sugar.Errorf("ops.postIngests: 💣 ⛔ post to devops error %w", err)
return nil, err