Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
T
token
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
JIRA
JIRA
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wallet
token
Commits
080c5e4f
Commit
080c5e4f
authored
Aug 05, 2019
by
shajiaiming
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/ucenter' into 'master'
Feature/ucenter See merge request
!78
parents
45c902dd
bcae8583
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
67 additions
and
6 deletions
+67
-6
TrusteeShipService.php
common/service/trusteeship/TrusteeShipService.php
+15
-3
BaseController.php
wallet/base/BaseController.php
+11
-0
UserController.php
wallet/controllers/UserController.php
+13
-1
WalletController.php
wallet/controllers/WalletController.php
+28
-2
No files found.
common/service/trusteeship/TrusteeShipService.php
View file @
080c5e4f
...
...
@@ -8,14 +8,19 @@ use common\helpers\Curl;
class
TrusteeShipService
{
private
$node_params
;
private
$header
;
public
function
__construct
(
$parameter
=
[])
public
function
__construct
(
$parameter
=
[]
,
$header
=
[]
)
{
$platform_id
=
Yii
::
$app
->
request
->
getPlatformId
();
if
(
!
empty
(
$header
))
{
$this
->
header
=
$header
;
}
if
(
empty
(
$parameter
))
{
$this
->
node_params
=
Yii
::
$app
->
params
[
'trusteeship'
][
'node_'
.
$platform_id
];
$this
->
node_params
=
Yii
::
$app
->
params
[
'trusteeship'
][
'node_'
.
$platform_id
]
[
'url'
]
;
}
else
{
$this
->
node_params
=
$parameter
;
$this
->
node_params
=
$parameter
[
'url'
]
;
}
}
...
...
@@ -28,9 +33,14 @@ class TrusteeShipService
public
function
send
(
$method
=
'GET'
,
$uri
,
$params
=
[])
{
$ch
=
new
Curl
();
if
(
!
empty
(
$this
->
header
))
{
$ch
->
setHeaders
(
$this
->
header
);
}
if
(
!
empty
(
$params
))
{
$ch
->
setGetParams
(
$params
);
}
$result
=
$ch
->
$method
(
$this
->
urlBuild
(
$uri
),
false
);
if
(
!
$result
)
{
return
[
'code'
=>
-
1
,
'msg'
=>
$ch
->
errorText
];
...
...
@@ -62,4 +72,6 @@ class TrusteeShipService
return
$this
->
send
(
"GET"
,
$uri
,
$params
);
}
}
wallet/base/BaseController.php
View file @
080c5e4f
...
...
@@ -322,4 +322,14 @@ class BaseController extends Controller
}
return
$params
;
}
protected
function
getSign
(
$params
,
$appkey
,
$appSecret
,
$time
)
{
ksort
(
$params
);
$string
=
http_build_query
(
$params
);
$result
=
md5
(
$appkey
.
$string
.
$appSecret
.
$time
);
$sign
=
strtoupper
(
$result
);
return
$sign
;
}
}
\ No newline at end of file
wallet/controllers/UserController.php
View file @
080c5e4f
...
...
@@ -155,7 +155,19 @@ class UserController extends BaseController
'end_time'
=>
$end_time
];
$service
=
new
TrusteeShipService
(
$node_params
);
$time
=
time
();
$appKey
=
isset
(
$node_params
[
'appKey'
])
?
$node_params
[
'appKey'
]
:
null
;
$appSecret
=
isset
(
$node_params
[
'appSecret'
])
?
$node_params
[
'appSecret'
]
:
null
;
$signature
=
self
::
getSign
(
$params
,
$appKey
,
$appSecret
,
$time
);
$headers
=
[
'FZM-Wallet-Signature'
=>
$signature
,
'FZM-Wallet-Timestamp'
=>
$time
,
'FZM-Wallet-AppKey'
=>
$appKey
,
'FZM-Wallet-AppIp'
=>
Yii
::
$app
->
request
->
userIP
];
$service
=
new
TrusteeShipService
(
$node_params
,
$headers
);
$result
=
$service
->
getUserList
(
$params
);
if
(
200
!==
$result
[
'code'
])
{
return
[
'code'
=>
$result
[
'code'
],
'data'
=>
[],
'msg'
=>
$result
[
'msg'
]];
...
...
wallet/controllers/WalletController.php
View file @
080c5e4f
...
...
@@ -53,7 +53,19 @@ class WalletController extends BaseController
'size'
=>
$size
,
'currency'
=>
$currency
];
$service
=
new
TrusteeShipService
(
$node_params
);
$time
=
time
();
$appKey
=
isset
(
$node_params
[
'appKey'
])
?
$node_params
[
'appKey'
]
:
null
;
$appSecret
=
isset
(
$node_params
[
'appSecret'
])
?
$node_params
[
'appSecret'
]
:
null
;
$signature
=
self
::
getSign
(
$params
,
$appKey
,
$appSecret
,
$time
);
$headers
=
[
'FZM-Wallet-Signature'
=>
$signature
,
'FZM-Wallet-Timestamp'
=>
$time
,
'FZM-Wallet-AppKey'
=>
$appKey
,
'FZM-Wallet-AppIp'
=>
Yii
::
$app
->
request
->
userIP
];
$service
=
new
TrusteeShipService
(
$node_params
,
$headers
);
$result
=
$service
->
getWalletBalance
(
$params
);
if
(
200
!==
$result
[
'code'
])
{
return
[
'code'
=>
$result
[
'code'
],
'data'
=>
[],
'msg'
=>
$result
[
'msg'
]];
...
...
@@ -69,11 +81,24 @@ class WalletController extends BaseController
$params
=
[
'uid'
=>
$uid
];
$service
=
new
TrusteeShipService
(
$node_params
);
$time
=
time
();
$appKey
=
isset
(
$node_params
[
'appKey'
])
?
$node_params
[
'appKey'
]
:
null
;
$appSecret
=
isset
(
$node_params
[
'appSecret'
])
?
$node_params
[
'appSecret'
]
:
null
;
$signature
=
self
::
getSign
(
$params
,
$appKey
,
$appSecret
,
$time
);
$headers
=
[
'FZM-Wallet-Signature'
=>
$signature
,
'FZM-Wallet-Timestamp'
=>
$time
,
'FZM-Wallet-AppKey'
=>
$appKey
,
'FZM-Wallet-AppIp'
=>
Yii
::
$app
->
request
->
userIP
];
$service
=
new
TrusteeShipService
(
$node_params
,
$headers
);
$result
=
$service
->
getUserAsset
(
$params
);
if
(
200
!==
$result
[
'code'
])
{
return
[
'code'
=>
$result
[
'code'
],
'data'
=>
[],
'msg'
=>
$result
[
'msg'
]];
}
return
[
'code'
=>
1
,
'data'
=>
$result
[
'msg'
],
'msg'
=>
'success'
];
}
}
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment