forked from heroiclabs/nakama
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_purchase.go
259 lines (215 loc) · 9.73 KB
/
api_purchase.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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
// Copyright 2018 The Nakama Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package server
import (
"context"
"github.com/gofrs/uuid/v5"
"github.com/heroiclabs/nakama-common/api"
"go.uber.org/zap"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
func (s *ApiServer) ValidatePurchaseApple(ctx context.Context, in *api.ValidatePurchaseAppleRequest) (*api.ValidatePurchaseResponse, error) {
userID := ctx.Value(ctxUserIDKey{}).(uuid.UUID)
// Before hook.
if fn := s.runtime.BeforeValidatePurchaseApple(); fn != nil {
beforeFn := func(clientIP, clientPort string) error {
result, err, code := fn(ctx, s.logger, userID.String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxVarsKey{}).(map[string]string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, in)
if err != nil {
return status.Error(code, err.Error())
}
if result == nil {
// If result is nil, requested resource is disabled.
s.logger.Warn("Intercepted a disabled resource.", zap.Any("resource", ctx.Value(ctxFullMethodKey{}).(string)), zap.String("uid", userID.String()))
return status.Error(codes.NotFound, "Requested resource was not found.")
}
in = result
return nil
}
// Execute the before function lambda wrapped in a trace for stats measurement.
err := traceApiBefore(ctx, s.logger, s.metrics, ctx.Value(ctxFullMethodKey{}).(string), beforeFn)
if err != nil {
return nil, err
}
}
if s.config.GetIAP().Apple.SharedPassword == "" {
return nil, status.Error(codes.FailedPrecondition, "Apple IAP is not configured.")
}
if len(in.Receipt) < 1 {
return nil, status.Error(codes.InvalidArgument, "Receipt cannot be empty.")
}
persist := true
if in.Persist != nil {
persist = in.Persist.GetValue()
}
validation, err := ValidatePurchasesApple(ctx, s.logger, s.db, userID, s.config.GetIAP().Apple.SharedPassword, in.Receipt, persist)
if err != nil {
return nil, err
}
// After hook.
if fn := s.runtime.AfterValidatePurchaseApple(); fn != nil {
afterFn := func(clientIP, clientPort string) error {
return fn(ctx, s.logger, userID.String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxVarsKey{}).(map[string]string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, validation, in)
}
// Execute the after function lambda wrapped in a trace for stats measurement.
traceApiAfter(ctx, s.logger, s.metrics, ctx.Value(ctxFullMethodKey{}).(string), afterFn)
}
return validation, err
}
func (s *ApiServer) ValidatePurchaseGoogle(ctx context.Context, in *api.ValidatePurchaseGoogleRequest) (*api.ValidatePurchaseResponse, error) {
userID := ctx.Value(ctxUserIDKey{}).(uuid.UUID)
// Before hook.
if fn := s.runtime.BeforeValidatePurchaseGoogle(); fn != nil {
beforeFn := func(clientIP, clientPort string) error {
result, err, code := fn(ctx, s.logger, userID.String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxVarsKey{}).(map[string]string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, in)
if err != nil {
return status.Error(code, err.Error())
}
if result == nil {
// If result is nil, requested resource is disabled.
s.logger.Warn("Intercepted a disabled resource.", zap.Any("resource", ctx.Value(ctxFullMethodKey{}).(string)), zap.String("uid", userID.String()))
return status.Error(codes.NotFound, "Requested resource was not found.")
}
in = result
return nil
}
// Execute the before function lambda wrapped in a trace for stats measurement.
err := traceApiBefore(ctx, s.logger, s.metrics, ctx.Value(ctxFullMethodKey{}).(string), beforeFn)
if err != nil {
return nil, err
}
}
if s.config.GetIAP().Google.ClientEmail == "" || s.config.GetIAP().Google.PrivateKey == "" {
return nil, status.Error(codes.FailedPrecondition, "Google IAP is not configured.")
}
if len(in.Purchase) < 1 {
return nil, status.Error(codes.InvalidArgument, "Purchase cannot be empty.")
}
persist := true
if in.Persist != nil {
persist = in.Persist.GetValue()
}
validation, err := ValidatePurchaseGoogle(ctx, s.logger, s.db, userID, s.config.GetIAP().Google, in.Purchase, persist)
if err != nil {
return nil, err
}
// After hook.
if fn := s.runtime.AfterValidatePurchaseGoogle(); fn != nil {
afterFn := func(clientIP, clientPort string) error {
return fn(ctx, s.logger, userID.String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxVarsKey{}).(map[string]string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, validation, in)
}
// Execute the after function lambda wrapped in a trace for stats measurement.
traceApiAfter(ctx, s.logger, s.metrics, ctx.Value(ctxFullMethodKey{}).(string), afterFn)
}
return validation, err
}
func (s *ApiServer) ValidatePurchaseHuawei(ctx context.Context, in *api.ValidatePurchaseHuaweiRequest) (*api.ValidatePurchaseResponse, error) {
userID := ctx.Value(ctxUserIDKey{}).(uuid.UUID)
// Before hook.
if fn := s.runtime.BeforeValidatePurchaseHuawei(); fn != nil {
beforeFn := func(clientIP, clientPort string) error {
result, err, code := fn(ctx, s.logger, userID.String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxVarsKey{}).(map[string]string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, in)
if err != nil {
return status.Error(code, err.Error())
}
if result == nil {
// If result is nil, requested resource is disabled.
s.logger.Warn("Intercepted a disabled resource.", zap.Any("resource", ctx.Value(ctxFullMethodKey{}).(string)), zap.String("uid", userID.String()))
return status.Error(codes.NotFound, "Requested resource was not found.")
}
in = result
return nil
}
// Execute the before function lambda wrapped in a trace for stats measurement.
err := traceApiBefore(ctx, s.logger, s.metrics, ctx.Value(ctxFullMethodKey{}).(string), beforeFn)
if err != nil {
return nil, err
}
}
if s.config.GetIAP().Huawei.PublicKey == "" ||
s.config.GetIAP().Huawei.ClientID == "" ||
s.config.GetIAP().Huawei.ClientSecret == "" {
return nil, status.Error(codes.FailedPrecondition, "Huawei IAP is not configured.")
}
if len(in.Purchase) < 1 {
return nil, status.Error(codes.InvalidArgument, "Purchase cannot be empty.")
}
if len(in.Signature) < 1 {
return nil, status.Error(codes.InvalidArgument, "Signature cannot be empty.")
}
persist := true
if in.Persist != nil {
persist = in.Persist.GetValue()
}
validation, err := ValidatePurchaseHuawei(ctx, s.logger, s.db, userID, s.config.GetIAP().Huawei, in.Purchase, in.Signature, persist)
if err != nil {
return nil, err
}
// After hook.
if fn := s.runtime.AfterValidatePurchaseHuawei(); fn != nil {
afterFn := func(clientIP, clientPort string) error {
return fn(ctx, s.logger, userID.String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxVarsKey{}).(map[string]string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, validation, in)
}
// Execute the after function lambda wrapped in a trace for stats measurement.
traceApiAfter(ctx, s.logger, s.metrics, ctx.Value(ctxFullMethodKey{}).(string), afterFn)
}
return validation, err
}
func (s *ApiServer) ValidatePurchaseFacebookInstant(ctx context.Context, in *api.ValidatePurchaseFacebookInstantRequest) (*api.ValidatePurchaseResponse, error) {
userID := ctx.Value(ctxUserIDKey{}).(uuid.UUID)
// Before hook.
if fn := s.runtime.BeforeValidatePurchaseFacebookInstant(); fn != nil {
beforeFn := func(clientIP, clientPort string) error {
result, err, code := fn(ctx, s.logger, userID.String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxVarsKey{}).(map[string]string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, in)
if err != nil {
return status.Error(code, err.Error())
}
if result == nil {
// If result is nil, requested resource is disabled.
s.logger.Warn("Intercepted a disabled resource.", zap.Any("resource", ctx.Value(ctxFullMethodKey{}).(string)), zap.String("uid", userID.String()))
return status.Error(codes.NotFound, "Requested resource was not found.")
}
in = result
return nil
}
// Execute the before function lambda wrapped in a trace for stats measurement.
err := traceApiBefore(ctx, s.logger, s.metrics, ctx.Value(ctxFullMethodKey{}).(string), beforeFn)
if err != nil {
return nil, err
}
}
if s.config.GetIAP().FacebookInstant.AppSecret == "" {
return nil, status.Error(codes.FailedPrecondition, "Facebook Instant IAP is not configured.")
}
if len(in.SignedRequest) < 1 {
return nil, status.Error(codes.InvalidArgument, "SignedRequest cannot be empty.")
}
persist := true
if in.Persist != nil {
persist = in.Persist.GetValue()
}
validation, err := ValidatePurchaseFacebookInstant(ctx, s.logger, s.db, userID, s.config.GetIAP().FacebookInstant, in.SignedRequest, persist)
if err != nil {
return nil, err
}
// After hook.
if fn := s.runtime.AfterValidatePurchaseFacebookInstant(); fn != nil {
afterFn := func(clientIP, clientPort string) error {
return fn(ctx, s.logger, userID.String(), ctx.Value(ctxUsernameKey{}).(string), ctx.Value(ctxVarsKey{}).(map[string]string), ctx.Value(ctxExpiryKey{}).(int64), clientIP, clientPort, validation, in)
}
// Execute the after function lambda wrapped in a trace for stats measurement.
traceApiAfter(ctx, s.logger, s.metrics, ctx.Value(ctxFullMethodKey{}).(string), afterFn)
}
return validation, err
}