TransitWalletServices.php 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <?php
  2. namespace App\Service\Transit;
  3. use App\Model\Transit\TransitWallet;
  4. class TransitWalletServices
  5. {
  6. /**
  7. * 获取收款钱包列表
  8. * @param $type [0.读取 1.更新]
  9. */
  10. public function getList($type=0){
  11. $res = TransitWallet::select('rid','chain_type','receive_wallet','send_wallet','send_wallet_privatekey','status','tg_notice_obj_receive','tg_notice_obj_send','get_tx_time')->where('status',0)->whereRaw('length(receive_wallet) = 34')->orderBy('rid')->get();
  12. $data = array();
  13. if($res->count() > 0){
  14. $res = $res->toArray();
  15. foreach ($res as $key => $v) {
  16. $data[$v['rid']] = $v;
  17. }
  18. }
  19. return $res;
  20. }
  21. /**
  22. * 获取收款钱包ID和名称列表 [key为ID value为名称]
  23. * @param $type [0.列表格式1 1.列表格式2 2.列表格式3]
  24. */
  25. public function IDList($type=0){
  26. $data = $this->getList();
  27. $list = [];
  28. if(!empty($data)){
  29. switch ($type) {
  30. case 1:
  31. foreach ($data as $k => $v) {
  32. $list[$k] = $v['receive_wallet'];
  33. }
  34. break;
  35. case 2:
  36. // key为钱包地址
  37. foreach ($data as $k => $v) {
  38. $list[$v['receive_wallet']] = $v;
  39. }
  40. break;
  41. case 3:
  42. // 定时任务过滤状态
  43. foreach ($data as $k => $v) {
  44. if(in_array($v['status'],[0,2])){
  45. $list[] = $v;
  46. }
  47. }
  48. break;
  49. default:
  50. foreach ($data as $k => $v) {
  51. $list[] = [
  52. 'rid' => $v['rid'],
  53. 'receive_wallet' => $v['receive_wallet'],
  54. ];
  55. }
  56. break;
  57. }
  58. }
  59. return $list;
  60. }
  61. }