01.
<?php
02.
defined(
'BASEPATH'
) OR
exit
(
'No direct script access allowed'
);
03.
class
TrueWalletAPI{
04.
private
$username
=
'????????'
;
05.
private
$password
=
'???????'
;
06.
private
$login_type
=
'email'
;
07.
private
$passhash
;
08.
14.
private
$device_os
=
"android"
;
15.
private
$device_id
=
"d520d0d12d0d48cb89394905168c6ed5"
;
16.
private
$device_type
=
"CPH1611"
;
17.
private
$device_version
=
"6.0.1"
;
18.
private
$app_name
=
"wallet"
;
19.
private
$app_version
=
"4.0.1"
;
20.
private
$deviceToken
=
"fUUbZJ9nwBk:APA91bHHgBBHhP9rqBEon_BtUNz3rLHQ-sYXnezA10PRSWQTwFpMvC9QiFzh-CqPsbWEd6x409ATC5RVsHAfk_-14cSqVdGzhn8iX2K_DiNHvpYfMMIzvFx_YWpYj5OaEzMyIPh3mgtx"
;
21.
private
$mobileTracking
=
"dJyFzn\/GIq7lrjv2RCsZbphpp0L\/W2+PsOTtOpg352mgWrt4XAEAAA=="
;
22.
private
$token
;
23.
public
$pf
;
24.
public
function
__construct(){
25.
$this
->passhash = sha1(
$this
->username.
$this
->password);
26.
$a
=
$this
->GetToken();
27.
$j
= json_decode(
$a
);
28.
$this
->token =
$j
->data->accessToken;
29.
$this
->pf =
$this
->Profile();
30.
}
31.
public
function
GetToken(){
32.
$url
=
$this
->api_signin.
'device_os='
.
$this
->device_os.
'&device_id='
.
$this
->device_id.
33.
'&device_type='
.
$this
->device_type.
'&device_version='
.
$this
->device_version.
34.
'&app_name='
.
$this
->app_name.
'&app_version='
.
$this
->app_version;
35.
$header
=
array
(
"Host: api-ewm.truemoney.com"
,
"Content-Type: application/json"
);
36.
$postfield
=
array
(
37.
"username"
=>
$this
->username,
38.
"password"
=>
$this
->passhash,
39.
"type"
=>
$this
->login_type,
40.
"deviceToken"
=>
$this
->deviceToken,
41.
"mobileTracking"
=>
$this
->mobileTracking,
42.
);
43.
$data_string
= json_encode(
$postfield
);
44.
return
$this
->wallet_curl(
$url
,
$data_string
,
$header
);
45.
}
46.
public
function
Profile(){
47.
$url
=
$this
->api_profile.
$this
->token.
'?&device_os=android&device_id='
.
$this
->device_id.
48.
'&device_type='
.
$this
->device_type.
'&device_version='
.
$this
->device_version.
49.
'&app_name='
.
$this
->app_name.
'&app_version='
.
$this
->app_version;
50.
$header
=
array
(
"Host: api-ewm.truemoney.com"
);
51.
$a
=
$this
->wallet_curl(
$url
,false,
$header
);
52.
return
json_decode(
$a
);
53.
54.
}
55.
public
function
Topup(
$cashcard
){
56.
$url
=
$this
->api_topup.time().
"/"
.
$this
->token.
"/cashcard/"
.
$cashcard
;
57.
$header
=
array
(
"Host: api-ewm.truemoney.com"
);
58.
$a
=
$this
->wallet_curl(
$url
,true,
$header
);
59.
return
json_decode(
$a
);
60.
}
61.
public
function
getTran(
$start
,
$end
){
62.
$url
=
$this
->api_gettran.
$this
->token.
'/?startDate='
.
$start
.
'&endDate='
.
$end
.
'&limit=20&page=1&type=&action='
;
63.
$header
=
array
(
"Host: api-ewm.truemoney.com"
);
64.
$a
=
$this
->wallet_curl(
$url
,false,
$header
);
65.
return
json_decode(
$a
);
66.
}
67.
public
function
CheckTran(
$id
){
68.
$url
=
$this
->api_checktran.
$id
.
'/detail/'
.
$this
->token.
'?&device_os=android&device_id='
.
$this
->device_id.
69.
'&device_type='
.
$this
->device_type.
'&device_version='
.
$this
->device_version.
70.
'&app_name='
.
$this
->app_name.
'&app_version='
.
$this
->app_version;
71.
$header
=
array
(
"Host: api-ewm.truemoney.com"
);
72.
$a
=
$this
->wallet_curl(
$url
,false,
$header
);
73.
return
json_decode(
$a
);
74.
}
75.
private
function
wallet_curl(
$url
,
$data
,
$header
){
76.
$ch
= curl_init();
77.
curl_setopt(
$ch
,CURLOPT_URL,
$url
);
78.
curl_setopt(
$ch
,CURLOPT_HTTPHEADER,
$header
);
79.
curl_setopt(
$ch
,CURLOPT_SSL_VERIFYHOST,false);
80.
curl_setopt(
$ch
,CURLOPT_SSL_VERIFYPEER,false);
81.
if
(
$data
){
82.
curl_setopt(
$ch
,CURLOPT_CUSTOMREQUEST,
"POST"
);
83.
curl_setopt(
$ch
,CURLOPT_POSTFIELDS,
$data
);
84.
}
85.
curl_setopt(
$ch
,CURLOPT_RETURNTRANSFER, true);
86.
curl_setopt(
$ch
,CURLOPT_USERAGENT,
'okhttp/3.8.0'
);
87.
$result
= curl_exec(
$ch
);
88.
return
$result
;
89.
}
90.
}