-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathautosettlement_trait.php
440 lines (386 loc) · 14.5 KB
/
autosettlement_trait.php
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
<?php
namespace harmonypay;
use Exception;
trait autosettlement_trait
{
/**
@brief Return the autosettlements collection.
@since 2019-02-21 19:29:10
**/
public function autosettlements()
{
if ( isset( $this->__autosettlements ) )
return $this->__autosettlements;
$this->__autosettlements = autosettlements\Autosettlements::load();
return $this->__autosettlements;
}
/**
@brief Administer the autosettlement settings.
@since 2019-02-21 18:58:44
**/
public function autosettlement_admin()
{
$form = $this->form();
$form->id( 'autosettlements' );
$r = '';
$table = $this->table();
$table->css_class( 'autosettlements' );
$table->bulk_actions()
->form( $form )
// Bulk action for autosettlement settings
->add( __( 'Delete', 'harmonypay' ), 'delete' )
// Bulk action for autosettlement settings
->add( __( 'Disable', 'harmonypay' ), 'disable' )
// Bulk action for autosettlement settings
->add( __( 'Enable', 'harmonypay' ), 'enable' )
// Bulk action for autosettlement settings
->add( __( 'Test', 'harmonypay' ), 'test' )
;
// Assemble the autosettlements
$row = $table->head()->row();
$table->bulk_actions()->cb( $row );
// Table column name
$row->th( 'type' )->text( __( 'Type', 'harmonypay' ) );
// Table column name
$row->th( 'details' )->text( __( 'Details', 'harmonypay' ) );
$autosettlements = $this->autosettlements();
foreach( $autosettlements as $index => $autosettlement )
{
$row = $table->body()->row();
$row->data( 'index', $index );
$table->bulk_actions()->cb( $row, $index );
// Address
$url = add_query_arg( [
'tab' => 'autosettlement_edit',
'autosettlement_id' => $index,
] );
$url = sprintf( '<a href="%s" title="%s">%s</a>',
$url,
__( 'Edit this autosettlement', 'harmonypay' ),
$autosettlements->get_types_as_options()[ $autosettlement->get_type() ]
);
$row->td( 'type' )->text( $url );
// Details
$details = $autosettlement->get_details();
$details = implode( "\n", $details );
$row->td( 'details' )->text( wpautop( $details ) );
}
$fs = $form->fieldset( 'fs_add_new' );
// Fieldset legend
$fs->legend->label( __( 'Add new autosettlement', 'harmonypay' ) );
$autosettlement_type = $fs->select( 'autosettlement_type' )
->css_class( 'autosettlement_type' )
->description( __( 'Which type of autosettlement do you wish to add?', 'harmonypay' ) )
// Input label
->label( __( 'Type', 'harmonypay' ) )
->opts( $autosettlements->get_types_as_options() );
$save = $form->primary_button( 'save' )
->value( __( 'Save settings', 'harmonypay' ) );
if ( $form->is_posting() )
{
$form->post();
$form->use_post_values();
$reshow = false;
if ( $table->bulk_actions()->pressed() )
{
$ids = $table->bulk_actions()->get_rows();
switch ( $table->bulk_actions()->get_action() )
{
case 'delete':
foreach( $ids as $id )
$autosettlements->forget( $id );
$autosettlements->save();
$r .= $this->info_message_box()->_( __( 'The selected wallets have been deleted.', 'harmonypay' ) );
break;
case 'disable':
foreach( $ids as $id )
{
$autosettlement = $autosettlements->get( $id );
$autosettlement->set_enabled( false );
}
$autosettlements->save();
$r .= $this->info_message_box()->_( __( 'The selected wallets have been disabled.', 'harmonypay' ) );
break;
case 'enable':
foreach( $ids as $id )
{
$autosettlement = $autosettlements->get( $id );
$autosettlement->set_enabled( true );
}
$autosettlements->save();
$r .= $this->info_message_box()->_( __( 'The selected wallets have been enabled.', 'harmonypay' ) );
break;
case 'test':
foreach( $ids as $id )
{
$autosettlement = $autosettlements->get( $id );
try
{
$message = sprintf( 'Success for %s: %s', $autosettlement->get_type(), $autosettlement->test() );
$r .= $this->info_message_box()->_( $message );
}
catch( Exception $e )
{
$message = sprintf( 'Fail for %s: %s', $autosettlement->get_type(), $e->getMessage() );
$r .= $this->error_message_box()->_( $message );
}
}
break;
}
$reshow = true;
}
if ( $save->pressed() )
{
try
{
$autosettlement = $autosettlements->new_autosettlement();
$autosettlement->set_type( $autosettlement_type->get_filtered_post_value() );
$index = $autosettlements->add( $autosettlement );
$autosettlements->save();
$r .= $this->info_message_box()->_( __( 'Settings saved!', 'harmonypay' ) );
$reshow = true;
}
catch ( Exception $e )
{
$r .= $this->error_message_box()->_( $e->getMessage() );
}
}
if ( $reshow )
{
echo $r;
$_POST = [];
$function = __FUNCTION__;
echo $this->$function();
return;
}
}
$r .= wpautop( __( 'The table below shows the autosettlements that have been set up. To edit an autosettlement, click the type.', 'harmonypay' ) );
$autosettlement_text = sprintf(
// perhaps <a>we can ...you</a>
__( "Read the full %sfiat autosettlement documentation%s to learn more about this feature.", 'harmonypay' ),
'<a href="https://harmonypay.one/doc/autosettlements/" target="_blank">',
'</a>'
);
$r .= wpautop( $autosettlement_text );
$r .= $this->h2( __( 'Autosettlements', 'harmonypay' ) );
$r .= $form->open_tag();
$r .= $table;
$r .= $form->close_tag();
$r .= $form->open_tag();
$r .= $form->display_form_table();
$r .= $form->close_tag();
echo $r;
}
/**
@brief Edit this autosettlement setting.
@since 2019-02-21 22:47:10
**/
public function autosettlement_edit( $id )
{
$autosettlements = $this->autosettlements();
if ( ! $autosettlements->has( $id ) )
{
echo 'Invalid ID!';
return;
}
$autosettlement = $autosettlements->get( $id );
$form = $this->form();
$form->id( 'autosettlement_edit' );
$r = '';
switch( $autosettlement->get_type() )
{
case 'cryptocom':
$m_binance = $form->markup( 'm_cryptocom' )
->value( 'Your Crypto.com balance will be checked every few minutes for an hour after a payment is detected for selected coins. If you have more than the minimum trade size, it will be market sold into the autosettlement currency of your choice.' );
$form->markup( 'm_cryptocom_api' )
->value( 'See how to <a href="https://harmonypay.one/doc/cryptocom/">get Crypto.com API keys</a> and set permissions.' );
$cryptocom_api_key = $form->text( 'cryptocom_api_key' )
->description( __( 'The API key of your Crypto.com account.', 'harmonypay' ) )
// Input label
->label( __( 'Crypto.com API key', 'harmonypay' ) )
->size( 32 )
->maxlength( 64 )
->trim()
->value( $autosettlement->get( 'cryptocom_api_key' ) );
$cryptocom_api_secret = $form->text( 'cryptocom_api_secret' )
->description( __( 'The secret text associated to this API key.', 'harmonypay' ) )
// Input label
->label( __( 'Crypto.com secret', 'harmonypay' ) )
->size( 32 )
->maxlength( 64 )
->trim()
->value( $autosettlement->get( 'cryptocom_api_secret' ) );
$cryptocom_settlement_currency = $form->select( 'cryptocom_settlement_currency' )
->description( __( 'The currency you wish to settle to.', 'harmonypay' ) )
->label( __( 'Autosettlement currency', 'harmonypay' ) )
//->opt( 'USDC', 'USDC - USD Coin' )
->opt( 'USDT', 'USDT - Tether' )
//->opt( 'TUSD', 'TUSD - TrueUSD' )
->value( $autosettlement->get( 'cryptocom_settlement_currency', 'USDT' ) );
break;
case 'binance':
$m_binance = $form->markup( 'm_binance' )
->value( 'Your Binance balance will be checked every few minutes for an hour after a payment is detected for selected coins. If you have more than the minimum trade size, it will be market sold into the autosettlement currency of your choice.' );
$form->markup( 'm_binance_api' )
->value( 'See how to <a href="https://harmonypay.com/doc/binance/">get Binance API keys</a> and set permissions.' );
$binance_api_key = $form->text( 'binance_api_key' )
->description( __( 'The API key of your Binance account.', 'harmonypay' ) )
// Input label
->label( __( 'Binance API key', 'harmonypay' ) )
->size( 32 )
->maxlength( 64 )
->trim()
->value( $autosettlement->get( 'binance_api_key' ) );
$binance_api_secret = $form->text( 'binance_api_secret' )
->description( __( 'The secret text associated to this API key.', 'harmonypay' ) )
// Input label
->label( __( 'Binance secret', 'harmonypay' ) )
->size( 32 )
->maxlength( 64 )
->trim()
->value( $autosettlement->get( 'binance_api_secret' ) );
$binance_settlement_currency = $form->select( 'binance_settlement_currency' )
->description( __( 'The currency you wish to settle to.', 'harmonypay' ) )
->label( __( 'Autosettlement currency', 'harmonypay' ) )
//->opt( 'USDC', 'USDC - USD Coin' )
->opt( 'USDT', 'USDT - Tether' )
->opt( 'BUSD', 'BUSD - Binance USD' )
->value( $autosettlement->get( 'binance_settlement_currency', 'USDT' ) );
break;
case 'bittrex':
$m_bittrex = $form->markup( 'm_bittrex' )
->value( 'Your Bittrex balance will be checked every few minutes for an hour after a payment is detected for selected coins. If you have more than the minimum trade size, it will be market sold into the autosettlement currency of your choice.' );
$form->markup( 'm_bittrex_api' )
->value( 'See how to <a href="https://harmonypay.com/doc/autosettlements/bittrex/">get Bittrex API keys</a> and set permissions.' );
$bittrex_api_key = $form->text( 'bittrex_api_key' )
->description( __( 'The limited API key of your Bittrex account.', 'harmonypay' ) )
// Input label
->label( __( 'Bittrex API key', 'harmonypay' ) )
->size( 32 )
->maxlength( 32 )
->trim()
->value( $autosettlement->get( 'bittrex_api_key' ) );
$bittrex_api_secret = $form->text( 'bittrex_api_secret' )
->description( __( 'The secret text associated to this API key.', 'harmonypay' ) )
// Input label
->label( __( 'Bittrex secret', 'harmonypay' ) )
->size( 32 )
->trim()
->value( $autosettlement->get( 'bittrex_api_secret' ) );
$bittrex_settlement_currency = $form->select( 'bittrex_settlement_currency' )
->description( __( 'The currency you wish to settle to.', 'harmonypay' ) )
->label( __( 'Autosettlement currency', 'harmonypay' ) )
->opt( 'USD', 'USD - US Dollars' )
->opt( 'USDT', 'USDT - USD Tether' )
->value( $autosettlement->get( 'bittrex_settlement_currency', 'USD' ) );
break;
}
$autosettlement_label = $form->text( 'wallet_label' )
->description( __( 'Describe this autosettlement to yourself.', 'harmonypay' ) )
// Input label
->label( __( 'Label', 'harmonypay' ) )
->size( 32 )
->stripslashes()
->trim()
->value( $autosettlement->get_label() );
// Which currencies to apply this autosettlement on.
$fs = $form->fieldset( 'fs_currencies' );
// Fieldset legend
$fs->legend->label( __( 'Currencies', 'harmonypay' ) );
$currencies_input = $fs->select( 'currencies' )
->description( __( 'Select the currencies to be autosettled. If no currencies are selected, these settings will be applied to all of them. Hold the ctrl or shift key to select multiple currencies.', 'harmonypay' ) )
// Input label
->label( __( 'Currencies to autosettle', 'harmonypay' ) )
->multiple()
->size( 20 )
->value( $autosettlement->get_currencies() );
$this->currencies()->add_to_select_options( $currencies_input );
if ( $this->is_network && is_super_admin() )
$autosettlement->add_network_fields( $form );
$save = $form->primary_button( 'save' )
->value( __( 'Save settings', 'harmonypay' ) );
if ( $form->is_posting() )
{
$form->post();
$form->use_post_values();
$reshow = false;
if ( $save->pressed() )
{
try
{
switch( $autosettlement->get_type() )
{
case 'cryptocom':
$value = $cryptocom_api_key->get_filtered_post_value();
$autosettlement->set( 'cryptocom_api_key', $value );
$value = $cryptocom_api_secret->get_filtered_post_value();
$autosettlement->set( 'cryptocom_api_secret', $value );
$value = $cryptocom_settlement_currency->get_filtered_post_value();
$autosettlement->set( 'cryptocom_settlement_currency', $value );
break;
case 'binance':
$value = $binance_api_key->get_filtered_post_value();
$autosettlement->set( 'binance_api_key', $value );
$value = $binance_api_secret->get_filtered_post_value();
$autosettlement->set( 'binance_api_secret', $value );
$value = $binance_settlement_currency->get_filtered_post_value();
$autosettlement->set( 'binance_settlement_currency', $value );
break;
case 'bittrex':
$value = $bittrex_api_key->get_filtered_post_value();
$autosettlement->set( 'bittrex_api_key', $value );
$value = $bittrex_api_secret->get_filtered_post_value();
$autosettlement->set( 'bittrex_api_secret', $value );
$value = $bittrex_settlement_currency->get_filtered_post_value();
$autosettlement->set( 'bittrex_settlement_currency', $value );
break;
}
$autosettlement->set_label( $autosettlement_label->get_filtered_post_value() );
$autosettlement->set_currencies( $currencies_input->get_post_value() );
$autosettlement->maybe_parse_network_form_post( $form );
$autosettlements->save();
$r .= $this->info_message_box()->_( __( 'Settings saved!', 'harmonypay' ) );
$reshow = true;
}
catch ( Exception $e )
{
$r .= $this->error_message_box()->_( $e->getMessage() );
}
}
if ( $reshow )
{
echo $r;
$_POST = [];
$function = __FUNCTION__;
echo $this->$function( $id );
return;
}
}
$r .= $form->open_tag();
$r .= $form->display_form_table();
$r .= $form->close_tag();
echo $r;
}
/**
@brief Return an array of the keys to copy to the payment.
@since 2019-04-11 20:57:56
**/
public static function autosettlement_keys_to_payment( $type )
{
switch( $type )
{
case 'cryptocom':
$r = [ 'cryptocom_api_key', 'cryptocom_api_secret', 'cryptocom_settlement_currency' ];
break;
case 'binance':
$r = [ 'binance_api_key', 'binance_api_secret', 'binance_settlement_currency' ];
break;
case 'bittrex':
$r = [ 'bittrex_api_key', 'bittrex_api_secret', 'bittrex_settlement_currency' ];
break;
default:
$r = [];
}
return $r;
}
}