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
6db5b1b5
Commit
6db5b1b5
authored
Feb 21, 2020
by
shajiaiming
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/optimize' into 'master'
Feature/optimize See merge request
!291
parents
dd7137e7
83e5bf78
Show whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
199 additions
and
55 deletions
+199
-55
CoinController.php
api/controllers/CoinController.php
+5
-1
ExploreController.php
api/controllers/ExploreController.php
+2
-2
MarketController.php
api/controllers/MarketController.php
+65
-30
WalletChainController.php
api/controllers/WalletChainController.php
+1
-1
WalletCoinController.php
api/controllers/WalletCoinController.php
+32
-15
WalletController.php
api/controllers/WalletController.php
+30
-0
ExploreApp.php
common/models/psources/ExploreApp.php
+9
-5
WalletCoin.php
common/models/psources/WalletCoin.php
+6
-0
WalletCoinRelation.php
common/models/psources/WalletCoinRelation.php
+27
-0
WalletSupportedTokenCategory.php
common/models/psources/WalletSupportedTokenCategory.php
+21
-0
ExploreAppController.php
wallet/controllers/ExploreAppController.php
+1
-1
No files found.
api/controllers/CoinController.php
View file @
6db5b1b5
...
@@ -128,11 +128,15 @@ class CoinController extends BaseController
...
@@ -128,11 +128,15 @@ class CoinController extends BaseController
$limit
=
$request
->
post
(
'limit'
,
999
);
$limit
=
$request
->
post
(
'limit'
,
999
);
$platform_id
=
$request
->
post
(
'platform_id'
,
1
);
//默认币钱包
$platform_id
=
$request
->
post
(
'platform_id'
,
1
);
//默认币钱包
$recommend
=
$request
->
post
(
'recommend'
,
''
);
$recommend
=
$request
->
post
(
'recommend'
,
''
);
$chain
=
$request
->
post
(
'chain'
,
''
);
$condition
=
[
'platform_id'
=>
$platform_id
,
'type'
=>
1
];
$condition
=
[
'platform_id'
=>
$platform_id
,
'type'
=>
1
];
if
(
$recommend
)
{
if
(
$recommend
)
{
$condition
[
'recommend'
]
=
$recommend
;
$condition
[
'recommend'
]
=
$recommend
;
}
}
if
(
$chain
)
{
$condition
[
'chain'
]
=
$chain
;
}
$select
=
[
'id'
,
'sid'
,
'icon'
,
'name'
,
'introduce'
,
'optional_name'
,
'nickname'
,
'platform'
,
'chain'
,
'treaty'
];
$select
=
[
'id'
,
'sid'
,
'icon'
,
'name'
,
'introduce'
,
'optional_name'
,
'nickname'
,
'platform'
,
'chain'
,
'treaty'
];
$order_by
=
[
'sort'
=>
SORT_ASC
];
$order_by
=
[
'sort'
=>
SORT_ASC
];
$datas
=
CoinRecommend
::
getList
(
$page
,
$limit
,
$condition
,
$order_by
,
$select
);
$datas
=
CoinRecommend
::
getList
(
$page
,
$limit
,
$condition
,
$order_by
,
$select
);
...
...
api/controllers/ExploreController.php
View file @
6db5b1b5
...
@@ -31,7 +31,7 @@ class ExploreController extends BaseController
...
@@ -31,7 +31,7 @@ class ExploreController extends BaseController
foreach
(
$app_category_model
as
$key
=>
$val
)
{
foreach
(
$app_category_model
as
$key
=>
$val
)
{
unset
(
$val
->
apps
);
unset
(
$val
->
apps
);
$val
->
name
=
isset
(
$val
->
name
[
$this
->
lang
])
?
$val
->
name
[
$this
->
lang
]
:
''
;
$val
->
name
=
isset
(
$val
->
name
[
$this
->
lang
])
?
$val
->
name
[
$this
->
lang
]
:
''
;
$apps_model
=
ExploreApp
::
find
()
->
select
(
'id, name, icon, type, app_url, slogan'
)
$apps_model
=
ExploreApp
::
find
()
->
select
(
'id, name, icon, type, app_url, slogan
, email, phone, real_name
'
)
->
where
([
'app_category_id'
=>
(
int
)
$val
->
id
,
'status'
=>
ExploreApp
::
STATUS_ON
])
->
where
([
'app_category_id'
=>
(
int
)
$val
->
id
,
'status'
=>
ExploreApp
::
STATUS_ON
])
->
orderBy
(
'sort'
)
->
orderBy
(
'sort'
)
->
limit
(
$val
->
limit
)
->
limit
(
$val
->
limit
)
...
@@ -111,7 +111,7 @@ class ExploreController extends BaseController
...
@@ -111,7 +111,7 @@ class ExploreController extends BaseController
$id_arr
=
explode
(
','
,
$ids
);
$id_arr
=
explode
(
','
,
$ids
);
$order
=
"FIELD(`id`,
$ids
)"
;
$order
=
"FIELD(`id`,
$ids
)"
;
$apps_model
=
ExploreApp
::
find
()
->
select
(
'id, name, icon, type, app_url, slogan'
)
$apps_model
=
ExploreApp
::
find
()
->
select
(
'id, name, icon, type, app_url, slogan
, email, phone, real_name
'
)
->
where
([
'status'
=>
ExploreApp
::
STATUS_ON
])
->
where
([
'status'
=>
ExploreApp
::
STATUS_ON
])
->
andWhere
([
'in'
,
'id'
,
$id_arr
])
->
andWhere
([
'in'
,
'id'
,
$id_arr
])
->
orderBy
([
$order
=>
true
])
->
orderBy
([
$order
=>
true
])
...
...
api/controllers/MarketController.php
View file @
6db5b1b5
...
@@ -34,52 +34,86 @@ class MarketController extends BaseController
...
@@ -34,52 +34,86 @@ class MarketController extends BaseController
return
[
'code'
=>
$code
,
'msg'
=>
$msg
,
'tick'
=>
$ticker
??
[]];
return
[
'code'
=>
$code
,
'msg'
=>
$msg
,
'tick'
=>
$ticker
??
[]];
}
}
public
function
actionExchange
()
{
$exchanges
=
array_unique
(
Yii
::
$app
->
params
[
'exchange'
]);
return
[
'code'
=>
$this
->
code
,
'msg'
=>
$this
->
msg
,
'data'
=>
$exchanges
];
}
public
function
actionIndex
()
public
function
actionIndex
()
{
{
$currency
=
Yii
::
$app
->
request
->
post
(
'currency'
,
''
);
$currency
=
Yii
::
$app
->
request
->
post
(
'currency'
,
''
);
$base_currency
=
Yii
::
$app
->
request
->
post
(
'base_currency'
,
''
);
$base_currency
=
Yii
::
$app
->
request
->
post
(
'base_currency'
,
''
);
$exchange
=
Yii
::
$app
->
request
->
post
(
"exchange"
,
'Zhaobi'
);
$exchange
=
Yii
::
$app
->
request
->
post
(
"exchange"
,
'Zhaobi'
);
$base_exchange
=
Yii
::
$app
->
request
->
post
(
"base_exchange"
,
'Zhaobi'
);
if
(
false
==
$currency
||
false
==
$base_currency
)
{
if
(
false
==
$currency
||
false
==
$base_currency
)
{
$msg
=
'invalid symbol'
;
$
this
->
msg
=
'invalid symbol'
;
$code
=
-
1
;
$
this
->
code
=
-
1
;
goto
doEnd
;
goto
doEnd
;
}
}
$exchange
=
ExchangeFactory
::
createExchange
(
$exchange
);
if
(
'USDT'
==
strtoupper
(
$base_currency
)
&&
'USDT'
==
strtoupper
(
$currency
))
{
$quotation
=
$exchange
->
getTicker
(
$currency
);
$this
->
msg
=
'invalid symbol'
;
$quotation
=
[
$this
->
code
=
-
1
;
'low'
=>
(
float
)
sprintf
(
"%0.4f"
,
$quotation
[
'low'
]
/
100
),
goto
doEnd
;
'high'
=>
(
float
)
sprintf
(
"%0.4f"
,
$quotation
[
'high'
]
/
100
),
}
'last'
=>
(
float
)
sprintf
(
"%0.4f"
,
$quotation
[
'last'
]
/
100
),
'rmb'
=>
(
float
)
sprintf
(
"%0.2f"
,
$quotation
[
'last'
]
/
100
),
];
echo
json_encode
(
$quotation
);
exit
;
$base_exchange
=
ExchangeFactory
::
createExchange
(
$base_exchange
);
$base_quotation
=
$base_exchange
->
getTicker
(
$base_currency
);
$base_quotation
=
[
'low'
=>
(
float
)
sprintf
(
"%0.4f"
,
$base_quotation
[
'low'
]
/
100
),
'high'
=>
(
float
)
sprintf
(
"%0.4f"
,
$base_quotation
[
'high'
]
/
100
),
'last'
=>
(
float
)
sprintf
(
"%0.4f"
,
$base_quotation
[
'last'
]
/
100
),
'rmb'
=>
(
float
)
sprintf
(
"%0.2f"
,
$base_quotation
[
'last'
]
/
100
),
];
if
(
false
==
$exchange
||
!
in_array
(
$exchange
,
Yii
::
$app
->
params
[
'exchange'
]))
{
$this
->
msg
=
'invalid exchange'
;
$this
->
code
=
-
1
;
goto
doEnd
;
}
$exchange
=
ExchangeFactory
::
createExchange
(
$exchange
);
if
(
'USDT'
==
strtoupper
(
$base_currency
))
{
$currency_ticker
=
$exchange
->
getTicker
(
$currency
,
'USDT'
);
if
(
empty
(
$currency_ticker
)){
$this
->
code
=
-
1
;
$this
->
msg
=
'此交易所暂不支持所选币种!'
;
goto
doEnd
;
}
$this
->
data
=
rtrim
(
sprintf
(
'%.6f'
,
$currency_ticker
[
'last'
]),
'0'
);
goto
doEnd
;
}
$builder
=
ExchangeBuilderFactory
::
create
(
'Zhaobi'
);
if
(
'USDT'
==
strtoupper
(
$currency
))
{
$result
=
$builder
->
getDetail
(
strtoupper
(
$currency
),
strtoupper
(
$base_currency
)
);
$currency_ticker
=
$exchange
->
getTicker
(
$base_currency
,
'USDT'
);
if
(
-
1
==
$result
[
'code'
]
)
{
if
(
empty
(
$currency_ticker
)
)
{
$msg
=
'invalid symbol'
;
$this
->
code
=
-
1
;
$code
=
-
1
;
$this
->
msg
=
'此交易所暂不支持所选币种!'
;
goto
doEnd
;
goto
doEnd
;
}
}
$code
=
0
;
$this
->
data
=
rtrim
(
sprintf
(
'%.6f'
,
1
/
$currency_ticker
[
'last'
]),
'0'
);
$msg
=
'ok'
;
goto
doEnd
;
$ticker
=
$result
[
'ticker'
];
}
$currency_ticker
=
$exchange
->
getTicker
(
$currency
,
'USDT'
);
$base_currency_ticker
=
$exchange
->
getTicker
(
$base_currency
,
'USDT'
);
if
(
empty
(
$currency_ticker
)
||
empty
(
$base_currency_ticker
))
{
$this
->
code
=
-
1
;
$this
->
msg
=
'此交易所暂不支持所选币种!'
;
goto
doEnd
;
}
$currency_quotation
=
[
'low'
=>
(
float
)
sprintf
(
"%0.4f"
,
$currency_ticker
[
'low'
]),
'high'
=>
(
float
)
sprintf
(
"%0.4f"
,
$currency_ticker
[
'high'
]),
'last'
=>
(
float
)
sprintf
(
"%0.4f"
,
$currency_ticker
[
'last'
]),
'rmb'
=>
(
float
)
sprintf
(
"%0.2f"
,
$currency_ticker
[
'last'
]),
];
$base_currency_quotation
=
[
'low'
=>
(
float
)
sprintf
(
"%0.4f"
,
$base_currency_ticker
[
'low'
]),
'high'
=>
(
float
)
sprintf
(
"%0.4f"
,
$base_currency_ticker
[
'high'
]),
'last'
=>
(
float
)
sprintf
(
"%0.4f"
,
$base_currency_ticker
[
'last'
]),
'rmb'
=>
(
float
)
sprintf
(
"%0.2f"
,
$base_currency_ticker
[
'last'
]),
];
$this
->
data
=
rtrim
(
sprintf
(
'%.6f'
,
$currency_quotation
[
'last'
]
/
$base_currency_quotation
[
'last'
]),
'0'
);
doEnd
:
doEnd
:
return
[
'code'
=>
$
code
,
'msg'
=>
$msg
,
'tick'
=>
$ticker
??
[]
];
return
[
'code'
=>
$
this
->
code
,
'msg'
=>
$this
->
msg
,
'data'
=>
$this
->
data
];
}
}
}
}
\ No newline at end of file
api/controllers/WalletChainController.php
View file @
6db5b1b5
...
@@ -36,7 +36,7 @@ class WalletChainController extends BaseController
...
@@ -36,7 +36,7 @@ class WalletChainController extends BaseController
$size
=
Yii
::
$app
->
request
->
get
(
'size'
,
10
);
$size
=
Yii
::
$app
->
request
->
get
(
'size'
,
10
);
$query
=
WalletChain
::
find
()
$query
=
WalletChain
::
find
()
->
select
(
'id, token, platform, status'
)
->
select
(
'id, token, platform,
create_time,
status'
)
->
where
([
'wallet_address'
=>
$wallet_address
])
->
where
([
'wallet_address'
=>
$wallet_address
])
->
orderBy
(
'id'
);
->
orderBy
(
'id'
);
...
...
api/controllers/WalletCoinController.php
View file @
6db5b1b5
...
@@ -7,6 +7,7 @@ use api\base\BaseController;
...
@@ -7,6 +7,7 @@ use api\base\BaseController;
use
common\business\ExchangeBusiness
;
use
common\business\ExchangeBusiness
;
use
common\models\psources\WalletCoin
;
use
common\models\psources\WalletCoin
;
use
common\models\psources\CoinCurrency
;
use
common\models\psources\CoinCurrency
;
use
common\models\psources\WalletCoinRelation
;
class
WalletCoinController
extends
BaseController
class
WalletCoinController
extends
BaseController
{
{
...
@@ -39,18 +40,26 @@ class WalletCoinController extends BaseController
...
@@ -39,18 +40,26 @@ class WalletCoinController extends BaseController
}
}
}
}
$this
->
data
=
[];
$this
->
data
=
[];
$relation_model
=
WalletCoinRelation
::
find
()
->
select
(
'coin_id'
)
->
where
([
'platform_id'
=>
(
int
)
$platform_id
])
->
asArray
()
->
all
();
if
(
empty
(
$relation_model
))
{
goto
doEnd
;
}
$relation_ids
=
array_column
(
$relation_model
,
'coin_id'
);
foreach
(
$condition
as
$val
)
{
foreach
(
$condition
as
$val
)
{
if
(
is_array
(
$val
))
{
if
(
is_array
(
$val
))
{
$model
=
WalletCoin
::
find
()
->
select
(
'id,sid,icon,name,nickname,introduce,platform,chain,address as contract_address,treaty'
)
$model
=
WalletCoin
::
find
()
->
select
(
'id,sid,icon,name,nickname,introduce,platform,chain,address as contract_address,treaty'
)
->
where
([
'name'
=>
$val
[
0
],
'platform
_id'
=>
(
int
)
$platform_id
])
->
where
([
'name'
=>
$val
[
0
],
'platform
'
=>
$val
[
1
]
])
->
andWhere
([
'
platform'
=>
$val
[
1
]
])
->
andWhere
([
'
in'
,
'id'
,
$relation_ids
])
->
asArray
()
->
asArray
()
->
one
();
->
one
();
}
}
if
(
is_string
(
$val
))
{
if
(
is_string
(
$val
))
{
$model
=
WalletCoin
::
find
()
->
select
(
'id,sid,icon,name,nickname,introduce,platform,chain,address as contract_address,treaty'
)
$model
=
WalletCoin
::
find
()
->
select
(
'id,sid,icon,name,nickname,introduce,platform,chain,address as contract_address,treaty'
)
->
where
([
'name'
=>
$val
,
'platform_id'
=>
(
int
)
$platform_id
])
->
where
([
'name'
=>
$val
])
->
andWhere
([
'in'
,
'id'
,
$relation_ids
])
->
asArray
()
->
asArray
()
->
one
();
->
one
();
}
}
...
@@ -120,9 +129,15 @@ class WalletCoinController extends BaseController
...
@@ -120,9 +129,15 @@ class WalletCoinController extends BaseController
$page
=
empty
(
$params
[
'page'
])
?
1
:
$params
[
'page'
];
$page
=
empty
(
$params
[
'page'
])
?
1
:
$params
[
'page'
];
$limit
=
empty
(
$params
[
'limit'
])
?
10
:
$params
[
'limit'
];
$limit
=
empty
(
$params
[
'limit'
])
?
10
:
$params
[
'limit'
];
$relation_model
=
WalletCoinRelation
::
find
()
->
select
(
'coin_id'
)
->
where
([
'platform_id'
=>
(
int
)
$platform_id
])
->
asArray
()
->
all
();
if
(
empty
(
$relation_model
))
{
goto
doEnd
;
}
$relation_ids
=
array_column
(
$relation_model
,
'coin_id'
);
$query
=
WalletCoin
::
find
()
$query
=
WalletCoin
::
find
()
->
select
(
'id, sid, icon, name, nickname, platform, chain, address as contract_address, treaty'
)
->
select
(
'id, sid, icon, name, nickname, platform, chain, address as contract_address, treaty'
)
->
where
([
'
>'
,
"find_in_set(
$platform_id
, platform_id)"
,
0
])
->
where
([
'
in'
,
'id'
,
$relation_ids
])
->
orderBy
(
'id'
);
->
orderBy
(
'id'
);
if
(
false
!=
$chain
)
{
if
(
false
!=
$chain
)
{
...
@@ -172,12 +187,17 @@ class WalletCoinController extends BaseController
...
@@ -172,12 +187,17 @@ class WalletCoinController extends BaseController
$this
->
msg
=
'参数错误'
;
$this
->
msg
=
'参数错误'
;
goto
doEnd
;
goto
doEnd
;
}
}
$relation
=
WalletCoinRelation
::
find
()
->
where
([
'coin_id'
=>
$id
,
'platform_id'
=>
(
int
)
$platform_id
])
->
one
();
$this
->
data
=
WalletCoin
::
find
()
->
where
([
'id'
=>
$id
,
'platform_id'
=>
$platform_id
])
->
asArray
()
->
one
();
if
(
empty
(
$relation
)){
if
(
empty
(
$this
->
data
))
{
goto
doEnd
;
goto
doEnd
;
}
}
$quotation
=
ExchangeBusiness
::
getquatation
(
$this
->
data
[
'name'
]);
$this
->
data
=
$relation
->
coin
;
$quotation
=
ExchangeBusiness
::
getquatation
(
$this
->
data
->
name
);
$tikerdata
=
[
'publish_count'
=>
$this
->
data
->
publish_count
,
'circulate_count'
=>
$this
->
data
->
circulate_count
];
if
(
$quotation
)
{
if
(
$quotation
)
{
$tikerdata
[
'price'
]
=
$quotation
[
'rmb'
];
$tikerdata
[
'price'
]
=
$quotation
[
'rmb'
];
$tikerdata
[
'dollar'
]
=
$quotation
[
'usd'
];
$tikerdata
[
'dollar'
]
=
$quotation
[
'usd'
];
...
@@ -185,13 +205,10 @@ class WalletCoinController extends BaseController
...
@@ -185,13 +205,10 @@ class WalletCoinController extends BaseController
$tikerdata
[
'price'
]
=
0
;
$tikerdata
[
'price'
]
=
0
;
$tikerdata
[
'dollar'
]
=
0
;
$tikerdata
[
'dollar'
]
=
0
;
}
}
$this
->
data
[
'quotation'
]
=
$tikerdata
;
$this
->
data
[
'quotation'
][
'publish_count'
]
=
$this
->
data
[
'publish_count'
];
$this
->
data
->
quotation
=
$tikerdata
;
$this
->
data
[
'quotation'
][
'circulate_count'
]
=
$this
->
data
[
'circulate_count'
];
$this
->
data
->
nickname
=
isset
(
$this
->
data
->
nickname
[
$this
->
lang
])
?
$this
->
data
->
nickname
[
$this
->
lang
]
:
''
;
$nickname
=
json_decode
(
$this
->
data
[
'nickname'
],
true
);
$this
->
data
->
introduce
=
isset
(
$this
->
data
->
introduce
[
$this
->
lang
])
?
$this
->
data
->
introduce
[
$this
->
lang
]
:
''
;
$this
->
data
[
'nickname'
]
=
isset
(
$nickname
[
$this
->
lang
])
?
$nickname
[
$this
->
lang
]
:
''
;
$introduce
=
json_decode
(
$this
->
data
[
'introduce'
],
true
);
$this
->
data
[
'introduce'
]
=
isset
(
$introduce
[
$this
->
lang
])
?
$introduce
[
$this
->
lang
]
:
''
;
doEnd
:
doEnd
:
return
[
'code'
=>
$this
->
code
,
'data'
=>
$this
->
data
,
'msg'
=>
$this
->
msg
];
return
[
'code'
=>
$this
->
code
,
'data'
=>
$this
->
data
,
'msg'
=>
$this
->
msg
];
...
...
api/controllers/WalletController.php
View file @
6db5b1b5
...
@@ -8,12 +8,42 @@ use common\models\psources\CoinAirDropTrade;
...
@@ -8,12 +8,42 @@ use common\models\psources\CoinAirDropTrade;
use
common\models\psources\CoinIssueTransfer
;
use
common\models\psources\CoinIssueTransfer
;
use
common\models\psources\CoinPlatform
;
use
common\models\psources\CoinPlatform
;
use
common\models\psources\CoinPlatformWithHold
;
use
common\models\psources\CoinPlatformWithHold
;
use
common\models\psources\WalletSupportedTokenCategory
;
use
common\service\chain33\Chain33Service
;
use
common\service\chain33\Chain33Service
;
use
Yii
;
use
Yii
;
class
WalletController
extends
BaseController
class
WalletController
extends
BaseController
{
{
public
function
actionTokenCategory
()
{
$header
=
Yii
::
$app
->
request
->
headers
;
$platform_id
=
$header
[
'FZM-PLATFORM-ID'
]
??
null
;
if
(
empty
(
$platform_id
))
{
$this
->
msg
=
'缺少必要参数'
;
$this
->
code
=
-
1
;
goto
doEnd
;
}
$this
->
data
=
[
[
'category'
=>
'首页'
,
'chain'
=>
null
],
[
'category'
=>
'首页'
,
'chain'
=>
null
]
];
$data
=
WalletSupportedTokenCategory
::
find
()
->
select
(
'category, chain'
)
->
where
([
'platform_id'
=>
(
int
)
$platform_id
])
->
asArray
()
->
all
();
if
(
empty
(
$data
))
{
goto
doEnd
;
}
$this
->
data
=
array_merge
(
$this
->
data
,
$data
);
doEnd
:
return
[
'code'
=>
$this
->
code
,
'data'
=>
$this
->
data
,
'msg'
=>
$this
->
msg
];
}
public
function
actionInfo
()
public
function
actionInfo
()
{
{
$code
=
0
;
$code
=
0
;
...
...
common/models/psources/ExploreApp.php
View file @
6db5b1b5
...
@@ -30,8 +30,9 @@ class ExploreApp extends BaseActiveRecord
...
@@ -30,8 +30,9 @@ class ExploreApp extends BaseActiveRecord
public
function
rules
()
public
function
rules
()
{
{
return
[
return
[
[[
'name'
,
'icon'
,
'app_url'
,
'type'
,
'sort'
,
'status'
,
'platform_id'
,
'app_category_id'
],
'required'
],
[[
'name'
,
'icon'
,
'app_url'
,
'type'
,
'sort'
,
'status'
,
'platform_id'
,
'app_category_id'
,
'email'
,
'phone'
,
'real_name'
],
'required'
],
[[
'type'
,
'sort'
,
'status'
,
'platform_id'
,
'app_category_id'
],
'integer'
],
[[
'type'
,
'sort'
,
'status'
,
'platform_id'
,
'app_category_id'
,
'email'
,
'phone'
,
'real_name'
],
'integer'
],
[[
'email'
,
'phone'
,
'real_name'
],
'in'
,
'range'
=>
array
(
0
,
1
)],
[
'slogan'
,
'string'
,
'max'
=>
50
],
[
'slogan'
,
'string'
,
'max'
=>
50
],
[[
'slogan'
],
'safe'
],
[[
'slogan'
],
'safe'
],
[[
'icon'
],
'url'
]
[[
'icon'
],
'url'
]
...
@@ -47,15 +48,18 @@ class ExploreApp extends BaseActiveRecord
...
@@ -47,15 +48,18 @@ class ExploreApp extends BaseActiveRecord
'slogan'
=>
'应用宣传语'
,
'slogan'
=>
'应用宣传语'
,
'type'
=>
'应用类型'
,
'type'
=>
'应用类型'
,
'sort'
=>
'应用排序'
,
'sort'
=>
'应用排序'
,
'status'
=>
'应用状态'
'status'
=>
'应用状态'
,
'phone'
=>
'准入条件 - 手机'
,
'email'
=>
'准入条件 - 邮箱'
,
'real_name'
=>
'准入条件 - 实名'
];
];
}
}
public
function
scenarios
()
public
function
scenarios
()
{
{
$scenarios
=
[
$scenarios
=
[
self
::
SCENARIOS_CREATE
=>
[
'name'
,
'icon'
,
'app_url'
,
'slogan'
,
'type'
,
'sort'
,
'status'
,
'platform_id'
,
'app_category_id'
],
self
::
SCENARIOS_CREATE
=>
[
'name'
,
'icon'
,
'app_url'
,
'slogan'
,
'type'
,
'sort'
,
'status'
,
'platform_id'
,
'app_category_id'
,
'email'
,
'phone'
,
'real_name'
],
self
::
SCENARIOS_UPDATE
=>
[
'id'
,
'name'
,
'icon'
,
'app_url'
,
'slogan'
,
'type'
,
'sort'
,
'status'
,
'platform_id'
,
'app_category_id'
],
self
::
SCENARIOS_UPDATE
=>
[
'id'
,
'name'
,
'icon'
,
'app_url'
,
'slogan'
,
'type'
,
'sort'
,
'status'
,
'platform_id'
,
'app_category_id'
,
'email'
,
'phone'
,
'real_name'
],
];
];
return
array_merge
(
parent
::
scenarios
(),
$scenarios
);
return
array_merge
(
parent
::
scenarios
(),
$scenarios
);
}
}
...
...
common/models/psources/WalletCoin.php
View file @
6db5b1b5
...
@@ -17,4 +17,9 @@ class WalletCoin extends BaseActiveRecord
...
@@ -17,4 +17,9 @@ class WalletCoin extends BaseActiveRecord
{
{
return
'{{wallet_coin}}'
;
return
'{{wallet_coin}}'
;
}
}
public
function
attributes
()
{
return
array_merge
(
parent
::
attributes
(),
[
'quotation'
]);
}
}
}
\ No newline at end of file
common/models/psources/WalletCoinRelation.php
0 → 100644
View file @
6db5b1b5
<?php
namespace
common\models\psources
;
use
Yii
;
use
common\core\BaseActiveRecord
;
class
WalletCoinRelation
extends
BaseActiveRecord
{
public
static
function
getDb
()
{
return
Yii
::
$app
->
get
(
'p_sources'
);
}
public
static
function
tableName
()
{
return
'{{wallet_coin_relation}}'
;
}
public
function
getCoin
()
{
return
$this
->
hasOne
(
WalletCoin
::
className
(),
[
'id'
=>
'coin_id'
]);
}
}
\ No newline at end of file
common/models/psources/WalletSupportedTokenCategory.php
0 → 100644
View file @
6db5b1b5
<?php
namespace
common\models\psources
;
use
Yii
;
use
common\core\BaseActiveRecord
;
class
WalletSupportedTokenCategory
extends
BaseActiveRecord
{
public
static
function
getDb
()
{
return
Yii
::
$app
->
get
(
'p_sources'
);
}
public
static
function
tableName
()
{
return
'{{wallet_supported_token_catetory}}'
;
}
}
\ No newline at end of file
wallet/controllers/ExploreAppController.php
View file @
6db5b1b5
...
@@ -232,7 +232,7 @@ class ExploreAppController extends BaseController
...
@@ -232,7 +232,7 @@ class ExploreAppController extends BaseController
if
(
Yii
::
$app
->
request
->
isGet
)
{
if
(
Yii
::
$app
->
request
->
isGet
)
{
$id
=
Yii
::
$app
->
request
->
get
(
'id'
);
$id
=
Yii
::
$app
->
request
->
get
(
'id'
);
$data
=
ExploreApp
::
find
()
->
select
(
'id, name, icon, app_url, slogan, type, sort, status'
)
->
where
([
'platform_id'
=>
$platform_id
,
'id'
=>
$id
])
->
asArray
()
->
one
();
$data
=
ExploreApp
::
find
()
->
select
(
'id, name, icon, app_url, slogan, type, sort, status
, email, phone, real_name
'
)
->
where
([
'platform_id'
=>
$platform_id
,
'id'
=>
$id
])
->
asArray
()
->
one
();
goto
doEnd
;
goto
doEnd
;
}
}
...
...
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