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
42b1c4d3
Commit
42b1c4d3
authored
May 21, 2020
by
shajiaiming
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/airdrop' into 'master'
Feature/airdrop See merge request
!337
parents
0d102990
d527b88d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
167 additions
and
5 deletions
+167
-5
AirDropController.php
api/controllers/AirDropController.php
+167
-5
No files found.
api/controllers/AirDropController.php
View file @
42b1c4d3
...
@@ -3,6 +3,7 @@
...
@@ -3,6 +3,7 @@
namespace
api\controllers
;
namespace
api\controllers
;
use
Yii
;
use
Yii
;
use
common\components\Tools
;
use
api\base\BaseController
;
use
api\base\BaseController
;
use
common\models\psources\AirDrop
;
use
common\models\psources\AirDrop
;
use
common\service\chain33\Chain33Service
;
use
common\service\chain33\Chain33Service
;
...
@@ -12,6 +13,29 @@ use common\models\psources\AirDropApplyRecord;
...
@@ -12,6 +13,29 @@ use common\models\psources\AirDropApplyRecord;
class
AirDropController
extends
BaseController
class
AirDropController
extends
BaseController
{
{
public
function
actionValidateIdentifier
()
{
$data
=
Yii
::
$app
->
request
->
get
();
$identifier
=
$data
[
'identifier'
]
??
null
;
if
(
false
==
$identifier
)
{
$this
->
code
=
-
1
;
$this
->
msg
=
'设备号错误,请重新输入.'
;
goto
doEnd
;
}
$exist
=
AirDropRulePool
::
find
()
->
where
([
'identifier'
=>
$identifier
])
->
one
();
if
(
false
==
$exist
||
false
==
$exist
->
rule
)
{
$this
->
code
=
-
1
;
$this
->
msg
=
'设备号错误,请重新输入.'
;
goto
doEnd
;
}
doEnd
:
return
[
'code'
=>
$this
->
code
,
'msg'
=>
$this
->
msg
,
'data'
=>
$this
->
data
];
}
/**
/**
* 参于空投申请/空投申请列表
* 参于空投申请/空投申请列表
* @param identifier 树莓派编号
* @param identifier 树莓派编号
...
@@ -46,6 +70,24 @@ class AirDropController extends BaseController
...
@@ -46,6 +70,24 @@ class AirDropController extends BaseController
goto
doEnd
;
goto
doEnd
;
}
}
$model
->
save
();
$model
->
save
();
$apply_id
=
$model
->
id
;
$time
=
$exist
->
rule
->
duration
-
1
;
$create_time
=
date
(
'Y-m-d'
);
$finish_time
=
date
(
'Y-m-d'
,
strtotime
(
"+
$time
day"
));
$expiry_date
=
Tools
::
getDatesFromRange
(
$create_time
,
$finish_time
);
$apply_record_model
=
new
AirDropApplyRecord
();
foreach
(
$expiry_date
as
$key
=>
$val
)
{
$apply_record_model
->
setIsNewRecord
(
true
);
$apply_record_model
->
apply_id
=
$apply_id
;
$apply_record_model
->
reach
=
AirDropApplyRecord
::
REACH_NO
;
$apply_record_model
->
amount
=
$exist
->
rule
->
amount
;
$apply_record_model
->
token
=
$exist
->
rule
->
token
;
$apply_record_model
->
draw_status
=
AirDropApplyRecord
::
STATUS_UNDRAW
;
$apply_record_model
->
create_time
=
$val
;
$apply_record_model
->
update_time
=
$val
;
$apply_record_model
->
save
()
&&
$apply_record_model
->
id
=
0
;;
}
$redis
=
Yii
::
$app
->
redis_app
;
$redis
=
Yii
::
$app
->
redis_app
;
$redis
->
hmset
(
'airdrop:'
.
$data
[
'identifier'
],
'reach'
,
0
,
'draw_success'
,
0
,
'income'
,
0
,
'un_draw'
,
0
);
$redis
->
hmset
(
'airdrop:'
.
$data
[
'identifier'
],
'reach'
,
0
,
'draw_success'
,
0
,
'income'
,
0
,
'un_draw'
,
0
);
...
@@ -71,17 +113,16 @@ class AirDropController extends BaseController
...
@@ -71,17 +113,16 @@ class AirDropController extends BaseController
}
}
$query
=
AirDropApplyRecord
::
find
()
$query
=
AirDropApplyRecord
::
find
()
->
select
(
'id, reach, amount, token,draw_status, create_time'
)
->
select
(
'id, reach, amount, token,draw_status, create_time
, update_time
'
)
->
where
([
'apply_id'
=>
$model
[
'id'
]]);
->
where
([
'apply_id'
=>
$model
[
'id'
]]);
if
(
!
empty
(
$apply_ids
))
{
if
(
!
empty
(
$apply_ids
))
{
$apply_ids
=
rtrim
(
$apply_ids
,
','
);
$apply_ids
=
rtrim
(
$apply_ids
,
','
);
$apply_id_arr
=
explode
(
','
,
$apply_ids
);
$apply_id_arr
=
explode
(
','
,
$apply_ids
);
$query
->
andWhere
([
'in'
,
'id'
,
$apply_id_arr
]);
$query
->
andWhere
([
'in'
,
'id'
,
$apply_id_arr
]);
}
}
$expiry_date
=
date
(
"Y-m-d"
,
strtotime
(
"+1 day"
));
$query
->
andWhere
([
'>'
,
'draw_status'
,
AirDropApplyRecord
::
STATUS_UNDRAW
]);
$query
->
andWhere
([
'<'
,
'create_time'
,
$expiry_date
]);
$items
=
$query
->
offset
((
$page
-
1
)
*
$size
)
->
orderBy
(
'
cre
ate_time desc'
)
->
limit
(
$size
)
->
all
();
$items
=
$query
->
offset
((
$page
-
1
)
*
$size
)
->
orderBy
(
'
upd
ate_time desc'
)
->
limit
(
$size
)
->
all
();
$countQuery
=
clone
$query
;
$countQuery
=
clone
$query
;
$total
=
(
int
)
$countQuery
->
count
();
$total
=
(
int
)
$countQuery
->
count
();
...
@@ -124,6 +165,31 @@ class AirDropController extends BaseController
...
@@ -124,6 +165,31 @@ class AirDropController extends BaseController
}
}
/**
/**
* 验证今日是否可领取
* @param identifier 树莓派编号
* @return array
*/
public
function
actionValidate
()
{
$data
=
Yii
::
$app
->
request
->
get
();
$identifier
=
$data
[
'identifier'
]
??
''
;
if
(
false
==
$identifier
)
{
$this
->
code
=
-
1
;
$this
->
msg
=
'Validation failed.'
;
goto
doEnd
;
}
$redis
=
Yii
::
$app
->
redis_app
;
if
(
true
==
$redis
->
exists
(
$identifier
))
{
$this
->
data
=
false
;
goto
doEnd
;
}
$this
->
data
=
true
;
doEnd
:
return
[
'code'
=>
$this
->
code
,
'msg'
=>
$this
->
msg
,
'data'
=>
$this
->
data
];
}
/**
* 空投领取情况
* 空投领取情况
* @param identifier 树莓派编号
* @param identifier 树莓派编号
* @param miner_address 矿工地址
* @param miner_address 矿工地址
...
@@ -146,7 +212,13 @@ class AirDropController extends BaseController
...
@@ -146,7 +212,13 @@ class AirDropController extends BaseController
}
}
$redis
=
Yii
::
$app
->
redis_app
;
$redis
=
Yii
::
$app
->
redis_app
;
list
(
$reach
,
$reached_times
,
$draw_success
,
$income
,
$un_draw
)
=
$redis
->
hmget
(
'airdrop:'
.
$identifier
,
'reach'
,
'reached_times'
,
'draw_success'
,
'income'
,
'un_draw'
);
list
(
$reached_times
,
$draw_success
,
$income
,
$un_draw
)
=
$redis
->
hmget
(
'airdrop:'
.
$identifier
,
'reached_times'
,
'draw_success'
,
'income'
,
'un_draw'
);
$exist
=
AirDropRulePool
::
find
()
->
where
([
'identifier'
=>
$identifier
])
->
one
();
if
(
false
==
$exist
)
{
$reach
=
0
;
}
else
{
$reach
=
$exist
->
rule
->
duration
;
}
$this
->
data
=
[
$this
->
data
=
[
'reach'
=>
empty
(
$reach
)
?
0
:
(
int
)
$reach
,
'reach'
=>
empty
(
$reach
)
?
0
:
(
int
)
$reach
,
'reached_times'
=>
empty
(
$reached_times
)
?
0
:
(
int
)
$reached_times
,
'reached_times'
=>
empty
(
$reached_times
)
?
0
:
(
int
)
$reached_times
,
...
@@ -202,6 +274,12 @@ class AirDropController extends BaseController
...
@@ -202,6 +274,12 @@ class AirDropController extends BaseController
return
[
'code'
=>
$this
->
code
,
'msg'
=>
$this
->
msg
,
'data'
=>
$this
->
data
];
return
[
'code'
=>
$this
->
code
,
'msg'
=>
$this
->
msg
,
'data'
=>
$this
->
data
];
}
}
/**
* 领取某日空投
* @param identifier 树莓派编号
* @param miner_address 矿工地址
* @return array
*/
public
function
actionDraw
()
public
function
actionDraw
()
{
{
if
(
!
Yii
::
$app
->
request
->
isPost
)
{
if
(
!
Yii
::
$app
->
request
->
isPost
)
{
...
@@ -211,6 +289,90 @@ class AirDropController extends BaseController
...
@@ -211,6 +289,90 @@ class AirDropController extends BaseController
}
}
$data
=
Yii
::
$app
->
request
->
post
();
$data
=
Yii
::
$app
->
request
->
post
();
$identifier
=
$data
[
'identifier'
]
??
''
;
$miner_address
=
$data
[
'miner_address'
]
??
''
;
if
(
false
==
$identifier
||
false
==
$miner_address
)
{
$this
->
code
=
-
1
;
$this
->
msg
=
'Validation failed.'
;
goto
doEnd
;
}
$model
=
AirDrop
::
find
()
->
select
(
'id, wallet_address'
)
->
where
([
'identifier'
=>
$identifier
,
'miner_address'
=>
$miner_address
])
->
one
();
if
(
empty
(
$model
)
||
empty
(
$model
->
wallet_address
)
||
empty
(
$model
->
record
))
{
$this
->
code
=
-
1
;
$this
->
msg
=
'设备初始化中,请稍后再试.'
;
goto
doEnd
;
}
$expiry_date
=
date
(
"Y-m-d"
,
strtotime
(
"+1 day"
));
$record
=
AirDropApplyRecord
::
find
()
->
where
([
'apply_id'
=>
$model
->
id
,
'draw_status'
=>
AirDropApplyRecord
::
STATUS_UNDRAW
])
->
andWhere
([
'<'
,
'create_time'
,
$expiry_date
])
->
orderBy
(
'id'
)
->
limit
(
1
)
->
one
();
if
(
empty
(
$record
))
{
$this
->
code
=
-
1
;
$this
->
msg
=
'暂无符合条件的领取记录'
;
goto
doEnd
;
}
$redis
=
Yii
::
$app
->
redis_app
;
$value
=
date
(
'Y-m-d H:i:s'
);
$is_locked
=
$redis
->
setnx
(
$data
[
'identifier'
],
$value
);
if
(
!
$is_locked
)
{
$this
->
msg
=
'已达今日领取上限,请明天再来!'
;
$this
->
code
=
-
1
;
goto
doEnd
;
}
$service
=
new
Chain33Service
();
$execer
=
'ticket'
;
$result
=
$service
->
getBalance
(
$model
->
wallet_address
,
$execer
);
if
(
0
==
$result
[
'code'
])
{
$balance
=
$result
[
'result'
][
0
][
'balance'
]
??
0
;
$frozen
=
$result
[
'result'
][
0
][
'frozen'
]
??
0
;
if
((
$balance
+
$frozen
)
/
1e8
<
3000
)
{
$this
->
code
=
-
1
;
$this
->
msg
=
'未达标,请确认矿机正在挖矿后重新尝试'
;
$redis
->
del
(
$data
[
'identifier'
]);
goto
doEnd
;
}
}
$record
->
reach
=
AirDropApplyRecord
::
REACH_YES
;
$record
->
draw_status
=
AirDropApplyRecord
::
STATUS_DRAWING
;
$record
->
update_time
=
date
(
'Y-m-d'
);
if
(
false
==
$record
->
save
())
{
$this
->
code
=
-
1
;
$this
->
msg
=
$record
->
errors
;
goto
doEnd
;
}
$redis
->
setex
(
$data
[
'identifier'
],
strtotime
(
'23:59:59'
)
-
time
(),
$value
);
doEnd
:
return
[
'code'
=>
$this
->
code
,
'msg'
=>
$this
->
msg
,
'data'
=>
$this
->
data
];
}
/**
* 领取某日空投 (暂停用)
* @param id 某日id
* @param identifier 树莓派编号
* @param miner_address 矿工地址
* @return array
*/
public
function
actionDrawBak
()
{
if
(
!
Yii
::
$app
->
request
->
isPost
)
{
$this
->
code
=
-
1
;
$this
->
msg
=
'请求方式错误!'
;
goto
doEnd
;
}
$data
=
Yii
::
$app
->
request
->
post
();
$id
=
$data
[
'id'
]
??
''
;
$id
=
$data
[
'id'
]
??
''
;
$identifier
=
$data
[
'identifier'
]
??
''
;
$identifier
=
$data
[
'identifier'
]
??
''
;
$miner_address
=
$data
[
'miner_address'
]
??
''
;
$miner_address
=
$data
[
'miner_address'
]
??
''
;
...
...
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