-
Notifications
You must be signed in to change notification settings - Fork 6
/
paymentAccount.go
127 lines (109 loc) · 3.96 KB
/
paymentAccount.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Copyright (c) 2021 AccelByte Inc. All Rights Reserved.
// This is licensed software from AccelByte Inc, for limitations
// and restrictions contact your company contract manager.
// Code generated. DO NOT EDIT.
package platform
import (
"github.com/AccelByte/accelbyte-go-sdk/platform-sdk/pkg/platformclient"
"github.com/AccelByte/accelbyte-go-sdk/platform-sdk/pkg/platformclient/payment_account"
"github.com/AccelByte/accelbyte-go-sdk/platform-sdk/pkg/platformclientmodels"
"github.com/AccelByte/accelbyte-go-sdk/services-api/pkg/repository"
"github.com/AccelByte/accelbyte-go-sdk/services-api/pkg/utils"
"github.com/AccelByte/accelbyte-go-sdk/services-api/pkg/utils/auth"
"github.com/go-openapi/runtime/client"
)
type PaymentAccountService struct {
Client *platformclient.JusticePlatformService
ConfigRepository repository.ConfigRepository
TokenRepository repository.TokenRepository
FlightIdRepository *utils.FlightIdContainer
}
var tempFlightIdPaymentAccount *string
func (aaa *PaymentAccountService) UpdateFlightId(flightId string) {
tempFlightIdPaymentAccount = &flightId
}
func (aaa *PaymentAccountService) GetAuthSession() auth.Session {
return auth.Session{
aaa.TokenRepository,
aaa.ConfigRepository,
nil,
}
}
// Deprecated: 2022-01-10 - please use PublicGetPaymentAccountsShort instead.
func (aaa *PaymentAccountService) PublicGetPaymentAccounts(input *payment_account.PublicGetPaymentAccountsParams) ([]*platformclientmodels.PaymentAccount, error) {
token, err := aaa.TokenRepository.GetToken()
if err != nil {
return nil, err
}
ok, err := aaa.Client.PaymentAccount.PublicGetPaymentAccounts(input, client.BearerToken(*token.AccessToken))
if err != nil {
return nil, err
}
return ok.GetPayload(), nil
}
// Deprecated: 2022-01-10 - please use PublicDeletePaymentAccountShort instead.
func (aaa *PaymentAccountService) PublicDeletePaymentAccount(input *payment_account.PublicDeletePaymentAccountParams) error {
token, err := aaa.TokenRepository.GetToken()
if err != nil {
return err
}
_, err = aaa.Client.PaymentAccount.PublicDeletePaymentAccount(input, client.BearerToken(*token.AccessToken))
if err != nil {
return err
}
return nil
}
func (aaa *PaymentAccountService) PublicGetPaymentAccountsShort(input *payment_account.PublicGetPaymentAccountsParams) ([]*platformclientmodels.PaymentAccount, error) {
authInfoWriter := input.AuthInfoWriter
if authInfoWriter == nil {
security := [][]string{
{"bearer"},
}
authInfoWriter = auth.AuthInfoWriter(aaa.GetAuthSession(), security, "")
}
if input.RetryPolicy == nil {
input.RetryPolicy = &utils.Retry{
MaxTries: utils.MaxTries,
Backoff: utils.NewConstantBackoff(0),
Transport: aaa.Client.Runtime.Transport,
RetryCodes: utils.RetryCodes,
}
}
if tempFlightIdPaymentAccount != nil {
input.XFlightId = tempFlightIdPaymentAccount
} else if aaa.FlightIdRepository != nil {
utils.GetDefaultFlightID().SetFlightID(aaa.FlightIdRepository.Value)
}
ok, err := aaa.Client.PaymentAccount.PublicGetPaymentAccountsShort(input, authInfoWriter)
if err != nil {
return nil, err
}
return ok.GetPayload(), nil
}
func (aaa *PaymentAccountService) PublicDeletePaymentAccountShort(input *payment_account.PublicDeletePaymentAccountParams) error {
authInfoWriter := input.AuthInfoWriter
if authInfoWriter == nil {
security := [][]string{
{"bearer"},
}
authInfoWriter = auth.AuthInfoWriter(aaa.GetAuthSession(), security, "")
}
if input.RetryPolicy == nil {
input.RetryPolicy = &utils.Retry{
MaxTries: utils.MaxTries,
Backoff: utils.NewConstantBackoff(0),
Transport: aaa.Client.Runtime.Transport,
RetryCodes: utils.RetryCodes,
}
}
if tempFlightIdPaymentAccount != nil {
input.XFlightId = tempFlightIdPaymentAccount
} else if aaa.FlightIdRepository != nil {
utils.GetDefaultFlightID().SetFlightID(aaa.FlightIdRepository.Value)
}
_, err := aaa.Client.PaymentAccount.PublicDeletePaymentAccountShort(input, authInfoWriter)
if err != nil {
return err
}
return nil
}