-
Notifications
You must be signed in to change notification settings - Fork 0
/
context_v1.thrift
550 lines (473 loc) · 13.3 KB
/
context_v1.thrift
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
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
/**
* Модель контекстов для принятия решений контроля доступа.
*/
namespace java dev.vality.bouncer.context.v1
namespace erlang bouncer.ctx.v1
namespace elixir Bouncer.Context.V1
include "base.thrift"
typedef base.Version Version
typedef base.Timestamp Timestamp
typedef base.Entity Entity
typedef base.EntityID EntityID
typedef base.Cash Cash
const Version HEAD = 2
/**
* Контекст для принятия решений, по сути аннотированный набором атрибутов.
* Контексты можно компоновать между собой.
*/
struct ContextFragment {
1: required Version vsn = HEAD
2: optional Environment env
3: optional Auth auth
4: optional User user
5: optional Requester requester
6: optional ContextCommonAPI capi
7: optional ContextOrgManagement orgmgmt
8: optional ContextUrlShortener shortener
9: optional ContextBinapi binapi
11: optional ContextAnalyticsAPI anapi
18: optional ContextWalletAPI wapi
10: optional ContextPaymentProcessing payment_processing
13: optional ContextWebhooks webhooks
14: optional ContextReports reports
15: optional ContextClaimManagement claimmgmt
17: optional ContextPaymentTool payment_tool
/**
* Наборы атрибутов для контекста сервиса кошельков, см. описание ниже.
*/
19: optional set<Entity> wallet // depecated, please move to 21: entities
20: optional ContextApiKeyMgmt apikeymgmt
21: optional set<Entity> entities
}
/**
* Атрибуты текущего окружения.
*/
struct Environment {
1: optional Timestamp now
2: optional Deployment deployment
}
struct Deployment {
/**
* - "Production"
* - "Staging"
* - ...
*/
1: optional string id
}
/**
* Атрибуты средства авторизации.
*/
struct Auth {
1: optional string method
2: optional set<AuthScope> scope
3: optional Timestamp expiration
4: optional Token token
}
/**
* Известные методы авторизации.
* Используются в качестве значения свойства `auth.method`.
*/
const string AuthMethod_ApiKey = "ApiKeyToken"
const string AuthMethod_SessionToken = "SessionToken"
const string AuthMethod_InvoiceAccessToken = "InvoiceAccessToken"
const string AuthMethod_InvoiceTemplateAccessToken = "InvoiceTemplateAccessToken"
const string AuthMethod_CustomerAccessToken = "CustomerAccessToken"
const string AuthMethod_P2PTransferTemplateTicket = "P2PTransferTemplateTicket"
const string AuthMethod_P2PTransferTemplateAccessToken = "P2PTransferTemplateAccessToken"
struct AuthScope {
1: optional Entity party
2: optional Entity shop
3: optional Entity invoice
4: optional Entity invoice_template
5: optional Entity customer
}
struct Token {
/**
* Например, [`jti`][1] в случае использования JWT в качестве токенов.
*
* [1]: https://tools.ietf.org/html/rfc7519#section-4.1.7
*/
1: optional string id
2: optional set<ResourceAccess> access
}
/**
* Атрибуты пользователя.
*/
struct User {
1: optional string id
2: optional Entity realm
3: optional string email
4: optional set<Organization> orgs
}
struct Organization {
1: optional string id
2: optional Entity owner
3: optional set<OrgRole> roles
4: optional Entity party
}
struct OrgRole {
/**
* Например:
* - "Administrator"
* - "Manager"
* - ...
*/
1: optional string id
2: optional OrgRoleScope scope
}
struct OrgRoleScope {
1: optional Entity shop
}
/**
* Атрибуты отправителя запроса.
*/
struct Requester {
1: optional string ip
}
/**
* Контекст, получаемый из сервисов, реализующих один из интерфейсов протокола
* https://github.com/valitydev/damsel/tree/master/proto/payment_processing.thrift
* (например данные о платёжных сущностях invoicing в hellgate)
* и содержащий _проверенную_ информацию
*/
struct ContextPaymentProcessing {
1: optional Invoice invoice
2: optional InvoiceTemplate invoice_template
3: optional Customer customer
}
struct Invoice {
1: optional string id
3: optional Entity party
4: optional Entity shop
5: optional set<Payment> payments
}
struct Payment {
1: optional string id
3: optional set<Entity> refunds
}
struct InvoiceTemplate {
1: optional string id
2: optional Entity party
3: optional Entity shop
}
struct Customer {
1: optional string id
2: optional Entity party
3: optional Entity shop
4: optional set<Entity> bindings
}
/**
* Контекст, получаемый из сервисов, реализующих протоколы сервиса [вебхуков]
* (https://github.com/valitydev/damsel/tree/master/proto/webhooker.thrift)
* и содержащий _проверенную_ информацию.
*/
struct ContextWebhooks {
1: optional Webhook webhook
}
struct Webhook {
1: optional string id
2: optional Entity party
3: optional WebhookFilter filter
}
struct WebhookFilter {
1: optional string topic
2: optional Entity shop
}
/**
* Контекст, получаемый из сервисов, реализующих протоколы сервиса [отчётов]
* и содержащий _проверенную_ информацию.
*/
struct ContextReports {
1: optional Report report
}
struct Report {
1: optional string id
2: optional Entity party
3: optional Entity shop
4: optional set<Entity> files
}
/** wallet
* Контекст, получаемый из сервисов, реализующих один из интерфейсов протокола
* (https://github.com/valitydev/fistful-proto)
* (например wallet в fistful-server)
* и содержащий _проверенную_ информацию
Информация о возможных объектах и полях к ним относящихся:
type = "Identity" {
1: id
2: party
}
type = "Wallet" {
1: id
2: identity
3: wallet_grant_body
}
type = "Withdrawal" {
1: id
2: wallet
}
type = "Deposit" {
1: id
2: wallet
}
type = "W2WTransfer" {
1: id
2: wallet
}
type = "Source" {
1: id
2: identity
}
type = "Destination" {
1: id
2: identity
}
*/
/** wallet_webhooks
* Контекст, получаемый из сервисов, реализующих протоколы сервиса [вебхуков]
* (https://github.com/valitydev/fistful-proto/blob/master/proto/webhooker.thrift)
* и содержащий _проверенную_ информацию.
Информация о возможных объектах и полях к ним относящихся:
type = "WalletWebhook" {
1: id
2: identity
3: wallet
}
*/
/** wallet_reports
* Контекст, получаемый из сервисов, реализующих протоколы сервиса [отчётов]
* (https://github.com/valitydev/fistful-reporter-proto)
* (например wallet в fistful-server)
* и содержащий _проверенную_ информацию
Информация о возможных объектах и полях к ним относящихся:
type = "WalletReport" {
1: id
2: identity
3: files
}
*/
/**
* Контекст Common API.
*/
struct ContextCommonAPI {
1: optional CommonAPIOperation op
}
/**
* Арибуты операции Common API.
* Данные, присланные _клиентом_ в явном виде как часть запроса
*/
struct CommonAPIOperation {
/**
* Например:
* - "GetMyParty"
* - "CreateInvoice"
* - ...
*/
1: optional string id
2: optional Entity party
3: optional Entity shop
7: optional Entity contract
4: optional Entity invoice
5: optional Entity payment
6: optional Entity refund
8: optional Entity invoice_template
9: optional Entity customer
10: optional Entity binding
11: optional Entity report
12: optional Entity file
13: optional Entity webhook
14: optional Entity claim
16: optional ClientInfo client_info
}
/*
* Дополнительная информация о клиенте и его устройствах
* передаваемая в некоторых запросах в явном виде.
*/
struct ClientInfo {
/*
* ip адрес плательщика передаваемый в createPaymentResource
*/
1: optional string ip
}
/**
* Атрибуты Organization Management.
*/
struct ContextOrgManagement {
1: optional OrgManagementOperation op
2: optional OrgManagementInvitation invitation
}
struct OrgManagementOperation {
/**
* Например:
* - "InquireMembership"
* - "ExpelOrgMember"
* - ...
*/
1: optional string id
2: optional Entity organization
3: optional User member
4: optional OrgRole role
}
struct OrgManagementInvitation {
3: optional string id
1: optional Invitee invitee
2: optional Entity organization
}
struct Invitee {
1: optional string email
}
/**
* Атрибуты Api Key Management.
*/
struct ContextApiKeyMgmt {
1: optional ApiKeyMgmtOperation op
}
struct ApiKeyMgmtOperation {
/**
* Например:
* - "GetApiKey"
* - "RevokeApiKey"
* - ...
*/
1: optional string id
2: optional Entity party
3: optional Entity api_key
}
/** api_key
* Контекст, содержащий _проверенную_ информацию об объектах.
Информация о возможных объектах и полях к ним относящихся:
type = "ApiKey" {
1: id
2: party
}
*/
/**
* Атрибуты Claim Management API.
*/
struct ContextClaimManagement {
1: optional ClaimManagementOperation op
}
struct ClaimManagementOperation {
/**
* Например:
* - "createClaim"
* - "revokeClaimByID"
* - ...
*/
1: optional string id
2: optional Entity party
}
/**
* Атрибуты Url Shortener.
*/
struct ContextUrlShortener {
1: optional UrlShortenerOperation op
}
struct UrlShortenerOperation {
/**
* Например:
* - "ShortenUrl"
* - "GetShortenedUrl"
* - "DeleteShortenedUrl"
*/
1: optional string id
2: optional ShortenedUrl shortened_url
}
struct ShortenedUrl {
1: optional string id
2: optional Entity owner
}
struct ResourceAccess {
/**
* Например:
* - "claim-management"
* - "private-api"
* - ...
*/
1: optional string id
2: optional set<string> roles
}
struct ContextBinapi {
1: required BinapiOperation op
}
struct BinapiOperation {
/**
* Например:
* - "LookupCardInfo"
* - ...
*/
1: required string id
2: optional Entity party
}
/**
* Атрибуты AnalyticsAPI.
*/
struct ContextAnalyticsAPI {
1: optional AnalyticsAPIOperation op
}
struct AnalyticsAPIOperation {
/**
* Например:
* - "GetPaymentsAmount"
* - "CreateReport"
* - "SearchInvoices"
*/
1: optional string id
2: optional Entity party
3: optional Entity shop
4: optional Entity report
5: optional Entity file
}
/**
* Атрибуты платежного стредства.
* Токены платежных интрументов создаются в createPaymentResource.
* Этот контекст используется и для провайдерских токенов.
* Привязка может быть сопоставлена с Auth конекстом или CommonAPIOperation.
*/
struct ContextPaymentTool {
/**
* Привязка токена платежного средства
*/
1: optional AuthScope scope
/**
* Время жизни токена платежного средства
*/
2: optional Timestamp expiration
}
/**
* Атрибуты WalletAPI.
*/
struct ContextWalletAPI {
1: optional WalletAPIOperation op
2: optional set<WalletGrant> grants
}
/**
* Контекст, получаемый из grant токена, предоставляющего доступ к кошельку или назначению
* и содержащий _проверенную_ информацию.
*/
struct WalletGrant {
1: optional EntityID wallet
2: optional EntityID destination
3: optional Cash body
4: optional Timestamp created_at
5: optional Timestamp expires_on
}
struct WalletAPIOperation {
/**
* Например:
* - "ListDestinations"
* - "GetIdentity"
* - "CreateWebhook"
*/
1: optional string id
2: optional EntityID party
3: optional EntityID identity
4: optional EntityID wallet
5: optional EntityID withdrawal
6: optional EntityID deposit
7: optional EntityID w2w_transfer
8: optional EntityID source
9: optional EntityID destination
10: optional EntityID report
11: optional EntityID file
12: optional EntityID webhook
}