-
Notifications
You must be signed in to change notification settings - Fork 2
/
ird-utils.php
659 lines (561 loc) · 24.8 KB
/
ird-utils.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
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
<?php
/*
Iridium for WooCommerce
https://github.com/steevebrush/iridium-woocommerce
Adapted by stevebrush from krb plugin
*/
//===========================================================================
function IRD__generate_new_Iridium_payment_id ($IRD_settings=false, $order_info)
{
global $wpdb;
$IRD_payments_table_name = $wpdb->prefix . 'IRD_IRD_payments';
if (!$IRD_settings)
$IRD_settings = IRD__get_settings ();
$walletd_api=$IRD_settings['walletd_api'];
$wallet_api = New ForkNoteWalletd($walletd_api);
$new_IRD_payment_id = $wallet_api->makePaymentId();
try {
$status = $wallet_api->getStatus();
$next_key_index = $status["blockCount"];
} catch(Exception $e) {
$next_key_index = 0;
}
$IRD_address = $IRD_settings['address'];
$address_request_array = array();
// Retrieve current balance at address considering required confirmations number and api_timemout value.
$address_request_array['IRD_address'] = $IRD_address;
$address_request_array['IRD_payment_id'] = $new_IRD_payment_id;
$address_request_array['block_index'] = 100000; //@TODO variable for starting block to check for payment id
$address_request_array['required_confirmations'] = 0;
$address_request_array['api_timeout'] = $IRD_settings['blockchain_api_timeout_secs'];
$ret_info_array = IRD__getreceivedbyaddress_info ($address_request_array, $IRD_settings);
// $total_new_keys_generated ++;
if ($ret_info_array['balance'] === false)
$status = 'unknown';
else if ($ret_info_array['balance'] == 0)
$status = 'assigned'; // Newly generated address with freshly checked zero balance is unused and will be assigned.
else
$status = 'used'; // Generated address that was already used to receive money.
$funds_received = ($ret_info_array['balance'] === false)?0:$ret_info_array['balance'];
$received_funds_checked_at_time = ($ret_info_array['balance'] === false)?0:time();
$assigned_at_time = ($ret_info_array['balance'] === false)?0:time();
// Prepare `address_meta` field for this clean address and payment_id.
$address_meta['orders'] = array();
array_unshift ($address_meta['orders'], $order_info); // Prepend new order to array of orders
$address_meta_serialized = IRD_serialize_address_meta ($address_meta);
//$remote_addr = $order_info['requested_by_ip'];
// Insert newly generated address into DB
$query = "INSERT INTO `$IRD_payments_table_name` (`IRD_address`, `IRD_payment_id`, `origin_id`, `index_in_wallet`, `status`, `total_received_funds`, `received_funds_checked_at`, `assigned_at`, `address_meta`) VALUES ('$IRD_address', '$new_IRD_payment_id', 'none', '$next_key_index', '$status', '$funds_received', '$received_funds_checked_at_time', '$assigned_at_time', '$address_meta_serialized');";
$ret_code = $wpdb->query($query);
return $new_IRD_payment_id;
}
//===========================================================================
//===========================================================================
// Function makes sure that returned value is valid array
function IRD_unserialize_address_meta ($flat_address_meta)
{
$unserialized = @unserialize($flat_address_meta);
if (is_array($unserialized))
return $unserialized;
return array();
}
//===========================================================================
//===========================================================================
// Function makes sure that value is ready to be stored in DB
function IRD_serialize_address_meta ($address_meta_arr)
{
return IRD__safe_string_escape(serialize($address_meta_arr));
}
//===========================================================================
//===========================================================================
/*
$address_request_array = array (
'IRD_payment_id' => '1xxxxxxx',
'required_confirmations' => '6',
'api_timeout' => 10,
);
$ret_info_array = array (
'result' => 'success',
'message' => "",
'host_reply_raw' => "",
'balance' => false == error, else - balance
);
*/
function IRD__getreceivedbyaddress_info ($address_request_array, $IRD_settings=false)
{
if (!$IRD_settings)
$IRD_settings = IRD__get_settings ();
$IRD_address = $address_request_array['IRD_address'];
$IRD_payment_id = $address_request_array['IRD_payment_id'];
$first_block_index = $address_request_array['block_index'];
$required_confirmations = $address_request_array['required_confirmations'];
$api_timeout = $address_request_array['api_timeout'];
$funds_received = false;
$walletd_api=$IRD_settings['walletd_api'];
$fnw = New ForkNoteWalletd($walletd_api);
$status = $fnw->getStatus();
$t = $fnw->getTransactions( $status["blockCount"] - 5000, false, 5000, $IRD_payment_id, [$IRD_address]);
print_r( $t );
$total = 0;
foreach($t['items'] as $transaction) {
//echo "Block: ".$transaction['blockHash'] ."<br>\n";
$tnum = 0;
foreach($transaction['transactions'] as $bt) {
//echo "#: $tnum amt". $bt['amount'] . " <br>\n";
$tnum++;
$funds_received = $bt['amount'];
$blockIndex = $bt['blockIndex'];
if (is_numeric($funds_received)) {
$funds_received = sprintf("%.12f", $funds_received / 100000000.0);
$confirmations = ($status["blockCount"] - $blockIndex);
//echo "Recieved: $funds_received in block: $blockIndex ($confirmations confirmations) " .$transaction['blockHash'] ."<br>\n";
if ($confirmations >= $required_confirmations)
$total += $funds_received;
}
}
}
$funds_received = $total;
if (is_numeric($funds_received))
{
$ret_info_array = array (
'result' => 'success',
'message' => "",
'host_reply_raw' => "",
'balance' => $funds_received,
);
}
else
{
$ret_info_array = array (
'result' => 'error',
'message' => "Failed to get balance.\n",
'host_reply_raw' => "",
'balance' => false,
);
}
return $ret_info_array;
}
//===========================================================================
//===========================================================================
// Returns:
// success: number of currency units (dollars, etc...) would take to convert to 1 Iridium, ex: "15.32476".
// failure: false
//
// $currency_code, one of: USD, AUD, CAD, CHF, CNY, DKK, EUR, GBP, HKD, JPY, NZD, PLN, RUB, SEK, SGD, THB
// $rate_retrieval_method
// 'getfirst' -- pick first successfully retireved rate
// 'getall' -- retrieve from all possible exchange rate services and then pick the best rate.
//
// $get_ticker_string - true - HTML formatted text message instead of pure number returned.
function IRD__get_exchange_rate_per_Iridium ($currency_code, $rate_retrieval_method = 'getfirst', $get_ticker_string=false)
{
if ($currency_code == 'IRD')
return "1.00"; // 1:1
$IRD_settings = IRD__get_settings ();
// $exchange_rate_type = $IRD_settings['exchange_rate_type'];
$exchange_multiplier = $IRD_settings['exchange_multiplier'];
if (!$exchange_multiplier)
$exchange_multiplier = 1;
$current_time = time();
$cache_hit = false;
// $requested_cache_method_type = $rate_retrieval_method . '|' . $exchange_rate_type;
$requested_cache_method_type = $rate_retrieval_method;
$ticker_string = "<span style='color:#222;'>Current BTC price in {$currency_code} : {{{BTC_RATE}}}<br/>Current IRD price in BTC : {{{IRD_RATE}}}<br/>According to your settings (including multiplier), current calculated rate for 1 Iridium (in {$currency_code})={{{EXCHANGE_RATE}}}</span>";
$ticker_string_error = "<span style='color:red;background-color:#FFA'>WARNING: Cannot determine exchange rates (for '$currency_code')! {{{ERROR_MESSAGE}}} Make sure your PHP settings are configured properly and your server can (is allowed to) connect to external WEB services via PHP.</wspan>";
$this_currency_info = @$IRD_settings['exchange_rates'][$currency_code][$requested_cache_method_type];
if ($this_currency_info && isset($this_currency_info['time-last-checked']))
{
$delta = $current_time - $this_currency_info['time-last-checked'];
if ($delta < (@$IRD_settings['cache_exchange_rates_for_minutes']) * 60)
{
// Exchange rates cache hit
//// Use cached value as it is still fresh.
$final_rate = $this_currency_info['exchange_rate'] / $exchange_multiplier;
if ($get_ticker_string){
$ticker_string = str_replace('{{{BTC_RATE}}}', @$IRD_settings['exchange_rates'][$currency_code][$requested_cache_method_type]['btc_rate'], $ticker_string);
$ticker_string = str_replace('{{{IRD_RATE}}}', @$IRD_settings['exchange_rates'][$currency_code][$requested_cache_method_type]['ird_rate'], $ticker_string);
return str_replace('{{{EXCHANGE_RATE}}}', $final_rate, $ticker_string);
} else {
return $final_rate;
}
}
}
$btc_exchange_rate_in_currency = IRD__get_exchange_rate_from_cryptocompare($currency_code, $IRD_settings);
$ird_rate_in_btc = IRD__get_exchange_rate_from_tradeogre ($IRD_settings);
$exchange_rate = $btc_exchange_rate_in_currency * $ird_rate_in_btc;
// Save new currency exchange rate info in cache
IRD__update_exchange_rate_cache ($currency_code, $requested_cache_method_type, $exchange_rate,$btc_exchange_rate_in_currency,$ird_rate_in_btc);
if ($get_ticker_string)
{
if ($exchange_rate)
{
$ticker_string =str_replace('{{{BTC_RATE}}}', $btc_exchange_rate_in_currency, $ticker_string);
$ticker_string =str_replace('{{{IRD_RATE}}}', $ird_rate_in_btc, $ticker_string);
return str_replace('{{{EXCHANGE_RATE}}}', $exchange_rate / $exchange_multiplier, $ticker_string);
}
else
{
$extra_error_message = "";
$fns = array ('file_get_contents', 'curl_init', 'curl_setopt', 'curl_setopt_array', 'curl_exec');
$fns = array_filter ($fns, 'IRD__function_not_exists');
if (count($fns))
$extra_error_message = "The following PHP functions are disabled on your server: " . implode (", ", $fns) . ".";
return str_replace('{{{ERROR_MESSAGE}}}', $extra_error_message, $ticker_string_error);
}
}
else
return $exchange_rate / $exchange_multiplier;
}
//===========================================================================
//===========================================================================
function IRD__function_not_exists ($fname) { return !function_exists($fname); }
//===========================================================================
//===========================================================================
function IRD__update_exchange_rate_cache ($currency_code, $requested_cache_method_type, $exchange_rate, $btc_rate,$ird_rate)
{
// Save new currency exchange rate info in cache
$IRD_settings = IRD__get_settings (); // Re-get settings in case other piece updated something while we were pulling exchange rate API's...
$IRD_settings['exchange_rates'][$currency_code][$requested_cache_method_type]['time-last-checked'] = time();
$IRD_settings['exchange_rates'][$currency_code][$requested_cache_method_type]['exchange_rate'] = $exchange_rate;
$IRD_settings['exchange_rates'][$currency_code][$requested_cache_method_type]['btc_rate'] = $btc_rate;
$IRD_settings['exchange_rates'][$currency_code][$requested_cache_method_type]['ird_rate'] = $ird_rate;
IRD__update_settings ($IRD_settings);
}
//===========================================================================
//===========================================================================
// $rate_type: 'vwap' | 'realtime' | 'bestrate'
function IRD__get_exchange_rate_from_cryptocompare ($currency_code, $IRD_settings)
{
$source_url = "https://min-api.cryptocompare.com/data/price?fsym=BTC&tsyms=" . $currency_code;
$result = @IRD__file_get_contents ($source_url, false, $IRD_settings['exchange_rate_api_timeout_secs']);
$rate_obj = @json_decode(trim($result), true);
return @$rate_obj[$currency_code];
}
//===========================================================================
//===========================================================================
// $rate_type: 'vwap' | 'realtime' | 'bestrate'
function IRD__get_exchange_rate_from_tradeogre ($IRD_settings)
{
$source_url = "https://tradeogre.com/api/v1/ticker/BTC-IRD";
$result = @IRD__file_get_contents ($source_url, false, $IRD_settings['exchange_rate_api_timeout_secs']);
$rate_obj = @json_decode(trim($result), true);
return @$rate_obj['price'];
}
//===========================================================================
//===========================================================================
/*
Get web page contents with the help of PHP cURL library
Success => content
Error => if ($return_content_on_error == true) $content; else FALSE;
*/
function IRD__file_get_contents ($url, $return_content_on_error=false, $timeout=60, $user_agent=FALSE, $is_post=false, $post_data="")
{
if (!function_exists('curl_init'))
{
if (!$is_post)
{
$ret_val = @file_get_contents ($url);
return $ret_val;
}
else
{
return false;
}
}
$p = substr(md5(microtime()), 24) . 'bw'; // curl post padding
$ch = curl_init ();
if ($is_post)
{
$new_post_data = $post_data;
if (is_array($post_data))
{
foreach ($post_data as $k => $v)
{
$safetied = $v;
if (is_object($safetied))
$safetied = IRD__object_to_array($safetied);
if (is_array($safetied))
{
$safetied = serialize($safetied);
$safetied = $p . str_replace('=', '_', IRD__base64_encode($safetied));
$new_post_data[$k] = $safetied;
}
}
}
}
{
// To accomodate older PHP 5.0.x systems
curl_setopt ($ch, CURLOPT_URL , $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER , true); // return web page
curl_setopt ($ch, CURLOPT_HEADER , false); // don't return headers
curl_setopt ($ch, CURLOPT_ENCODING , ""); // handle compressed
curl_setopt ($ch, CURLOPT_USERAGENT , $user_agent?$user_agent:urlencode("Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/534.12 (KHTML, like Gecko) Chrome/9.0.576.0 Safari/534.12")); // who am i
curl_setopt ($ch, CURLOPT_AUTOREFERER , true); // set referer on redirect
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT , $timeout); // timeout on connect
curl_setopt ($ch, CURLOPT_TIMEOUT , $timeout); // timeout on response in seconds.
curl_setopt ($ch, CURLOPT_FOLLOWLOCATION , true); // follow redirects
curl_setopt ($ch, CURLOPT_MAXREDIRS , 10); // stop after 10 redirects
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER , false); // Disable SSL verifications
if ($is_post) { curl_setopt ($ch, CURLOPT_POST, true); }
if ($is_post) { curl_setopt ($ch, CURLOPT_POSTFIELDS, $new_post_data); }
}
$content = curl_exec ($ch);
$err = curl_errno ($ch);
$header = curl_getinfo($ch);
// $errmsg = curl_error ($ch);
curl_close ($ch);
if (!$err && $header['http_code']==200)
return trim($content);
else
{
if ($return_content_on_error)
return trim($content);
else
return FALSE;
}
}
//===========================================================================
//===========================================================================
function IRD__object_to_array ($object)
{
if (!is_object($object) && !is_array($object))
return $object;
return array_map('IRD__object_to_array', (array) $object);
}
//===========================================================================
//===========================================================================
// Credits: http://www.php.net/manual/en/function.mysql-real-escape-string.php#100854
function IRD__safe_string_escape ($str="")
{
$len=strlen($str);
$escapeCount=0;
$targetString='';
for ($offset=0; $offset<$len; $offset++)
{
switch($c=$str{$offset})
{
case "'":
// Escapes this quote only if its not preceded by an unescaped backslash
if($escapeCount % 2 == 0) $targetString.="\\";
$escapeCount=0;
$targetString.=$c;
break;
case '"':
// Escapes this quote only if its not preceded by an unescaped backslash
if($escapeCount % 2 == 0) $targetString.="\\";
$escapeCount=0;
$targetString.=$c;
break;
case '\\':
$escapeCount++;
$targetString.=$c;
break;
default:
$escapeCount=0;
$targetString.=$c;
}
}
return $targetString;
}
//===========================================================================
//===========================================================================
// Syntax:
// IRD__log_event (__FILE__, __LINE__, "Hi!");
// IRD__log_event (__FILE__, __LINE__, "Hi!", "/..");
// IRD__log_event (__FILE__, __LINE__, "Hi!", "", "another_log.php");
function IRD__log_event ($filename, $linenum, $message, $prepend_path="", $log_file_name='__log.php')
{
$log_filename = dirname(__FILE__) . $prepend_path . '/' . $log_file_name;
$logfile_header = "<?php exit(':-)'); ?>\n" . '/* =============== IridiumWC LOG file =============== */' . "\r\n";
$logfile_tail = "\r\nEND";
// Delete too long logfiles.
//if (@file_exists ($log_filename) && filesize($log_filename)>1000000)
// unlink ($log_filename);
$filename = basename ($filename);
if (@file_exists ($log_filename))
{
// 'r+' non destructive R/W mode.
$fhandle = @fopen ($log_filename, 'r+');
if ($fhandle)
@fseek ($fhandle, -strlen($logfile_tail), SEEK_END);
}
else
{
$fhandle = @fopen ($log_filename, 'w');
if ($fhandle)
@fwrite ($fhandle, $logfile_header);
}
if ($fhandle)
{
@fwrite ($fhandle, "\r\n// " . $_SERVER['REMOTE_ADDR'] . '(' . $_SERVER['REMOTE_PORT'] . ')' . ' -> ' . date("Y-m-d, G:i:s T") . "|" . IRD_VERSION . "/" . IRD_EDITION . "|$filename($linenum)|: " . $message . $logfile_tail);
@fclose ($fhandle);
}
}
//===========================================================================
//===========================================================================
function IRD__SubIns ()
{
return;
}
//===========================================================================
//===========================================================================
function IRD__send_email ($email_to, $email_from, $subject, $plain_body)
{
$message = "
<html>
<head>
<title>$subject</title>
</head>
<body>" . $plain_body . "
</body>
</html>
";
// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";
// Additional headers
$headers .= "From: " . $email_from . "\r\n"; //"From: Birthday Reminder <birthday@example.com>" . "\r\n";
// Mail it
$ret_code = @mail ($email_to, $subject, $message, $headers);
return $ret_code;
}
//===========================================================================
//===========================================================================
function IRD__is_gateway_valid_for_use (&$ret_reason_message=NULL)
{
$valid = true;
$IRD_settings = IRD__get_settings ();
//----------------------------------
// Validate settings
if ($IRD_settings['service_provider']=='local_wallet') {
$IRD_settings = IRD__get_settings();
$address = $IRD_settings['address'];
$walletd_api = $IRD_settings['walletd_api'];
// check empty api address
if ( ! $walletd_api ) {
$ret_reason_message = __( "Iridium walletd Address:Port is not set in Iridium Service Provider.", 'woocommerce' );
return false;
}
//check if api is reachable and if address is valid
try{
$wallet_api = New ForkNoteWalletd($walletd_api);
$wallet_api->getBalance($address);
}
catch(Exception $e) {
echo $e;
//bad adress
if(strpos($e, 'Bad address')){
$ret_reason_message = __( "<br/>Iridium Address ($address) is invalid.<br/> Must be 97 characters long, consisting of digits and letters and start with ir.", 'woocommerce' );
return false;
}
$ret_reason_message = __("Can't connect to Iridium walletd at $walletd_api, verify your daemon adress and port", 'woocommerce');
return false;
}
//check if there is an address
if ( ! $address ) {
$ret_reason_message = __( "Please specify an Iridium Wallet Address.", 'woocommerce' );
return false;
}
//validate address
if ( strlen( $address ) <> 97 and substr( $address, 0, 2 ) <> 'ir' ) {
$ret_reason_message = __( "<br/>Iridium Address ($address) is invalid.<br/> Must be 97 characters long, consisting of digits and letters and start with ir.", 'woocommerce' );
return false;
}
}
//----------------------------------
// Validate connection to exchange rate services
$store_currency_code = 'USD';
if ($store_currency_code != 'IRD')
{
$currency_rate = IRD__get_exchange_rate_per_Iridium ($store_currency_code, 'getfirst', false);
if (!$currency_rate)
{
$valid = false;
// Assemble error message.
$error_msg = "ERROR: Cannot determine exchange rates (for '$store_currency_code')! {{{ERROR_MESSAGE}}} Make sure your PHP settings are configured properly and your server can (is allowed to) connect to external WEB services via PHP.";
$extra_error_message = "";
$fns = array ('file_get_contents', 'curl_init', 'curl_setopt', 'curl_setopt_array', 'curl_exec');
$fns = array_filter ($fns, 'IRD__function_not_exists');
$extra_error_message = "";
if (count($fns))
$extra_error_message = "The following PHP functions are disabled on your server: " . implode (", ", $fns) . ".";
$reason_message = str_replace('{{{ERROR_MESSAGE}}}', $extra_error_message, $error_msg);
if ($ret_reason_message !== NULL)
$ret_reason_message = $reason_message;
return false;
}
}
return true;
//----------------------------------
}
//===========================================================================
//===========================================================================
// Some hosting services disables base64_encode/decode.
// this is equivalent replacement to fix errors.
function IRD__base64_decode($input)
{
if (function_exists('base64_decode'))
return base64_decode($input);
$keyStr = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=";
$chr1 = $chr2 = $chr3 = "";
$enc1 = $enc2 = $enc3 = $enc4 = "";
$i = 0;
$output = "";
// remove all characters that are not A-Z, a-z, 0-9, +, /, or =
$input = preg_replace("[^A-Za-z0-9\+\/\=]", "", $input);
do {
$enc1 = strpos($keyStr, substr($input, $i++, 1));
$enc2 = strpos($keyStr, substr($input, $i++, 1));
$enc3 = strpos($keyStr, substr($input, $i++, 1));
$enc4 = strpos($keyStr, substr($input, $i++, 1));
$chr1 = ($enc1 << 2) | ($enc2 >> 4);
$chr2 = (($enc2 & 15) << 4) | ($enc3 >> 2);
$chr3 = (($enc3 & 3) << 6) | $enc4;
$output = $output . chr((int) $chr1);
if ($enc3 != 64) {
$output = $output . chr((int) $chr2);
}
if ($enc4 != 64) {
$output = $output . chr((int) $chr3);
}
$chr1 = $chr2 = $chr3 = "";
$enc1 = $enc2 = $enc3 = $enc4 = "";
} while ($i < strlen($input));
return urldecode($output);
}
function IRD__base64_encode($data)
{
if (function_exists('base64_encode'))
return base64_encode($data);
$b64 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
$o1 = $o2 = $o3 = $h1 = $h2 = $h3 = $h4 = $bits = $i = 0;
$ac = 0;
$enc = '';
$tmp_arr = array();
if (!$data) {
return data;
}
do {
// pack three octets into four hexets
$o1 = IRD_charCodeAt($data, $i++);
$o2 = IRD_charCodeAt($data, $i++);
$o3 = IRD_charCodeAt($data, $i++);
$bits = $o1 << 16 | $o2 << 8 | $o3;
$h1 = $bits >> 18 & 0x3f;
$h2 = $bits >> 12 & 0x3f;
$h3 = $bits >> 6 & 0x3f;
$h4 = $bits & 0x3f;
// use hexets to index into b64, and append result to encoded string
$tmp_arr[$ac++] = IRD_charAt($b64, $h1).IRD_charAt($b64, $h2).IRD_charAt($b64, $h3).IRD_charAt($b64, $h4);
} while ($i < strlen($data));
$enc = implode($tmp_arr, '');
$r = (strlen($data) % 3);
return ($r ? substr($enc, 0, ($r - 3)) : $enc) . substr('===', ($r || 3));
}
function IRD_charCodeAt($data, $char) {
return ord(substr($data, $char, 1));
}
function IRD_charAt($data, $char) {
return substr($data, $char, 1);
}
//===========================================================================