KeyreplyController.php 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php
  2. namespace App\Http\Controllers\Admin\Telegram;
  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\Telegram\TelegramBotKeyreply;
  9. use App\Models\Telegram\TelegramBotKeyreplyKeyboard;
  10. use Telegram\Bot\Api;
  11. use App\Http\Controllers\Admin\Setting\ConfigController;
  12. class KeyreplyController extends Controller
  13. {
  14. public $KeyreplyStatus = ['启用','禁用'];
  15. public $KeyreplyKeytype = ["1" => "消息内容", "2" => "入群通知"];
  16. public $KeyreplyOpttype = ["1" => "回复消息(通用)", "2" => "回复ID", "3" => "回复消息(通用)+能量按钮(闪租套餐)", "4" => "回复消息(私聊)+会员按钮", "5" => "回复消息(私聊)+充值按钮", "6" => "回复消息(私聊)+监控按钮", "7" => "回复消息(私聊)+商品按钮", "8" => "回复消息(私聊)+个人中心", "9" => "回复消息(通用)+欧意汇率", "10" => "回复消息(通用)+能量按钮(笔数套餐)", "11" => "回复消息(通用)+能量按钮(智能托管)"];
  17. public function index(Request $request)
  18. {
  19. $KeyreplyStatus = $this->KeyreplyStatus;
  20. $KeyreplyKeytype = $this->KeyreplyKeytype;
  21. $KeyreplyOpttype = $this->KeyreplyOpttype;
  22. $botData = TelegramBot::pluck('bot_username','rid');
  23. return view('admin.telegram.keyreply.index',compact("KeyreplyStatus","KeyreplyKeytype","KeyreplyOpttype","botData"));
  24. }
  25. //列表
  26. public function getData(Request $request)
  27. {
  28. $model = TelegramBotKeyreply::from('telegram_bot_keyreply as a')
  29. ->join('telegram_bot as b','a.bot_rid','b.rid')
  30. ->where(function($query) use ($request){
  31. if ($request->monitor_word != '') {
  32. $query->where('a.monitor_word', 'like' ,"%" . $request->monitor_word ."%");
  33. }
  34. if ($request->bot_rid != '') {
  35. $query->where('a.bot_rid', $request->bot_rid);
  36. }
  37. });
  38. $count = $model->count();
  39. $limit = $request->limit ?? 15;
  40. $offset = $request->page ? ($request->page - 1) * $limit : 0;
  41. $data = $model->limit($limit)->offset($offset)->select('a.*','b.bot_token','b.bot_firstname','b.bot_username')->orderBy('a.rid','desc')->get();
  42. $keys = ["Keytype" => $this->KeyreplyKeytype, "Opttype" => $this->KeyreplyOpttype];
  43. $data = $data->map(function($query) use ($keys){
  44. $query->key_type_val = $keys["Keytype"][$query->key_type];
  45. $query->opt_type_val = $keys["Opttype"][$query->opt_type];
  46. return $query;
  47. });
  48. return ['code' => '0', 'data' => $data, 'count' => $count];
  49. }
  50. //添加
  51. public function add(Request $request)
  52. {
  53. $data = TelegramBotKeyreply::where('bot_rid', $request->bot_rid)->where('monitor_word', $request->monitor_word)->first();
  54. if(!empty($data)){
  55. return $this->responseData(400, '机器人回复关键字已存在');
  56. }
  57. $res = TelegramBotKeyreply::create([
  58. 'bot_rid' => $request->bot_rid,
  59. 'key_type' => $request->key_type,
  60. 'monitor_word' => $request->monitor_word,
  61. 'reply_photo' => '',
  62. 'reply_content' => $request->reply_content ?? '--',
  63. 'opt_type' => $request->opt_type,
  64. 'create_time' => nowDate()
  65. ]);
  66. return $res ? $this->responseData(200, '添加成功') : $this->responseData(400, '添加失败');
  67. }
  68. //删除
  69. public function delete(Request $request)
  70. {
  71. $data = TelegramBotKeyreplyKeyboard::where('keyreply_rid', $request->rid);
  72. if($data->count() > 0){
  73. return $this->responseData(400, '请先删除关键字键盘');
  74. }
  75. $res = TelegramBotKeyreply::where('rid', $request->rid)->delete();
  76. return $res ? $this->responseData(200, '删除成功') : $this->responseData(400, '删除失败');
  77. }
  78. //编辑
  79. public function update(Request $request, ConfigController $upload)
  80. {
  81. $data = TelegramBotKeyreply::where('bot_rid', $request->bot_rid)->where('monitor_word', $request->monitor_word)->where('rid','<>',$request->rid)->first();
  82. if(!empty($data)){
  83. return $this->responseData(400, '机器人回复关键字已存在');
  84. }
  85. $data = TelegramBotKeyreply::where('rid', $request->rid)->first();
  86. if(empty($data)){
  87. return $this->responseData(400, '数据不存在');
  88. }
  89. if(!empty($request->file('thumb'))){
  90. $filedata = $upload->uploadfile($request->file('thumb'), 'news');
  91. $fileurl = $filedata['data']['url'];
  92. }else{
  93. $fileurl = $data->reply_photo;
  94. }
  95. DB::beginTransaction();
  96. try {
  97. $data->monitor_word = $request->monitor_word;
  98. $data->reply_photo = $fileurl;
  99. $data->reply_content = $request->reply_content ?? '--';
  100. $data->key_type = $request->key_type;
  101. $data->opt_type = $request->opt_type;
  102. $data->update_time = nowDate();
  103. $data->save();
  104. DB::commit();
  105. return $this->responseData(200, '更新成功');
  106. } catch (\Exception $e) {
  107. DB::rollBack();
  108. return $this->responseData(400, '更新失败'.$e->getMessage());
  109. }
  110. }
  111. //编辑状态
  112. public function change_status(Request $request)
  113. {
  114. DB::beginTransaction();
  115. try {
  116. $data = TelegramBotKeyreply::where('rid', $request->rid)->first();
  117. $data->status = $request->status == 1 ? 0 : 1;
  118. $data->save();
  119. DB::commit();
  120. return $this->responseData(200, '更新成功');
  121. } catch (\Exception $e) {
  122. DB::rollBack();
  123. return $this->responseData(400, '更新失败'.$e->getMessage());
  124. }
  125. }
  126. // 编辑页面查看
  127. public function show(Request $request)
  128. {
  129. $KeyreplyStatus = $this->KeyreplyStatus;
  130. $KeyreplyKeytype = $this->KeyreplyKeytype;
  131. $KeyreplyOpttype = $this->KeyreplyOpttype;
  132. $botData = TelegramBot::pluck('bot_token','rid');
  133. $data = TelegramBotKeyreply::from('telegram_bot_keyreply as a')
  134. ->join('telegram_bot as b','a.bot_rid','b.rid')
  135. ->where('a.rid',$request->rid)
  136. ->select('a.*','b.bot_token','b.bot_firstname','b.bot_username')
  137. ->first();
  138. return view('admin.telegram.keyreply.edit',compact("KeyreplyStatus","KeyreplyKeytype","KeyreplyOpttype","botData","data"));
  139. }
  140. //复制
  141. public function copyPaste(Request $request)
  142. {
  143. if(empty($request->copy_bot_rid) || empty($request->paste_bot_rid)){
  144. return $this->responseData(400, '覆盖和来源机器人必填');
  145. }
  146. if($request->copy_bot_rid == $request->paste_bot_rid){
  147. return $this->responseData(400, '覆盖和来源机器人不能一致');
  148. }
  149. $copyData = TelegramBot::where('rid', $request->copy_bot_rid)->first();
  150. if(empty($copyData)){
  151. return $this->responseData(400, '来源机器人不存在');
  152. }
  153. $pasteData = TelegramBot::where('rid', $request->paste_bot_rid)->first();
  154. if(empty($pasteData)){
  155. return $this->responseData(400, '覆盖机器人不存在');
  156. }
  157. $data = TelegramBotKeyreply::where('bot_rid', $request->copy_bot_rid)->get();
  158. if($data->count() == 0){
  159. return $this->responseData(400, '来源机器人无数据可复制');
  160. }
  161. DB::beginTransaction();
  162. try {
  163. TelegramBotKeyreply::where('bot_rid', $request->paste_bot_rid)->delete();
  164. TelegramBotKeyreplyKeyboard::where('bot_rid', $request->paste_bot_rid)->delete();
  165. TelegramBotKeyreply::insertUsing([
  166. 'bot_rid', 'key_type', 'monitor_word', 'reply_photo','reply_content','opt_type','status','create_time'
  167. ], TelegramBotKeyreply::selectRaw(
  168. "$request->paste_bot_rid, key_type, monitor_word, reply_photo, reply_content, opt_type, status, sysdate()"
  169. )->where('bot_rid', $request->copy_bot_rid));
  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. }