MiningController.php 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?php
  2. namespace app\api\controller\mining;
  3. use app\models\mining\MiningMachine;
  4. use app\models\trade\CashTradeOrder;
  5. use app\Request;
  6. use crmeb\services\CacheService;
  7. use crmeb\services\UtilService;
  8. use think\db\exception\DataNotFoundException;
  9. use think\db\exception\DbException;
  10. use think\db\exception\ModelNotFoundException;
  11. class MiningController
  12. {
  13. /**
  14. * 算力产品
  15. * @param Request $request
  16. * @return mixed
  17. */
  18. public function lst(Request $request)
  19. {
  20. $page = $request->get('page', 1);
  21. $limit = $request->get('limit', 10);
  22. return app('json')->success('ok', MiningMachine::getList($page, $limit));
  23. }
  24. /**
  25. * @param $id
  26. * @param Request $request
  27. * @return mixed
  28. * @throws DataNotFoundException
  29. * @throws DbException
  30. * @throws ModelNotFoundException
  31. */
  32. public function detail($id, Request $request)
  33. {
  34. return app('json')->success('ok', MiningMachine::valid()->where('id', $id)->find()->toArray());
  35. }
  36. public function buy($id, Request $request)
  37. {
  38. $user = $request->user();
  39. list($num,) = UtilService::postMore(
  40. [
  41. ['num', 0,],
  42. ['trade_psw', '', '', '', ['not_empty_check', function ($item) use ($user) {
  43. // var_dump($user);
  44. return md5(md5($item)) == $user['trade_pwd'];
  45. }], ['请输入交易密码', '交易密码错误']],
  46. ], $request, true);
  47. $res = MiningMachine::buyMachine($id, $request->uid(), $num);
  48. if ($res) {
  49. return app('json')->success('购买成功');
  50. } else {
  51. return app('json')->fail(MiningMachine::getErrorInfo());
  52. }
  53. }
  54. }