-
Notifications
You must be signed in to change notification settings - Fork 6
/
publicInventories.go
76 lines (66 loc) · 2.45 KB
/
publicInventories.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
// 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 inventory
import (
"github.com/AccelByte/accelbyte-go-sdk/inventory-sdk/pkg/inventoryclient"
"github.com/AccelByte/accelbyte-go-sdk/inventory-sdk/pkg/inventoryclient/public_inventories"
"github.com/AccelByte/accelbyte-go-sdk/inventory-sdk/pkg/inventoryclientmodels"
"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 PublicInventoriesService struct {
Client *inventoryclient.JusticeInventoryService
ConfigRepository repository.ConfigRepository
TokenRepository repository.TokenRepository
}
func (aaa *PublicInventoriesService) GetAuthSession() auth.Session {
return auth.Session{
aaa.TokenRepository,
aaa.ConfigRepository,
nil,
}
}
// Deprecated: 2022-01-10 - please use PublicListInventoriesShort instead.
func (aaa *PublicInventoriesService) PublicListInventories(input *public_inventories.PublicListInventoriesParams) (*inventoryclientmodels.ApimodelsListInventoryResp, error) {
token, err := aaa.TokenRepository.GetToken()
if err != nil {
return nil, err
}
ok, badRequest, internalServerError, err := aaa.Client.PublicInventories.PublicListInventories(input, client.BearerToken(*token.AccessToken))
if badRequest != nil {
return nil, badRequest
}
if internalServerError != nil {
return nil, internalServerError
}
if err != nil {
return nil, err
}
return ok.GetPayload(), nil
}
func (aaa *PublicInventoriesService) PublicListInventoriesShort(input *public_inventories.PublicListInventoriesParams) (*inventoryclientmodels.ApimodelsListInventoryResp, 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,
}
}
ok, err := aaa.Client.PublicInventories.PublicListInventoriesShort(input, authInfoWriter)
if err != nil {
return nil, err
}
return ok.GetPayload(), nil
}