EnergyPlatformBotController.php 9.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. <?php
  2. namespace App\Http\Controllers\Admin\Energy;
  3. use Illuminate\Http\Request;
  4. use App\Services\AipHttpClient;
  5. use App\Http\Controllers\Controller;
  6. use Illuminate\Support\Facades\DB;
  7. use App\Models\Telegram\TelegramBot;
  8. use App\Models\Premium\PremiumPlatform;
  9. use App\Models\Energy\EnergyPlatform;
  10. use App\Models\Energy\EnergyPlatformBot;
  11. use App\Models\Transit\TransitWallet;
  12. class EnergyPlatformBotController extends Controller
  13. {
  14. public $Status = ['开启','关闭'];
  15. public $IsOpenAiTrusteeship = ['Y' => '开启','N' => '关闭'];
  16. public $AiEnergyDay = ['0' => '1小时','1' => '1天','3' => '3天'];
  17. public $EnergyDay = ['0' => '1小时','1' => '1天','3' => '3天','30' => '30天'];
  18. public $PollGroup = ['A' => 'A组','B' => 'B组','C' => 'C组','D' => 'D组','E' => 'E组','F' => 'F组','G' => 'G组'];
  19. public $BishuRecoveryType = ['1' => '到期回收','2' => '代理下一笔回收'];
  20. public $AiRecoveryType = ['1' => '到期回收','2' => '代理下一笔回收'];
  21. public $BishuDailiType = ['1' => '自动','2' => '提交平台托管笔数'];
  22. public function index(Request $request)
  23. {
  24. $Status = $this->Status;
  25. $IsOpenAiTrusteeship = $this->IsOpenAiTrusteeship;
  26. $EnergyDay = $this->EnergyDay;
  27. $PollGroup = $this->PollGroup;
  28. $BishuRecoveryType = $this->BishuRecoveryType;
  29. $AiEnergyDay = $this->AiEnergyDay;
  30. $BishuDailiType = $this->BishuDailiType;
  31. $AiRecoveryType = $this->AiRecoveryType;
  32. $botData = TelegramBot::pluck('bot_username','rid');
  33. return view('admin.energy.platformbot.index',compact("Status","botData","IsOpenAiTrusteeship","EnergyDay","PollGroup","BishuRecoveryType","AiEnergyDay","BishuDailiType","AiRecoveryType"));
  34. }
  35. //列表
  36. public function getData(Request $request)
  37. {
  38. $model = EnergyPlatformBot::from('energy_platform_bot as a')
  39. ->leftJoin('telegram_bot as b','a.bot_rid','b.rid')
  40. ->where(function($query) use ($request){
  41. if ($request->platform_uid != '') {
  42. $query->where('a.platform_uid', 'like' ,"%" . $request->platform_uid ."%");
  43. }
  44. });
  45. $count = $model->count();
  46. $limit = $request->limit ?? 15;
  47. $offset = $request->page ? ($request->page - 1) * $limit : 0;
  48. $data = $model->limit($limit)->offset($offset)->select('a.*','b.bot_token','b.bot_firstname','b.bot_username')->orderBy('a.rid','desc')->get();
  49. $PollGroup = $this->PollGroup;
  50. $IsOpenAiTrusteeship = $this->IsOpenAiTrusteeship;
  51. $data = $data->map(function($query) use ($PollGroup,$IsOpenAiTrusteeship){
  52. $query->poll_group_val = $PollGroup[$query->poll_group];
  53. $query->is_open_ai_trusteeship_val = $IsOpenAiTrusteeship[$query->is_open_ai_trusteeship];
  54. $query->is_open_bishu_val = $IsOpenAiTrusteeship[$query->is_open_bishu];
  55. return $query;
  56. });
  57. return ['code' => '0', 'data' => $data, 'count' => $count];
  58. }
  59. //添加
  60. public function add(Request $request)
  61. {
  62. $data = EnergyPlatformBot::where('bot_rid', $request->bot_rid)->first();
  63. if(!empty($data)){
  64. return $this->responseData(400, '机器人对应能量平台已存在');
  65. }
  66. $premiumdata = PremiumPlatform::where('receive_wallet', $request->receive_wallet)->first();
  67. if(!empty($premiumdata)){
  68. return $this->responseData(400, '不能和会员钱包地址一致');
  69. }
  70. $botdata = TelegramBot::where('recharge_wallet_addr', $request->receive_wallet)->first();
  71. if(!empty($botdata)){
  72. return $this->responseData(400, '收款钱包不能和机器人充值地址一致');
  73. }
  74. $transitdata = TransitWallet::where('receive_wallet', $request->receive_wallet)->first();
  75. if(!empty($transitdata)){
  76. return $this->responseData(400, '不能和闪兑钱包地址一致');
  77. }
  78. $energydata = EnergyPlatformBot::where('receive_wallet', $request->receive_wallet)->first();
  79. if(!empty($energydata)){
  80. return $this->responseData(400, '能量钱包地址已存在');
  81. }
  82. $res = EnergyPlatformBot::create([
  83. 'bot_rid' => $request->bot_rid,
  84. 'poll_group' => $request->poll_group,
  85. 'tg_admin_uid' => $request->tg_admin_uid ?? '',
  86. 'tg_notice_obj_receive' => $request->tg_notice_obj_receive ?? '',
  87. 'tg_notice_obj_send' => $request->tg_notice_obj_send ?? '',
  88. 'receive_wallet' => $request->receive_wallet ?? '',
  89. 'get_tx_time' => $request->get_tx_time ?? null,
  90. 'comments' => $request->comments ?? '',
  91. 'create_time' => nowDate()
  92. ]);
  93. return $res ? $this->responseData(200, '添加成功') : $this->responseData(400, '添加失败');
  94. }
  95. //删除
  96. public function delete(Request $request)
  97. {
  98. $res = EnergyPlatformBot::where('rid', $request->rid)->delete();
  99. return $res ? $this->responseData(200, '删除成功') : $this->responseData(400, '删除失败');
  100. }
  101. //编辑
  102. public function update(Request $request)
  103. {
  104. $premiumdata = PremiumPlatform::where('receive_wallet', $request->receive_wallet)->first();
  105. if(!empty($premiumdata)){
  106. return $this->responseData(400, '不能和会员钱包地址一致');
  107. }
  108. $botdata = TelegramBot::where('recharge_wallet_addr', $request->receive_wallet)->first();
  109. if(!empty($botdata)){
  110. return $this->responseData(400, '收款钱包不能和机器人充值地址一致');
  111. }
  112. $transitdata = TransitWallet::where('receive_wallet', $request->receive_wallet)->first();
  113. if(!empty($transitdata)){
  114. return $this->responseData(400, '不能和闪兑钱包地址一致');
  115. }
  116. $energydata = EnergyPlatformBot::where('receive_wallet', $request->receive_wallet)->where('rid', '<>',$request->rid)->first();
  117. if(!empty($energydata)){
  118. return $this->responseData(400, '能量钱包地址已存在');
  119. }
  120. DB::beginTransaction();
  121. try {
  122. $data = EnergyPlatformBot::where('rid', $request->rid)->first();
  123. $data->bot_rid = $request->bot_rid;
  124. $data->poll_group = $request->poll_group;
  125. $data->tg_admin_uid = $request->tg_admin_uid ?? '';
  126. $data->tg_notice_obj_receive = $request->tg_notice_obj_receive ?? '';
  127. $data->tg_notice_obj_send = $request->tg_notice_obj_send ?? '';
  128. $data->receive_wallet = $request->receive_wallet ?? '';
  129. $data->get_tx_time = $request->get_tx_time ?? null;
  130. $data->comments = $request->comments ?? '';
  131. $data->update_time = nowDate();
  132. $data->save();
  133. DB::commit();
  134. return $this->responseData(200, '更新成功');
  135. } catch (\Exception $e) {
  136. DB::rollBack();
  137. return $this->responseData(400, '更新失败'.$e->getMessage());
  138. }
  139. }
  140. //编辑状态
  141. public function change_status(Request $request)
  142. {
  143. DB::beginTransaction();
  144. try {
  145. $data = EnergyPlatformBot::where('rid', $request->rid)->first();
  146. $data->status = $request->status == 1 ? 0 : 1;
  147. $data->save();
  148. DB::commit();
  149. return $this->responseData(200, '更新成功');
  150. } catch (\Exception $e) {
  151. DB::rollBack();
  152. return $this->responseData(400, '更新失败'.$e->getMessage());
  153. }
  154. }
  155. //智能托管
  156. public function aitrusteeship(Request $request)
  157. {
  158. if($request->is_open_ai_trusteeship == 'Y' && ($request->trx_price_energy_32000 <= 0 || $request->trx_price_energy_65000 <= 0)){
  159. return $this->responseData(400, '价格必须大于0');
  160. }
  161. DB::beginTransaction();
  162. try {
  163. $data = EnergyPlatformBot::where('rid', $request->rid)->first();
  164. $data->is_open_ai_trusteeship = $request->is_open_ai_trusteeship;
  165. $data->trx_price_energy_32000 = $request->trx_price_energy_32000;
  166. $data->trx_price_energy_65000 = $request->trx_price_energy_65000;
  167. $data->per_energy_day = $request->per_energy_day;
  168. $data->ai_trusteeship_recovery_type = $request->ai_trusteeship_recovery_type;
  169. $data->save();
  170. DB::commit();
  171. return $this->responseData(200, '更新成功');
  172. } catch (\Exception $e) {
  173. DB::rollBack();
  174. return $this->responseData(400, '更新失败'.$e->getMessage());
  175. }
  176. }
  177. //笔数套餐
  178. public function bishu(Request $request)
  179. {
  180. if($request->is_open_bishu == 'Y' && $request->per_bishu_usdt_price <= 0){
  181. return $this->responseData(400, '价格必须大于0');
  182. }
  183. if(!in_array($request->per_bishu_energy_quantity,[32000,65000])){
  184. return $this->responseData(400, '每笔能量应为32000或者65000');
  185. }
  186. DB::beginTransaction();
  187. try {
  188. $data = EnergyPlatformBot::where('rid', $request->rid)->first();
  189. $data->is_open_bishu = $request->is_open_bishu;
  190. $data->per_bishu_usdt_price = $request->per_bishu_usdt_price;
  191. $data->per_bishu_energy_quantity = $request->per_bishu_energy_quantity;
  192. $data->per_energy_day_bishu = $request->per_energy_day_bishu;
  193. $data->bishu_recovery_type = $request->bishu_recovery_type;
  194. $data->bishu_daili_type = $request->bishu_daili_type;
  195. $data->save();
  196. DB::commit();
  197. return $this->responseData(200, '更新成功');
  198. } catch (\Exception $e) {
  199. DB::rollBack();
  200. return $this->responseData(400, '更新失败'.$e->getMessage());
  201. }
  202. }
  203. }