Timedtask.php 7.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. <?php
  2. namespace app\api\controller;
  3. use think\Db;
  4. use think\Exception;
  5. /**
  6. * @title 定时任务
  7. * Class Timedtask
  8. * @controller Timedtask
  9. */
  10. class Timedtask
  11. {
  12. /**
  13. * @title 每天早上
  14. * @desc 每天7-16点,没10秒造一次假数据
  15. * @author Gavin
  16. * @url /index.php/api/Timedtask/SetFakeDate
  17. * @method GET
  18. */
  19. public function SetFakeDate(){
  20. $day = 3;
  21. $date_array = Db::name('system_values')
  22. ->group('date')
  23. ->order('date desc')
  24. ->limit($day)
  25. ->column('date');
  26. $kd = Db::name('system_kd')->select();
  27. foreach ($kd as &$v){
  28. if (in_array($v['name'],['中通','申通'])){
  29. $va = Db::name('system_values2')
  30. ->whereIn('date',$date_array)
  31. ->where('name',$v['name'])
  32. ->sum('value') ? : 0;
  33. if ($va>0){
  34. $v['value'] = ceil(bcdiv($va,$day));
  35. }
  36. }else{
  37. $va1 = Db::name('system_values')
  38. ->whereIn('date',$date_array)
  39. ->where('name',$v['name'])
  40. ->sum('value') ? : 0;
  41. if ($va1>0){
  42. $va1 = ceil(bcdiv($va1,$day));
  43. }
  44. $va2 = Db::name('system_values2')
  45. ->whereIn('date',$date_array)
  46. ->where('name',$v['name'])
  47. ->sum('value') ? : 0;
  48. if ($va2>0){
  49. $va2 = ceil(bcdiv($va2,$day));
  50. }
  51. $v['value'] = ceil(bcadd($va1,$va2));
  52. }
  53. }
  54. $all = array_sum(array_column($kd,'value'));
  55. $date = date('Y-m-d');
  56. $info = Db::name('system_day')->where('date',$date)->count();
  57. if (!$info){
  58. Db::name('system_day')->insertGetId(
  59. [
  60. 'date'=>$date,
  61. 'all_value'=>$all,
  62. 'now_value'=>$all
  63. ]
  64. );
  65. foreach ($kd as &$v){
  66. Db::name('system_day_fake')->insert(
  67. [
  68. 'name'=>$v['name'],
  69. 'date'=>$date,
  70. 'rate'=>$v['value']
  71. ]
  72. );
  73. }
  74. }
  75. }
  76. /**
  77. * @title 一个小时获取一次天气
  78. * @desc 一个小时获取一次天气
  79. * @author Gavin
  80. * @url /index.php/api/Timedtask/GetWeather
  81. * @method GET
  82. */
  83. public function GetWeather(){
  84. $info = Db::name('system_day')->where('date',date('Y-m-d'))->find();
  85. if ($info){
  86. //使用聚合天气api
  87. $url = "http://apis.juhe.cn/simpleWeather/query?city=富平&key=1f7300e5c17ba2e584c9a1cd39553148";
  88. $result = file_get_contents($url);
  89. if ($result){
  90. $weather = json_decode($result,true);
  91. if ($weather['error_code']==0){
  92. $this_day_weather = $weather['result']['future'][0]['weather'];
  93. Db::name('system_day')->where('id',$info['id'])->update(['weather_json'=>$result,'weather'=>$this_day_weather]);
  94. }
  95. }
  96. }
  97. }
  98. /**
  99. * @title 每天7-10点,14-16:30,没5秒造一次假数据
  100. * @desc 每天7-10点,14-16:30,没5秒造一次假数据
  101. * @author Gavin
  102. * @url /index.php/api/Timedtask/SetFake
  103. * @method GET
  104. */
  105. public function SetFake(){
  106. $now_hour = date('H');
  107. $min = date('i');
  108. if (($now_hour>=7 && $now_hour<10) || ($now_hour>=14 && $now_hour<17)){
  109. if ($now_hour==16 && $min>30){
  110. die();
  111. }
  112. $all = Db::name('system_day')->where('date',date('Y-m-d'))->value('all_value');
  113. $now_time = date('Y-m-d 07:00:00');
  114. $end_time = date('Y-m-d 10:00:00');
  115. $now_time1 = date('Y-m-d 14:00:00');
  116. $end_time1 = date('Y-m-d 16:30:00');
  117. $strto = (strtotime($end_time)-strtotime($now_time))+(strtotime($end_time1)-strtotime($now_time1));
  118. $num = ceil($all/($strto/7));
  119. $num_array =array();
  120. for ($i=$num-3;$i<=$num+3;$i++){
  121. if ($i>0){
  122. array_push($num_array,$i);
  123. }
  124. }
  125. $kd = Db::name('system_day_fake')
  126. ->where('rate','gt',0)
  127. ->where('date',date('Y-m-d'))
  128. ->field('id,name,rate')
  129. ->select();
  130. foreach ($kd as $key => $val) {
  131. $arr[$val['id']] = $val['rate'];//概率数组
  132. }
  133. $rid = get_rand($arr); //根据概率获取id
  134. $value = $num_array[array_rand($num_array)];
  135. Db::startTrans();
  136. Db::name('system_day_fake')->where('id',$rid)->setInc('value',$value);
  137. Db::name('system_day')->where('date',date('Y-m-d'))->setDec('now_value',$value);
  138. Db::name('system_day_fake')->where('id',$rid)->setDec('rate',$value);
  139. Db::commit();
  140. // file_put_contents("timelog.txt", $value. "\n" . "\n", FILE_APPEND);
  141. }
  142. }
  143. /**
  144. * @title 每天7-16点,没5秒造一次假数据
  145. * @desc 每天7-16点,没5秒造一次假数据
  146. * @author Gavin
  147. * @url /index.php/api/Timedtask/SetFake
  148. * @method GET
  149. */
  150. public function SetFake2(){
  151. $now_hour = date('H');
  152. $min = date('i');
  153. if (($now_hour>7 && $now_hour<10) || ($now_hour>14 && $now_hour<17)){
  154. if ($now_hour==16 && $min>30){
  155. die();
  156. }
  157. $all = Db::name('system_day')->where('date',date('Y-m-d'))->value('now_value');
  158. if ($all>0){
  159. $now_time = date('Y-m-d 07:00:00');
  160. $end_time = date('Y-m-d 10:00:00');
  161. $now_time1 = date('Y-m-d 14:00:00');
  162. $end_time1 = date('Y-m-d 16:30:00');
  163. $strto = (strtotime($end_time)-strtotime($now_time))+(strtotime($end_time1)-strtotime($now_time1));
  164. $num = ceil($all/($strto/5));
  165. echo $num;die;
  166. $num_array =array();
  167. for ($i=$num-2;$i<=$num+2;$i++){
  168. if ($i>0){
  169. array_push($num_array,$i);
  170. }
  171. }
  172. $kd = Db::name('system_day_fake')
  173. ->where('rate','gt',0)
  174. ->where('date',date('Y-m-d'))
  175. ->field('id,name,rate')
  176. ->select();
  177. foreach ($kd as $key => $val) {
  178. $arr[$val['id']] = $val['rate'];//概率数组
  179. }
  180. $rid = get_rand($arr); //根据概率获取id
  181. $value = $num_array[array_rand($num_array)];
  182. Db::startTrans();
  183. Db::name('system_day_fake')->where('id',$rid)->setInc('value',$value);
  184. Db::name('system_day')->where('date',date('Y-m-d'))->setDec('now_value',$value);
  185. Db::name('system_day_fake')->where('id',$rid)->setDec('rate',$value);
  186. Db::commit();
  187. }
  188. }
  189. }
  190. }