This repository has been archived by the owner on Feb 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 736
/
payments.rs
1163 lines (1057 loc) · 55.2 KB
/
payments.rs
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
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
extern crate libc;
use self::libc::c_char;
use api::ErrorCode;
use commands::{Command, CommandExecutor};
use commands::payments::PaymentsCommand;
use errors::ToErrorCode;
use services::payments::PaymentsMethodCBs;
use utils::cstring::CStringUtils;
/// Create the payment address for this payment method.
///
/// This method generates private part of payment address
/// and stores it in a secure place. Ideally it should be
/// secret in libindy wallet (see crypto module).
///
/// Note that payment method should be able to resolve this
/// secret by fully resolvable payment address format.
///
/// #Params
/// command_handle: command handle to map callback to context
/// wallet_handle: wallet handle where keys for signature are stored
/// config: payment address config as json:
/// {
/// seed: <str>, // allows deterministic creation of payment address
/// }
///
/// #Returns
/// payment_address - public identifier of payment address in fully resolvable payment address format
pub type CreatePaymentAddressCB = extern fn(command_handle: i32,
wallet_handle: i32,
config: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
payment_address: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Modifies Indy request by adding information how to pay fees for this transaction
/// according to this payment method.
///
/// This method consumes set of inputs and outputs. The difference between inputs balance
/// and outputs balance is the fee for this transaction.
///
/// Not that this method also produces correct fee signatures.
///
/// Format of inputs is specific for payment method. Usually it should reference payment transaction
/// with at least one output that corresponds to payment address that user owns.
///
/// #Params
/// command_handle: command handle to map callback to context
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// req_json: initial transaction request as json
/// inputs_json: The list of payment sources as json array:
/// ["source1", ...]
/// Note that each source should reference payment address
/// outputs_json: The list of outputs as json array:
/// [{
/// recipient: <str>, // payment address of recipient
/// amount: <int>, // amount
/// }]
/// extra: // optional information for payment operation
///
/// #Returns
/// req_with_fees_json - modified Indy request with added fees info
pub type AddRequestFeesCB = extern fn(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
req_json: *const c_char,
inputs_json: *const c_char,
outputs_json: *const c_char,
extra: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
req_with_fees_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Parses response for Indy request with fees.
///
/// #Params
/// command_handle: command handle to map callback to context
/// resp_json: response for Indy request with fees
///
/// #Returns
/// receipts_json - parsed (payment method and node version agnostic) receipts info as json:
/// [{
/// receipt: <str>, // receipt that can be used for payment referencing and verification
/// recipient: <str>, //payment address for this recipient
/// amount: <int>, // amount
/// extra: <str>, // optional data from payment transaction
/// }]
pub type ParseResponseWithFeesCB = extern fn(command_handle: i32,
resp_json: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
receipts_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Builds Indy request for getting sources list for payment address
/// according to this payment method.
///
/// #Params
/// command_handle: command handle to map callback to context
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// payment_address: target payment address
///
/// #Returns
/// get_sources_txn_json - Indy request for getting sources list for payment address
pub type BuildGetPaymentSourcesRequestCB = extern fn(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
payment_address: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
get_sources_txn_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Parses response for Indy request for getting sources list.
///
/// #Params
/// command_handle: command handle to map callback to context
/// resp_json: response for Indy request for getting sources list
///
/// #Returns
/// sources_json - parsed (payment method and node version agnostic) sources info as json:
/// [{
/// source: <str>, // source input
/// paymentAddress: <str>, //payment address for this source
/// amount: <int>, // amount
/// extra: <str>, // optional data from payment transaction
/// }]
pub type ParseGetPaymentSourcesResponseCB = extern fn(command_handle: i32,
resp_json: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
sources_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Builds Indy request for doing payment
/// according to this payment method.
///
/// This method consumes set of inputs and outputs.
///
/// Format of inputs is specific for payment method. Usually it should reference payment transaction
/// with at least one output that corresponds to payment address that user owns.
///
/// #Params
/// command_handle: command handle to map callback to context
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// inputs_json: The list of payment sources as json array:
/// ["source1", ...]
/// Note that each source should reference payment address
/// outputs_json: The list of outputs as json array:
/// [{
/// recipient: <str>, // payment address of recipient
/// amount: <int>, // amount
/// }]
/// extra: // optional information for payment operation
///
/// #Returns
/// payment_req_json - Indy request for doing payment
pub type BuildPaymentReqCB = extern fn(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
inputs_json: *const c_char,
outputs_json: *const c_char,
extra: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
payment_req_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Parses response for Indy request for payment txn.
///
/// #Params
/// command_handle: command handle to map callback to context
/// resp_json: response for Indy request for payment txn
///
/// #Returns
/// receipts_json - parsed (payment method and node version agnostic) receipts info as json:
/// [{
/// receipt: <str>, // receipt that can be used for payment referencing and verification
/// recipient: <str>, //payment address for this receipt
/// amount: <int>, // amount
/// extra: <str>, // optional data from payment transaction
/// }]
pub type ParsePaymentResponseCB = extern fn(command_handle: i32,
resp_json: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
receipts_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Builds Indy request for doing minting
/// according to this payment method.
///
/// #Params
/// command_handle: command handle to map callback to context
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// outputs_json: The list of outputs as json array:
/// [{
/// recipient: <str>, // payment address of recipient
/// amount: <int>, // amount
/// }]
/// extra: // optional information for payment operation
///
/// #Returns
/// mint_req_json - Indy request for doing minting
pub type BuildMintReqCB = extern fn(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
outputs_json: *const c_char,
extra: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
mint_req_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Builds Indy request for setting fees for transactions in the ledger
///
/// # Params
/// command_handle: command handle to map callback to context
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// fees_json {
/// txnType1: amount1,
/// txnType2: amount2,
/// .................
/// txnTypeN: amountN,
/// }
///
/// # Return
/// set_txn_fees_json - Indy request for setting fees for transactions in the ledger
pub type BuildSetTxnFeesReqCB = extern fn(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
fees_json: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
set_txn_fees_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Builds Indy get request for getting fees for transactions in the ledger
///
/// # Params
/// command_handle: command handle to map callback to context
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
///
/// # Return
/// get_txn_fees_json - Indy request for getting fees for transactions in the ledger
pub type BuildGetTxnFeesReqCB = extern fn(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
get_txn_fees_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Parses response for Indy request for getting fees
///
/// # Params
/// command_handle: command handle to map callback to context
/// resp_json: response for Indy request for getting fees
///
/// # Return
/// fees_json {
/// txnType1: amount1,
/// txnType2: amount2,
/// .................
/// txnTypeN: amountN,
/// }
pub type ParseGetTxnFeesResponseCB = extern fn(command_handle: i32,
resp_json: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
fees_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Builds Indy request for getting information to verify the payment receipt
///
/// # Params
/// command_handle: command handle to map callback to context
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// receipt: payment receipt to verify
///
/// # Return
/// verify_txn_json -- request to be sent to ledger
pub type BuildVerifyPaymentReqCB = extern fn(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
receipt: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
verify_txn_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Parses Indy response with information to verify receipt
///
/// # Params
/// command_handle: command handle to map callback to context
/// resp_json: response for Indy request for information to verify the payment receipt
///
/// # Return
/// txn_json: {
/// sources: [<str>, ]
/// receipts: [ {
/// recipient: <str>, // payment address of recipient
/// receipt: <str>, // receipt that can be used for payment referencing and verification
/// amount: <int>, // amount
/// }, ]
/// extra: <str>, //optional data
/// }
pub type ParseVerifyPaymentResponseCB = extern fn(command_handle: i32,
resp_json: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
txn_json: *const c_char) -> ErrorCode>) -> ErrorCode;
/// Register custom payment implementation.
///
/// It allows library user to provide custom payment method implementation as set of handlers.
///
/// #Params
/// command_handle: Command handle to map callback to caller context.
/// payment_method: The type of payment method also used as sub-prefix for fully resolvable payment address format ("sov" - for example)
/// create_payment_address: "create_payment_address" operation handler
/// add_request_fees: "add_request_fees" operation handler
/// parse_response_with_fees: "parse_response_with_fees" operation handler
/// build_get_payment_sources_request: "build_get_payment_sources_request" operation handler
/// parse_get_payment_sources_response: "parse_get_payment_sources_response" operation handler
/// build_payment_req: "build_payment_req" operation handler
/// parse_payment_response: "parse_payment_response" operation handler
/// build_mint_req: "build_mint_req" operation handler
/// build_set_txn_fees_req: "build_set_txn_fees_req" operation handler
/// build_get_txn_fees_req: "build_get_txn_fees_req" operation handler
/// parse_get_txn_fees_response: "parse_get_txn_fees_response" operation handler
/// build_verify_payment_req: "build_verify_payment_req" operation handler
/// parse_verify_payment_response: "parse_verify_payment_response" operation handler
///
/// #Returns
/// Error code
#[no_mangle]
pub extern fn indy_register_payment_method(command_handle: i32,
payment_method: *const c_char,
create_payment_address: Option<CreatePaymentAddressCB>,
add_request_fees: Option<AddRequestFeesCB>,
parse_response_with_fees: Option<ParseResponseWithFeesCB>,
build_get_payment_sources_request: Option<BuildGetPaymentSourcesRequestCB>,
parse_get_payment_sources_response: Option<ParseGetPaymentSourcesResponseCB>,
build_payment_req: Option<BuildPaymentReqCB>,
parse_payment_response: Option<ParsePaymentResponseCB>,
build_mint_req: Option<BuildMintReqCB>,
build_set_txn_fees_req: Option<BuildSetTxnFeesReqCB>,
build_get_txn_fees_req: Option<BuildGetTxnFeesReqCB>,
parse_get_txn_fees_response: Option<ParseGetTxnFeesResponseCB>,
build_verify_payment_req: Option<BuildVerifyPaymentReqCB>,
parse_verify_payment_response: Option<ParseVerifyPaymentResponseCB>,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode)>) -> ErrorCode {
trace!("indy_register_payment_method: >>> payment_method: {:?}", payment_method);
check_useful_c_str!(payment_method, ErrorCode::CommonInvalidParam2);
check_useful_c_callback!(create_payment_address, ErrorCode::CommonInvalidParam3);
check_useful_c_callback!(add_request_fees, ErrorCode::CommonInvalidParam4);
check_useful_c_callback!(parse_response_with_fees, ErrorCode::CommonInvalidParam5);
check_useful_c_callback!(build_get_payment_sources_request, ErrorCode::CommonInvalidParam6);
check_useful_c_callback!(parse_get_payment_sources_response, ErrorCode::CommonInvalidParam7);
check_useful_c_callback!(build_payment_req, ErrorCode::CommonInvalidParam8);
check_useful_c_callback!(parse_payment_response, ErrorCode::CommonInvalidParam9);
check_useful_c_callback!(build_mint_req, ErrorCode::CommonInvalidParam10);
check_useful_c_callback!(build_set_txn_fees_req, ErrorCode::CommonInvalidParam11);
check_useful_c_callback!(build_get_txn_fees_req, ErrorCode::CommonInvalidParam12);
check_useful_c_callback!(parse_get_txn_fees_response, ErrorCode::CommonInvalidParam13);
check_useful_c_callback!(build_verify_payment_req, ErrorCode::CommonInvalidParam14);
check_useful_c_callback!(parse_verify_payment_response, ErrorCode::CommonInvalidParam15);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam16);
trace!("indy_register_payment_method: entities >>> payment_method: {:?}", payment_method);
let cbs = PaymentsMethodCBs::new(
create_payment_address,
add_request_fees,
parse_response_with_fees,
build_get_payment_sources_request,
parse_get_payment_sources_response,
build_payment_req,
parse_payment_response,
build_mint_req,
build_set_txn_fees_req,
build_get_txn_fees_req,
parse_get_txn_fees_response,
build_verify_payment_req,
parse_verify_payment_response,
);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::RegisterMethod(
payment_method,
cbs,
Box::new(move |result| {
cb(command_handle, result.to_error_code());
}))
));
let res = result_to_err_code!(result);
trace!("indy_register_payment_method: <<< res: {:?}", res);
res
}
/// Create the payment address for specified payment method
///
///
/// This method generates private part of payment address
/// and stores it in a secure place. Ideally it should be
/// secret in libindy wallet (see crypto module).
///
/// Note that payment method should be able to resolve this
/// secret by fully resolvable payment address format.
///
/// #Params
/// command_handle: command handle to map callback to context
/// wallet_handle: wallet handle where to save new address
/// payment_method: payment method to use (for example, 'sov')
/// config: payment address config as json:
/// {
/// seed: <str>, // allows deterministic creation of payment address
/// }
///
/// #Returns
/// payment_address - public identifier of payment address in fully resolvable payment address format
#[no_mangle]
pub extern fn indy_create_payment_address(command_handle: i32,
wallet_handle: i32,
payment_method: *const c_char,
config: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
payment_address: *const c_char)>) -> ErrorCode {
trace!("indy_create_payment_address: >>> wallet_handle: {:?}, payment_method: {:?}, config: {:?}", wallet_handle, payment_method, config);
check_useful_c_str!(payment_method, ErrorCode::CommonInvalidParam3);
check_useful_c_str!(config, ErrorCode::CommonInvalidParam4);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam5);
trace!("indy_create_payment_address: entities >>> wallet_handle: {:?}, payment_method: {:?}, config: {:?}", wallet_handle, payment_method, config);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::CreateAddress(
wallet_handle,
payment_method,
config,
Box::new(move |result| {
let (err, address) = result_to_err_code_1!(result, String::new());
trace!("indy_create_payment_address: address: {:?}", address);
let address = CStringUtils::string_to_cstring(address);
cb(command_handle, err, address.as_ptr());
}))
));
let res = result_to_err_code!(result);
trace!("indy_create_payment_address: <<< res: {:?}", res);
res
}
/// Lists all payment addresses that are stored in the wallet
///
/// #Params
/// command_handle: command handle to map callback to context
/// wallet_handle: wallet to search for payment_addresses in
///
/// #Returns
/// payment_addresses_json - json array of string with json addresses
#[no_mangle]
pub extern fn indy_list_payment_addresses(command_handle: i32,
wallet_handle: i32,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
payment_addresses_json: *const c_char)>) -> ErrorCode {
trace!("indy_list_payment_address: >>> wallet_handle: {:?}", wallet_handle);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam3);
trace!("indy_list_payment_address: entities >>> wallet_handle: {:?}", wallet_handle);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::ListAddresses(
wallet_handle,
Box::new(move |result| {
let (err, addresses_json) = result_to_err_code_1!(result, String::new());
trace!("indy_list_payment_address: addresses_json: {:?}", addresses_json);
let addresses_json = CStringUtils::string_to_cstring(addresses_json);
cb(command_handle, err, addresses_json.as_ptr());
}))
));
let res = result_to_err_code!(result);
trace!("indy_list_payment_address: <<< res: {:?}", res);
res
}
/// Modifies Indy request by adding information how to pay fees for this transaction
/// according to this payment method.
///
/// This method consumes set of inputs and outputs. The difference between inputs balance
/// and outputs balance is the fee for this transaction.
///
/// Not that this method also produces correct fee signatures.
///
/// Format of inputs is specific for payment method. Usually it should reference payment transaction
/// with at least one output that corresponds to payment address that user owns.
///
/// #Params
/// command_handle: Command handle to map callback to caller context.
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// req_json: initial transaction request as json
/// inputs_json: The list of payment sources as json array:
/// ["source1", ...]
/// - each input should reference paymentAddress
/// - this param will be used to determine payment_method
/// outputs_json: The list of outputs as json array:
/// [{
/// recipient: <str>, // payment address of recipient
/// amount: <int>, // amount
/// }]
/// extra: // optional information for payment operation
///
/// #Returns
/// req_with_fees_json - modified Indy request with added fees info
/// payment_method - used payment method
#[no_mangle]
pub extern fn indy_add_request_fees(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
req_json: *const c_char,
inputs_json: *const c_char,
outputs_json: *const c_char,
extra: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
req_with_fees_json: *const c_char,
payment_method: *const c_char)>) -> ErrorCode {
trace!("indy_add_request_fees: >>> wallet_handle: {:?}, submitter_did: {:?}, req_json: {:?}, inputs_json: {:?}, outputs_json: {:?}, extra: {:?}",
wallet_handle, submitter_did, req_json, inputs_json, outputs_json, extra);
check_useful_c_str!(submitter_did, ErrorCode::CommonInvalidParam3);
check_useful_c_str!(req_json, ErrorCode::CommonInvalidParam4);
check_useful_c_str!(inputs_json, ErrorCode::CommonInvalidParam5);
check_useful_c_str!(outputs_json, ErrorCode::CommonInvalidParam6);
check_useful_opt_c_str!(extra, ErrorCode::CommonInvalidParam7);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam8);
trace!("indy_add_request_fees: entities >>> wallet_handle: {:?}, submitter_did: {:?}, req_json: {:?}, inputs_json: {:?}, outputs_json: {:?}, extra: {:?}",
wallet_handle, submitter_did, req_json, inputs_json, outputs_json, extra);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::AddRequestFees(
wallet_handle,
submitter_did,
req_json,
inputs_json,
outputs_json,
extra,
Box::new(move |result| {
let (err, req_with_fees_json, payment_method) = result_to_err_code_2!(result, String::new(), String::new());
trace!("indy_add_request_fees: req_with_fees_json: {:?}, payment_method: {:?}", req_with_fees_json, payment_method);
let req_with_fees_json = CStringUtils::string_to_cstring(req_with_fees_json);
let payment_method = CStringUtils::string_to_cstring(payment_method);
cb(command_handle, err, req_with_fees_json.as_ptr(), payment_method.as_ptr());
}))
));
let res = result_to_err_code!(result);
trace!("indy_add_request_fees: <<< res: {:?}", res);
res
}
/// Parses response for Indy request with fees.
///
/// #Params
/// command_handle: Command handle to map callback to caller context.
/// payment_method: payment method to use
/// resp_json: response for Indy request with fees
///
/// #Returns
/// receipts_json - parsed (payment method and node version agnostic) receipts info as json:
/// [{
/// receipt: <str>, // receipt that can be used for payment referencing and verification
/// recipient: <str>, //payment address of recipient
/// amount: <int>, // amount
/// extra: <str>, // optional data from payment transaction
/// }]
#[no_mangle]
pub extern fn indy_parse_response_with_fees(command_handle: i32,
payment_method: *const c_char,
resp_json: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
receipts_json: *const c_char)>) -> ErrorCode {
trace!("indy_parse_response_with_fees: >>> payment_method: {:?}, resp_json: {:?}", payment_method, resp_json);
check_useful_c_str!(payment_method, ErrorCode::CommonInvalidParam2);
check_useful_c_str!(resp_json, ErrorCode::CommonInvalidParam3);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam4);
trace!("indy_parse_response_with_fees: entities >>> payment_method: {:?}, resp_json: {:?}", payment_method, resp_json);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::ParseResponseWithFees(
payment_method, resp_json, Box::new(move |result| {
let (err, receipts_json) = result_to_err_code_1!(result, String::new());
trace!("indy_parse_response_with_fees: receipts_json: {:?}", receipts_json);
let receipts_json = CStringUtils::string_to_cstring(receipts_json);
cb(command_handle, err, receipts_json.as_ptr());
}))
));
let res = result_to_err_code!(result);
trace!("indy_parse_response_with_fees: <<< res: {:?}", res);
res
}
/// Builds Indy request for getting sources list for payment address
/// according to this payment method.
///
/// #Params
/// command_handle: Command handle to map callback to caller context.
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// payment_address: target payment address
///
/// #Returns
/// get_sources_txn_json - Indy request for getting sources list for payment address
/// payment_method - used payment method
#[no_mangle]
pub extern fn indy_build_get_payment_sources_request(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
payment_address: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
get_sources_txn_json: *const c_char,
payment_method: *const c_char)>) -> ErrorCode {
trace!("indy_build_get_payment_sources_request: >>> wallet_handle: {:?}, submitter_did: {:?}, payment_address: {:?}", wallet_handle, submitter_did, payment_address);
check_useful_c_str!(submitter_did, ErrorCode::CommonInvalidParam3);
check_useful_c_str!(payment_address, ErrorCode::CommonInvalidParam4);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam5);
trace!("indy_build_get_payment_sources_request: entities >>> wallet_handle: {:?}, submitter_did: {:?}, payment_address: {:?}", wallet_handle, submitter_did, payment_address);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::BuildGetPaymentSourcesRequest(
wallet_handle,
submitter_did,
payment_address,
Box::new(move |result| {
let (err, get_sources_txn_json, payment_method) = result_to_err_code_2!(result, String::new(), String::new());
trace!("indy_build_get_payment_sources_request: get_sources_txn_json: {:?}, payment_method: {:?}", get_sources_txn_json, payment_method);
let get_sources_txn_json = CStringUtils::string_to_cstring(get_sources_txn_json);
let payment_method = CStringUtils::string_to_cstring(payment_method);
cb(command_handle, err, get_sources_txn_json.as_ptr(), payment_method.as_ptr());
}))
));
let res = result_to_err_code!(result);
trace!("indy_build_get_payment_sources_request: <<< res: {:?}", res);
res
}
/// Parses response for Indy request for getting sources list.
///
/// #Params
/// command_handle: Command handle to map callback to caller context.
/// payment_method: payment method to use.
/// resp_json: response for Indy request for getting sources list
///
/// #Returns
/// sources_json - parsed (payment method and node version agnostic) sources info as json:
/// [{
/// source: <str>, // source input
/// paymentAddress: <str>, //payment address for this source
/// amount: <int>, // amount
/// extra: <str>, // optional data from payment transaction
/// }]
#[no_mangle]
pub extern fn indy_parse_get_payment_sources_response(command_handle: i32,
payment_method: *const c_char,
resp_json: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
sources_json: *const c_char)>) -> ErrorCode {
trace!("indy_parse_get_payment_sources_response: >>> payment_method: {:?}, resp_json: {:?}", payment_method, resp_json);
check_useful_c_str!(payment_method, ErrorCode::CommonInvalidParam2);
check_useful_c_str!(resp_json, ErrorCode::CommonInvalidParam3);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam4);
trace!("indy_parse_get_payment_sources_response: entities >>> payment_method: {:?}, resp_json: {:?}", payment_method, resp_json);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::ParseGetPaymentSourcesResponse(
payment_method,
resp_json,
Box::new(move |result| {
let (err, sources_json) = result_to_err_code_1!(result, String::new());
trace!("indy_parse_get_payment_sources_response: sources_json: {:?}", sources_json);
let sources_json = CStringUtils::string_to_cstring(sources_json);
cb(command_handle, err, sources_json.as_ptr());
}))
));
let res = result_to_err_code!(result);
trace!("indy_parse_get_payment_sources_response: <<< res: {:?}", res);
res
}
/// Builds Indy request for doing payment
/// according to this payment method.
///
/// This method consumes set of inputs and outputs.
///
/// Format of inputs is specific for payment method. Usually it should reference payment transaction
/// with at least one output that corresponds to payment address that user owns.
///
/// #Params
/// command_handle: Command handle to map callback to caller context.
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// inputs_json: The list of payment sources as json array:
/// ["source1", ...]
/// Note that each source should reference payment address
/// outputs_json: The list of outputs as json array:
/// [{
/// recipient: <str>, // payment address of recipient
/// amount: <int>, // amount
/// }]
/// extra: // optional information for payment operation
///
/// #Returns
/// payment_req_json - Indy request for doing payment
/// payment_method - used payment method
#[no_mangle]
pub extern fn indy_build_payment_req(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
inputs_json: *const c_char,
outputs_json: *const c_char,
extra: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
payment_req_json: *const c_char,
payment_method: *const c_char)>) -> ErrorCode {
trace!("indy_build_payment_req: >>> wallet_handle: {:?}, submitter_did: {:?}, inputs_json: {:?}, outputs_json: {:?}, extra: {:?}",
wallet_handle, submitter_did, inputs_json, outputs_json, extra);
check_useful_c_str!(submitter_did, ErrorCode::CommonInvalidParam3);
check_useful_c_str!(inputs_json, ErrorCode::CommonInvalidParam4);
check_useful_c_str!(outputs_json, ErrorCode::CommonInvalidParam5);
check_useful_opt_c_str!(extra, ErrorCode::CommonInvalidParam6);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam7);
trace!("indy_build_payment_req: entities >>> wallet_handle: {:?}, submitter_did: {:?}, inputs_json: {:?}, outputs_json: {:?}, extra: {:?}",
wallet_handle, submitter_did, inputs_json, outputs_json, extra);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::BuildPaymentReq(
wallet_handle,
submitter_did,
inputs_json,
outputs_json,
extra,
Box::new(move |result| {
let (err, payment_req_json, payment_method) = result_to_err_code_2!(result, String::new(), String::new());
trace!("indy_build_payment_req: payment_req_json: {:?}, payment_method: {:?}", payment_req_json, payment_method);
let payment_req_json = CStringUtils::string_to_cstring(payment_req_json);
let payment_method = CStringUtils::string_to_cstring(payment_method);
cb(command_handle, err, payment_req_json.as_ptr(), payment_method.as_ptr());
}))
));
let res = result_to_err_code!(result);
trace!("indy_build_payment_req: <<< res: {:?}", res);
res
}
/// Parses response for Indy request for payment txn.
///
/// #Params
/// command_handle: Command handle to map callback to caller context.
/// payment_method: payment method to use
/// resp_json: response for Indy request for payment txn
///
/// #Returns
/// receipts_json - parsed (payment method and node version agnostic) receipts info as json:
/// [{
/// receipt: <str>, // receipt that can be used for payment referencing and verification
/// recipient: <str>, // payment address of recipient
/// amount: <int>, // amount
/// extra: <str>, // optional data from payment transaction
/// }]
#[no_mangle]
pub extern fn indy_parse_payment_response(command_handle: i32,
payment_method: *const c_char,
resp_json: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
receipts_json: *const c_char)>) -> ErrorCode {
trace!("indy_parse_payment_response: >>> payment_method: {:?}, resp_json: {:?}", payment_method, resp_json);
check_useful_c_str!(payment_method, ErrorCode::CommonInvalidParam2);
check_useful_c_str!(resp_json, ErrorCode::CommonInvalidParam3);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam4);
trace!("indy_parse_payment_response: entities >>> payment_method: {:?}, resp_json: {:?}", payment_method, resp_json);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::ParsePaymentResponse(
payment_method,
resp_json,
Box::new(move |result| {
let (err, receipts_json) = result_to_err_code_1!(result, String::new());
trace!("indy_parse_payment_response: receipts_json: {:?}", receipts_json);
let receipts_json = CStringUtils::string_to_cstring(receipts_json);
cb(command_handle, err, receipts_json.as_ptr());
}))
));
let res = result_to_err_code!(result);
trace!("indy_parse_payment_response: <<< res: {:?}", res);
res
}
/// Builds Indy request for doing minting
/// according to this payment method.
///
/// #Params
/// command_handle: Command handle to map callback to caller context.
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// outputs_json: The list of outputs as json array:
/// [{
/// recipient: <str>, // payment address of recipient
/// amount: <int>, // amount
/// }]
/// extra: // optional information for mint operation
///
/// #Returns
/// mint_req_json - Indy request for doing minting
/// payment_method - used payment method
#[no_mangle]
pub extern fn indy_build_mint_req(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
outputs_json: *const c_char,
extra: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
mint_req_json: *const c_char,
payment_method: *const c_char)>) -> ErrorCode {
trace!("indy_build_mint_req: >>> wallet_handle: {:?}, submitter_did: {:?}, outputs_json: {:?}, extra: {:?}", wallet_handle, submitter_did, outputs_json, extra);
check_useful_c_str!(submitter_did, ErrorCode::CommonInvalidParam3);
check_useful_c_str!(outputs_json, ErrorCode::CommonInvalidParam4);
check_useful_opt_c_str!(extra, ErrorCode::CommonInvalidParam5);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam6);
trace!("indy_build_mint_req: entities >>> wallet_handle: {:?}, submitter_did: {:?}, outputs_json: {:?}, extra: {:?}", wallet_handle, submitter_did, outputs_json, extra);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::BuildMintReq(
wallet_handle,
submitter_did,
outputs_json,
extra,
Box::new(move |result| {
let (err, mint_req_json, payment_method) = result_to_err_code_2!(result, String::new(), String::new());
trace!("indy_build_mint_req: mint_req_json: {:?}, payment_method: {:?}", mint_req_json, payment_method);
let mint_req_json = CStringUtils::string_to_cstring(mint_req_json);
let payment_method = CStringUtils::string_to_cstring(payment_method);
cb(command_handle, err, mint_req_json.as_ptr(), payment_method.as_ptr());
}))
));
let res = result_to_err_code!(result);
trace!("indy_build_mint_req: <<< res: {:?}", res);
res
}
/// Builds Indy request for setting fees for transactions in the ledger
///
/// # Params
/// command_handle: Command handle to map callback to caller context.
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// payment_method: payment method to use
/// fees_json {
/// txnType1: amount1,
/// txnType2: amount2,
/// .................
/// txnTypeN: amountN,
/// }
/// # Return
/// set_txn_fees_json - Indy request for setting fees for transactions in the ledger
#[no_mangle]
pub extern fn indy_build_set_txn_fees_req(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
payment_method: *const c_char,
fees_json: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
set_txn_fees_json: *const c_char)>) -> ErrorCode {
trace!("indy_build_set_txn_fees_req: >>> wallet_handle: {:?}, submitter_did: {:?}, payment_method: {:?}, fees_json: {:?}", wallet_handle, submitter_did, payment_method, fees_json);
check_useful_c_str!(submitter_did, ErrorCode::CommonInvalidParam3);
check_useful_c_str!(payment_method, ErrorCode::CommonInvalidParam4);
check_useful_c_str!(fees_json, ErrorCode::CommonInvalidParam5);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam6);
trace!("indy_build_set_txn_fees_req: entitites >>> wallet_handle: {:?}, submitter_did: {:?}, payment_method: {:?}, fees_json: {:?}", wallet_handle, submitter_did, payment_method, fees_json);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::BuildSetTxnFeesReq(
wallet_handle,
submitter_did,
payment_method,
fees_json,
Box::new(move |result| {
let (err, set_txn_fees_json) = result_to_err_code_1!(result, String::new());
trace!("indy_build_set_txn_fees_req: set_txn_fees_json: {:?}", set_txn_fees_json);
let set_txn_fees_json = CStringUtils::string_to_cstring(set_txn_fees_json);
cb(command_handle, err, set_txn_fees_json.as_ptr());
}))
));
let res = result_to_err_code!(result);
trace!("indy_build_set_txn_fees_req: <<< res: {:?}", res);
res
}
/// Builds Indy get request for getting fees for transactions in the ledger
///
/// # Params
/// command_handle: Command handle to map callback to caller context.
/// wallet_handle: wallet handle
/// submitter_did : DID of request sender
/// payment_method: payment method to use
///
/// # Return
/// get_txn_fees_json - Indy request for getting fees for transactions in the ledger
#[no_mangle]
pub extern fn indy_build_get_txn_fees_req(command_handle: i32,
wallet_handle: i32,
submitter_did: *const c_char,
payment_method: *const c_char,
cb: Option<extern fn(command_handle_: i32,
err: ErrorCode,
get_txn_fees_json: *const c_char)>) -> ErrorCode {
trace!("indy_build_get_txn_fees_req: >>> wallet_handle: {:?}, submitter_did: {:?}, payment_method: {:?}", wallet_handle, submitter_did, payment_method);
check_useful_c_str!(submitter_did, ErrorCode::CommonInvalidParam3);
check_useful_c_str!(payment_method, ErrorCode::CommonInvalidParam4);
check_useful_c_callback!(cb, ErrorCode::CommonInvalidParam5);
trace!("indy_build_get_txn_fees_req: entities >>> wallet_handle: {:?}, submitter_did: {:?}, payment_method: {:?}", wallet_handle, submitter_did, payment_method);
let result =
CommandExecutor::instance().send(
Command::Payments(
PaymentsCommand::BuildGetTxnFeesReq(
wallet_handle,
submitter_did,
payment_method,