SendTimingTgMessage.php 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. <?php
  2. namespace App\Task;
  3. use App\Model\Transit\TransitWalletCoin;
  4. use App\Model\Telegram\TelegramBotAd;
  5. use App\Model\Telegram\TelegramBotAdKeyboard;
  6. use App\Model\Telegram\TelegramBotUser;
  7. use App\Library\Log;
  8. class SendTimingTgMessage
  9. {
  10. public function execute()
  11. {
  12. try {
  13. $time = nowDate();
  14. $data = TelegramBotAd::from('telegram_bot_ad as a')
  15. ->Join('telegram_bot as b','a.bot_rid','b.rid')
  16. ->where('a.status',0)
  17. ->select('a.rid','b.bot_token','a.last_notice_time','a.notice_cycle','a.notice_obj','a.notice_ad','a.bot_rid','a.notice_photo','b.bot_username','b.bot_admin_username')
  18. ->get();
  19. if($data->count() > 0){
  20. foreach ($data as $k => $v) {
  21. //通知周期: "1" => "每分钟", "2" => "每10分钟", "3" => "每30分钟", "4" => "每小时", "6" => "每3小时", "7" => "每6小时", "8" => "每12小时", "5" => "每天(24小时)",
  22. //"9" => "每2天", "10" => "每5天", "11" => "每10天", "12" => "每15天", "13" => "每20天", "14" => "每30天", "15" => "每60天", "16" => "每90天", "17" => "每180天"
  23. $notice_cycle = $v->notice_cycle;
  24. $send = 'N';
  25. //每分钟,且上次通知已过了一分钟
  26. if($notice_cycle == 1 && strtotime($v->last_notice_time) + 60 <= strtotime($time)){
  27. $send = 'Y';
  28. //每10分钟
  29. }elseif($notice_cycle == 2 && strtotime($v->last_notice_time) + 600 <= strtotime($time)){
  30. $send = 'Y';
  31. //每30分钟
  32. }elseif($notice_cycle == 3 && strtotime($v->last_notice_time) + 1800 <= strtotime($time)){
  33. $send = 'Y';
  34. //每小时
  35. }elseif($notice_cycle == 4 && strtotime($v->last_notice_time) + 3600 <= strtotime($time)){
  36. $send = 'Y';
  37. //每天
  38. }elseif($notice_cycle == 5 && strtotime($v->last_notice_time) + 86400 <= strtotime($time)){
  39. $send = 'Y';
  40. //每3小时
  41. }elseif($notice_cycle == 6 && strtotime($v->last_notice_time) + 10800 <= strtotime($time)){
  42. $send = 'Y';
  43. //每6小时
  44. }elseif($notice_cycle == 7 && strtotime($v->last_notice_time) + 21600 <= strtotime($time)){
  45. $send = 'Y';
  46. //每12小时
  47. }elseif($notice_cycle == 8 && strtotime($v->last_notice_time) + 43200 <= strtotime($time)){
  48. $send = 'Y';
  49. //每2天
  50. }elseif($notice_cycle == 9 && strtotime($v->last_notice_time) + 172800 <= strtotime($time)){
  51. $send = 'Y';
  52. //每5天
  53. }elseif($notice_cycle == 10 && strtotime($v->last_notice_time) + 432000 <= strtotime($time)){
  54. $send = 'Y';
  55. //每10天
  56. }elseif($notice_cycle == 11 && strtotime($v->last_notice_time) + 864000 <= strtotime($time)){
  57. $send = 'Y';
  58. //每15天
  59. }elseif($notice_cycle == 12 && strtotime($v->last_notice_time) + 1296000 <= strtotime($time)){
  60. $send = 'Y';
  61. //每20天
  62. }elseif($notice_cycle == 13 && strtotime($v->last_notice_time) + 1728000 <= strtotime($time)){
  63. $send = 'Y';
  64. //每30天
  65. }elseif($notice_cycle == 14 && strtotime($v->last_notice_time) + 2592000 <= strtotime($time)){
  66. $send = 'Y';
  67. //每60天
  68. }elseif($notice_cycle == 15 && strtotime($v->last_notice_time) + 5184000 <= strtotime($time)){
  69. $send = 'Y';
  70. //每90天
  71. }elseif($notice_cycle == 16 && strtotime($v->last_notice_time) + 7776000 <= strtotime($time)){
  72. $send = 'Y';
  73. //每180天
  74. }elseif($notice_cycle == 17 && strtotime($v->last_notice_time) + 15552000 <= strtotime($time)){
  75. $send = 'Y';
  76. }
  77. #过了周期
  78. if($send == 'Y'){
  79. #查询键盘,放入
  80. $keyboardList = TelegramBotAdKeyboard::from('telegram_bot_ad_keyboard as a')
  81. ->join('telegram_bot_keyboard as b','a.keyboard_rid','b.rid')
  82. ->where('a.bot_rid', $v->bot_rid)
  83. ->where('a.ad_rid', $v->rid)
  84. ->where('b.status', 0)
  85. ->select('b.keyboard_name','b.keyboard_type','b.inline_type','b.keyboard_value')
  86. ->orderBy('b.seq_sn','desc')
  87. ->get();
  88. $keyboard = [];
  89. $is_keyboard = 'N';
  90. //有键盘的时候显示
  91. if($keyboardList->count() > 0){
  92. $keyboardone = [];
  93. $keyboardtwo = [];
  94. $keyboardthree = [];
  95. $keyboard = [];
  96. $s = 0;
  97. foreach ($keyboardList as $ka => $va) {
  98. //键盘
  99. if($va->keyboard_type == 1){
  100. if(count($keyboardone) == 3){
  101. if(count($keyboardtwo) == 3){
  102. array_push($keyboardthree,$va->keyboard_name);
  103. }else{
  104. array_push($keyboardtwo,$va->keyboard_name);
  105. }
  106. }else{
  107. array_push($keyboardone,$va->keyboard_name);
  108. }
  109. //内联按钮
  110. }else{
  111. //url
  112. if($va->inline_type == 1){
  113. $keyboardone['text'] = $va->keyboard_name;
  114. $keyboardone['url'] = $va->keyboard_value;
  115. //回调
  116. }else{
  117. $keyboardone['text'] = $va->keyboard_name;
  118. $keyboardone['callback_data'] = $va->keyboard_value;
  119. }
  120. if(!empty($keyboard)){
  121. if(count($keyboard[$s]) == 2){
  122. $s++;
  123. }
  124. }
  125. $keyboard[$s][] = $keyboardone;
  126. $keyboardone = [];
  127. }
  128. }
  129. //键盘
  130. if($va->keyboard_type == 1){
  131. array_push($keyboard,$keyboardone);
  132. array_push($keyboard,$keyboardtwo);
  133. array_push($keyboard,$keyboardthree);
  134. $reply_markup = [
  135. 'keyboard' => $keyboard,
  136. 'resize_keyboard' => true, //设置为true键盘不会那么高
  137. 'one_time_keyboard' => false
  138. ];
  139. //内联按钮
  140. }else{
  141. $reply_markup = [
  142. 'inline_keyboard' => $keyboard
  143. ];
  144. }
  145. $encodedKeyboard = json_encode($reply_markup);
  146. $is_keyboard = 'Y';
  147. }
  148. $save_data = [];
  149. $save_data['last_notice_time'] = $time;
  150. TelegramBotAd::where('rid',$v->rid)->update($save_data);
  151. $bot_token = $v->bot_token;
  152. $notice_obj = $v->notice_obj; #多个逗号隔开
  153. //定时通知的消息
  154. $replytext = $v->notice_ad;
  155. $replyphoto = $v->notice_photo;
  156. if (strpos($replytext, 'trxusdtrate') !== false || strpos($replytext, 'trxusdtwallet') !== false || strpos($replytext, 'tgbotadmin') !== false || strpos($replytext, 'trxusdtshownotes') !== false || strpos($replytext, 'tgbotname') !== false || strpos($replytext, 'trx10usdtrate') !== false || strpos($replytext, 'trx100usdtrate') !== false || strpos($replytext, 'trx1000usdtrate') !== false) {
  157. //替换变量
  158. $walletcoin = TransitWalletCoin::from('transit_wallet_coin as a')
  159. ->join('transit_wallet as b','a.transit_wallet_id','b.rid')
  160. ->where('b.bot_rid', $v->bot_rid)
  161. ->where('in_coin_name','usdt')
  162. ->where('out_coin_name','trx')
  163. ->select('a.exchange_rate','b.receive_wallet','b.show_notes')
  164. ->first();
  165. if(!empty($walletcoin)){
  166. $paraData = [
  167. 'trxusdtrate' => $walletcoin->exchange_rate,
  168. 'trxusdtwallet' => $walletcoin->receive_wallet,
  169. 'tgbotadmin' => $v->bot_admin_username,
  170. 'trxusdtshownotes' => $walletcoin->show_notes,
  171. 'tgbotname' => '@' . $v->bot_username,
  172. 'trx10usdtrate' => bcmul($walletcoin->exchange_rate, 10, 2) + 0,
  173. 'trx100usdtrate' => bcmul($walletcoin->exchange_rate, 100, 2) + 0,
  174. 'trx1000usdtrate' => bcmul($walletcoin->exchange_rate, 1000, 2) + 0,
  175. ];
  176. //检查参数是否匹配
  177. preg_match_all('/\${.*?}/', $replytext, $matches);
  178. $params = $matches[0];
  179. $values = [];
  180. foreach ($params as $param) {
  181. $key = str_replace(['${', '}'], '', $param);
  182. if(isset($paraData[$key])){
  183. $values[$param] = $paraData[$key];
  184. }
  185. }
  186. $replytext = strtr($replytext, $values);
  187. //替换结束
  188. }
  189. }
  190. $receivelist = explode(',',$notice_obj);
  191. foreach ($receivelist as $x => $y) {
  192. //如果是群发给所有用户
  193. if($y == 888){
  194. $botUser = TelegramBotUser::where('bot_rid',$v->bot_rid)->where('status',1)->get(); //取关注中的用户
  195. if($botUser->count() > 0){
  196. foreach ($botUser as $ka => $va) {
  197. if(!empty($replyphoto)){
  198. //调用官方方法
  199. if($is_keyboard == 'Y'){
  200. $data = [
  201. 'chat_id' => $va->tg_uid,
  202. 'photo' => $replyphoto,
  203. 'caption' => $replytext,
  204. 'parse_mode' => 'HTML',
  205. 'reply_markup' => $encodedKeyboard
  206. ];
  207. }else{
  208. $data = [
  209. 'chat_id' => $va->tg_uid,
  210. 'photo' => $replyphoto,
  211. 'caption' => $replytext,
  212. 'parse_mode' => 'HTML'
  213. ];
  214. }
  215. $urlString = "https://api.telegram.org/bot$bot_token/sendPhoto";
  216. $response = post_multi($urlString,$data);
  217. }else{
  218. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$va->tg_uid.'&text='.urlencode($replytext).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  219. Get_Pay($sendmessageurl);
  220. }
  221. }
  222. }
  223. }else{
  224. if(!empty($replyphoto)){
  225. //调用官方方法
  226. if($is_keyboard == 'Y'){
  227. $data = [
  228. 'chat_id' => $y,
  229. 'photo' => $replyphoto,
  230. 'caption' => $replytext,
  231. 'parse_mode' => 'HTML',
  232. 'reply_markup' => $encodedKeyboard
  233. ];
  234. }else{
  235. $data = [
  236. 'chat_id' => $y,
  237. 'photo' => $replyphoto,
  238. 'caption' => $replytext,
  239. 'parse_mode' => 'HTML'
  240. ];
  241. }
  242. $urlString = "https://api.telegram.org/bot$bot_token/sendPhoto";
  243. $response = post_multi($urlString,$data);
  244. }else{
  245. $sendmessageurl = 'https://api.telegram.org/bot'.$v->bot_token.'/sendMessage?chat_id='.$y.'&text='.urlencode($replytext).'&parse_mode=HTML&reply_markup='.urlencode($encodedKeyboard);
  246. Get_Pay($sendmessageurl);
  247. }
  248. }
  249. }
  250. }
  251. }
  252. }
  253. }catch (\Exception $e){
  254. $this->log('sendtimingtgmessage','----------任务执行报错,请联系管理员。报错原因:----------'.$e->getMessage());
  255. }
  256. }
  257. /**
  258. * 记入日志
  259. * @param $log_title [日志路径]
  260. * @param $message [内容,不支持数组]
  261. * @param $remarks [备注]
  262. */
  263. protected function log($log_title,$message,$remarks='info'){
  264. Log::get($remarks,$log_title)->info($message);
  265. }
  266. }