DataLogic.php 77 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Administrator
  5. * Date: 2019/6/26
  6. * Time: 17:10
  7. */
  8. namespace App\Logic;
  9. use datainf\pplus\Instance;
  10. use App\Http\Response\Response;
  11. use App\Lib\ModelBase;
  12. use Illuminate\Database\Capsule\Manager as DB;
  13. use App\Lib\Biz\Sport\Common as commonFunction;
  14. use App\Http\Model\StBqResult as BqResultModel;
  15. use App\Http\Model\StBroadcast as broadcastModel;
  16. use App\Http\Model\StGameType as gameModel;
  17. use App\Http\Model\StLqResult as LqResultModel;
  18. use App\Http\Model\StWqResult as WqResultModel;
  19. use App\Http\Model\StZqLocalLeague as LeagueModel;
  20. use App\Http\Model\StZqLocalMatch as MatchModel;
  21. use App\Http\Model\StZqOdds as OddsModel;
  22. use App\Http\Model\StZqOddsRecord as OddsRecordModel;
  23. use App\Http\Model\StZqResult as ZqResultModel;
  24. use App\Http\Model\St_area_country as StAreaCountryModel;
  25. use App\Http\Model\St_set_sports_record as St_set_sports_recordModel;
  26. use App\Http\Model\St_team as StTeamModel;
  27. class DataLogic
  28. {
  29. use Instance;
  30. private $isRecord = 0;
  31. /*
  32. * 写 联赛 数据
  33. * 每个请求 包含 N个联赛
  34. */
  35. public function setLeague($data)
  36. {
  37. try {
  38. //开启事务
  39. DB::beginTransaction();
  40. $obt = $data['data'];
  41. //请求 数据 为空
  42. if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
  43. $getData = $this->getAddData($obt);
  44. //不是 联赛 数据
  45. if ($getData['title'] != 'league') throw new \Exception(Response::generate('不是联赛数据,', Response::ABNORMAL));
  46. /*
  47. //写请求数据 日志记录
  48. if($this->isRecord){
  49. commonFunction::SET_SPORTS_RECORD($obt,$getData['title']);
  50. $setSportsRecord = St_set_sports_recordModel::setSportsRecord($getData['title'],$obt,$getData);
  51. if($setSportsRecord < 1) throw new \Exception(Response::generate('',Response::SPORTS_RECORD_ERR));
  52. }
  53. */
  54. //获取球类代码
  55. $game_code = $getData['game_code'];
  56. //获取数据源
  57. $source = $getData['source'];
  58. //获取球类名称
  59. $gameName = gameModel::getGameName($game_code);
  60. //获取 model
  61. $models = commonFunction::getModels($game_code, 1);
  62. //获取 联赛 数据
  63. $leagueData = $getData['data'];
  64. //获取 当前请求 所有 联赛 uuid
  65. $identity = [];
  66. foreach ($leagueData as $k => $v) {
  67. $identity[] = $v['uuid'];
  68. }
  69. $identity = array_unique($identity);
  70. sort($identity);
  71. //获取 本地 已存在 联赛
  72. $l_lg_data = $models['model_local_league']::whereIn('identity', $identity)->select('identity', 'lg_id')->get()->toArray();
  73. //二维数组去重
  74. $l_lg_data = commonFunction::uniquArrV2($l_lg_data, 'identity');
  75. //循环对比 请求identity->本地identity
  76. foreach ($l_lg_data as $k => $v) {
  77. foreach ($identity as $kk => $uuid) {
  78. if ($v['identity'] == $uuid) {
  79. unset($identity[$kk]);
  80. }
  81. }
  82. }
  83. //去除本地和请求里都存在的联赛,如果还有剩余联赛uuid,则将其写入
  84. if (!empty($identity)) {
  85. //没有 决赛时间 默认获取本年最后一天
  86. $last_time = date('Y-12-31 23:59:59');
  87. foreach ($leagueData as $k => $v) {
  88. foreach ($identity as $kk => $uuid) {
  89. if ($v['uuid'] == $uuid) {
  90. //如有 决赛时间
  91. if ($v['last_time']) {
  92. $last_time = $v['last_time'];
  93. }
  94. //获取联赛所属国家或地区
  95. $getArea = $this->getArea($v['name_chinese']);
  96. if ($getArea['pid'] == 0) {
  97. $area_id = $getArea['id'];
  98. $country_id = 0;
  99. } else {
  100. $area_id = $getArea['pid'];
  101. $country_id = $getArea['id'];
  102. }
  103. if (empty($v['uuid'])) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $v['lg_id'] . ';', Response::LG__UUID_NULL));
  104. $set_lg['name_chinese'] = $v['name_chinese'];
  105. $set_lg['kind'] = $v['kind'];
  106. $set_lg['match_mode'] = $v['match_mode'];
  107. $set_lg['if_stop'] = $v['if_stop'];
  108. $set_lg['identity'] = $v['uuid'];
  109. $set_lg['last_time'] = $last_time;
  110. $set_lg['utime'] = date('Y-m-d H:i:s');
  111. $set_lg['area_id'] = $area_id ?: 247;
  112. $set_lg['country_id'] = $country_id ?: 0;
  113. //写入联赛
  114. $id = $models['model_league']::insertGetId($set_lg);
  115. $m_lg_id = $id;
  116. if ($m_lg_id < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $v['lg_id'] . ';', Response::INSERT_ERROR));
  117. //写入 本地 联赛记录
  118. $set_local = [
  119. 'lg_id' => $id,
  120. 'others_lg_id' => $v['lg_id'],
  121. 'source' => $source,
  122. 'ctime' => date('Y-m-d H:i:s'),
  123. 'identity' => $v['uuid'],
  124. ];
  125. $ret = $models['model_local_league']::insertGetId($set_local);
  126. if ($ret < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::LOCAL_LEAGUE_ERROR));//Render([], '10017', lang('Tips','Sports')->get('local_league_error'));
  127. }
  128. }
  129. }
  130. }
  131. $this->writeLog($data, Response::success());
  132. //提交事务
  133. DB::commit();
  134. return Response::success();
  135. } catch (\Exception $e) {
  136. //回滚事务
  137. DB::rollBack();
  138. $this->writeLog($data, ['file' => $e->getFile(), 'line' => $e->getLine(), 'msg' => $e->getMessage()]);
  139. return $e->getMessage();
  140. }
  141. }
  142. /*
  143. * 写 赛事 数据
  144. * 每个请求 包含 N个联赛 下 N个赛事
  145. */
  146. public function setMatch($data)
  147. {
  148. $logdata = $data;
  149. try {
  150. //开启事务
  151. DB::beginTransaction();
  152. $obt = $data['data'];
  153. //请求 数据 为空
  154. if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
  155. $getData = $this->getAddData($obt);
  156. //不是 赛事 数据
  157. if ($getData['title'] != 'match') throw new \Exception(Response::generate('不是赛事数据,', Response::ABNORMAL));
  158. /*
  159. //写请求数据 日志记录
  160. if($this->isRecord){
  161. $setSportsRecord = St_set_sports_recordModel::setSportsRecord($getData['title'],$obt,$getData);
  162. if($setSportsRecord < 1) throw new \Exception(Response::generate('',Response::SPORTS_RECORD_ERR));
  163. }
  164. */
  165. //获取球类代码
  166. $game_code = $getData['game_code'];
  167. //获取数据源
  168. $source = $getData['source'];
  169. //获取球类名称
  170. $gameName = gameModel::getGameName($game_code);
  171. //获取 model
  172. $models = commonFunction::getModels($game_code, 1);
  173. //获取 赛事 数据
  174. $matchData = $getData['data'];
  175. //获取 当前请求 所有 uuid
  176. $identity = [];
  177. $s_match_ids = [];
  178. foreach ($matchData as $k => $v) {
  179. $identity[] = $v['uuid'];
  180. $s_match_ids[] = $v['match_id'];
  181. }
  182. //====验证 赛事 所属 联赛 是否存在====
  183. $identity = array_unique($identity);
  184. sort($identity);
  185. //获取 本地 已存在 联赛
  186. $l_lg_data = $models['model_local_league']::whereIn('identity', $identity)->select('identity', 'lg_id', 'others_lg_id')->get()->toArray();
  187. //二维数组去重
  188. $l_lg_data = commonFunction::uniquArrV2($l_lg_data, 'identity');
  189. //如果获取不到本地联赛数据,则返回联赛不存在
  190. if (empty($l_lg_data)) throw new \Exception(Response::generate($gameName . '本次请求的所有赛事都没有联赛数据;', Response::LEAGUE_ERROR));
  191. //获取到本次请求,所有本地有联赛的赛事
  192. $mathData_before = $matchData;//接收原赛事
  193. $matchData = [];//获取新赛事
  194. foreach ($l_lg_data as $k => $v) {
  195. foreach ($mathData_before as $kk => $vv) {
  196. if ($v['identity'] == $vv['uuid']) {
  197. $matchData[] = $vv;
  198. }
  199. }
  200. }
  201. //获取当前请求有关联联赛的赛事 match_id
  202. $s_match_ids = [];
  203. foreach ($matchData as $k => $v) {
  204. $s_match_ids[] = $v['match_id'];
  205. }
  206. //====获取 本地 已存在 赛事====
  207. $s_match_ids = array_unique($s_match_ids);
  208. sort($s_match_ids);
  209. $l_match_data = $models['model_local_match']::whereIn('others_match_id', $s_match_ids)->where('source', $source)->select('others_match_id', 'match_id')->get()->toArray();
  210. //二维数组去重
  211. $l_match_data = commonFunction::uniquArrV2($l_match_data, 'others_match_id');
  212. //循环对比 请求match_id->本地others_match_id
  213. //如果本地有 赛事,则分别获取本地已存在/不存在赛事
  214. if (!empty($l_match_data)) {
  215. //本地已存在赛事,用于更新
  216. $matchData_y = [];
  217. foreach ($l_match_data as $k => $v) {
  218. foreach ($s_match_ids as $kk => $s_match_id) {
  219. if ($v['others_match_id'] == $s_match_id) {
  220. $matchData_y[$k]['others_match_id'] = $s_match_id;
  221. $matchData_y[$k]['match_id'] = $v['match_id'];
  222. unset($s_match_ids[$kk]);
  223. }
  224. }
  225. }
  226. sort($s_match_ids);
  227. }
  228. //如果 请求中 有本地赛事,则执行更新
  229. if (!empty($matchData_y)) {
  230. foreach ($matchData as $k => $v) {
  231. foreach ($matchData_y as $kk => $vv) {
  232. if ($v['match_id'] == $vv['others_match_id']) {
  233. $data = $v;
  234. $up_match = [];
  235. $up_match['utime'] = date('Y-m-d H:i:s');
  236. $up_match['status'] = $data['status'];
  237. //获取需更新字段
  238. if ($data['is_rollball'] == 1) {
  239. $up_match['is_rollball'] = $data['is_rollball'];
  240. }
  241. if ($data['is_today'] == 1) {
  242. $up_match['is_today'] = $data['is_today'];
  243. }
  244. if ($data['is_morningplate'] == 1) {
  245. $up_match['is_morningplate'] = $data['is_morningplate'];
  246. }
  247. if ($data['is_stringscene'] == 1) {
  248. $up_match['is_stringscene'] = $data['is_stringscene'];
  249. }
  250. //追加更新开赛日期/时间
  251. $up_match['match_date'] = $data['match_date'];
  252. $up_match['match_time'] = $data['match_time'];
  253. $up_match['us_time'] = $data['us_time'];
  254. //如果是网球 追加rule 字段
  255. if ($game_code == 'wq' and !empty($data['rule'])) {
  256. $up_match['rule'] = $data['rule'];
  257. }
  258. //更新赛事 返回成功数量
  259. $set = $models['model_match']::where(['id' => $vv['match_id']])
  260. ->update($up_match);
  261. if ($set < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::UPSTATUS_ERROR));
  262. }
  263. }
  264. }
  265. }
  266. //剩余 赛事 数据 写入
  267. if (!empty($s_match_ids)) {
  268. foreach ($matchData as $k => $v) {
  269. foreach ($s_match_ids as $kk => $s_match_id) {
  270. if ($v['match_id'] == $s_match_id) {
  271. $data = $v;
  272. $half_match_id = $v['half_match_id'];
  273. //获取 本地 联赛 ID
  274. //验证本赛事是否有数据源lg_id
  275. if (empty($data['lg_id'])) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::S_LG_ID_NULL));
  276. $lg_id = commonFunction::searcharray($data['uuid'], 'identity', $l_lg_data, 'lg_id');
  277. //验证 本赛事是否获取到本地lg_id
  278. if (empty($lg_id)) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::L_LG_ID_NULL));
  279. //如果赛事没有开始日期,则为冠军盘口赛事
  280. if (empty($data['match_date'])) {
  281. //冠军盘口赛事获取所属联赛结束时间
  282. $last_time = $models['model_league']::where(['id' => $lg_id])
  283. ->value('last_time');
  284. if (empty($last_time)) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::LG_LASTTIME_ERROR));//Render([], '10023', lang('Tips','Sports')->get('lg_lastTime_error'));
  285. //给冠军盘口赛事 赋值时间
  286. $time = strtotime($last_time);
  287. $data['match_date'] = date('Y-m-d', $time);
  288. $data['match_time'] = date('H:i:s', $time);
  289. }
  290. $set_match = [
  291. 'ctime' => date('Y-m-d H:i:s'),
  292. 'utime' => date('Y-m-d H:i:s'),
  293. 'expire_time' => date('Y-m-d H:i:s', time() + 60),
  294. 'home_team' => $data['home_team'] ?: '',
  295. 'guest_team' => $data['guest_team'] ?: 'no_team',
  296. 'lg_id' => $lg_id,
  297. 'status' => $data['status'],
  298. 'match_date' => $data['match_date'] ?: date('Y-m-d'),
  299. 'match_time' => $data['match_time'] ?: date('H:i:s'),
  300. 'is_rollball' => $data['is_rollball'] ?: 0,
  301. 'is_today' => $data['is_today'] ?: 0,
  302. 'is_morningplate' => $data['is_morningplate'] ?: 0,
  303. 'is_stringscene' => $data['is_stringscene'] ?: 0,
  304. 'us_time' => $data['us_time'] ?: commonFunction::qgmdate('Y-m-d H:i:s', '', -4),
  305. 'half_match_id' => $half_match_id ?: 0,
  306. 'identity' => $data['uuid'],
  307. ];
  308. //如果是网球 追加rule 字段
  309. if ($game_code == 'wq') {
  310. $set_match['rule'] = $data['rule'];
  311. }
  312. //写入赛事 返回id
  313. $id = $models['model_match']::insertGetId($set_match);
  314. if ($id < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::INSERT_ERROR));
  315. //写关联记录
  316. $set_local = [
  317. 'match_id' => $id,
  318. 'others_match_id' => $data['match_id'],
  319. 'source' => $source,
  320. 'ctime' => date('Y-m-d H:i:s')
  321. ];
  322. $ret = $models['model_local_match']::insertGetId($set_local);
  323. if ($ret < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::LOCAL_MATCH_ERROR));//Render([], '10018', lang('Tips','Sports')->get('local_match_error'));
  324. //追加写球队名称
  325. $team = [
  326. 'team_h' => $data['home_team'],
  327. 'team_g' => $data['guest_team'],
  328. ];
  329. StTeamModel::setTeam($game_code, $team, $source);
  330. }
  331. }
  332. }
  333. }
  334. $this->writeLog($logdata, Response::success());
  335. //提交事务
  336. DB::commit();
  337. return Response::success();
  338. } catch (\Exception $e) {
  339. //回滚事务
  340. DB::rollBack();
  341. $this->writeLog($logdata, ['file' => $e->getFile(), 'line' => $e->getLine(), 'msg' => $e->getMessage()]);
  342. return $e->getMessage();
  343. }
  344. }
  345. /*
  346. * 写 赛事 结果 记录 数据
  347. * 每个请求 包含 N个联赛 下 N个赛事 结果数据
  348. */
  349. public function setMatchResult($data)
  350. {
  351. $logdata = $data;
  352. try {
  353. //开启事务
  354. DB::beginTransaction();
  355. $obt = $data['data'];
  356. //请求 数据 为空
  357. if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
  358. $getData = $this->getAddData($obt);
  359. //不是 赛事 结果 记录 数据
  360. if ($getData['title'] != 'match_result_r') throw new \Exception(Response::generate('不是赛事结果记录数据,', Response::ABNORMAL));
  361. /*
  362. //写请求数据 日志记录
  363. if($this->isRecord){
  364. // $setSportsRecord = St_set_sports_recordModel::setSportsRecord($getData['title'],$obt,$getData);
  365. // if($setSportsRecord < 1) throw new \Exception(Response::generate('',Response::SPORTS_RECORD_ERR));
  366. }
  367. */
  368. //获取球类代码
  369. $game_code = $getData['game_code'];
  370. //获取数据源
  371. $source = $getData['source'];
  372. //获取球类名称
  373. $gameName = gameModel::getGameName($game_code);
  374. //获取 model
  375. $models = commonFunction::getModels($game_code, 1);
  376. //获取 赛事 数据
  377. $match_r_data = $getData['data'];
  378. //获取 当前请求 所有 uuid /match_id
  379. $identity = [];
  380. $s_match_ids = [];
  381. $match_uuids = [];
  382. foreach ($match_r_data as $k => $v) {
  383. $identity[] = $v['uuid'];
  384. $s_match_ids[] = $v['match_id'];
  385. }
  386. //====验证 赛事 所属 联赛 是否存在====
  387. $identity = array_unique($identity);
  388. sort($identity);
  389. //获取 本地 已存在 联赛
  390. $l_lg_data = $models['model_local_league']::whereIn('identity', $identity)->select('identity', 'lg_id')->get()->toArray();
  391. //二维数组去重
  392. $l_lg_data = commonFunction::uniquArrV2($l_lg_data, 'identity');
  393. //循环对比 请求uuid->本地identity
  394. foreach ($l_lg_data as $k => $v) {
  395. foreach ($identity as $kk => $uuid) {
  396. if ($v['identity'] == $uuid) {
  397. unset($identity[$kk]);
  398. }
  399. }
  400. }
  401. sort($identity);
  402. //去除本地和请求里都存在的联赛,如果还有剩余联赛id,则返回异常
  403. if (!empty($identity)) throw new \Exception(Response::generate($gameName . '联赛:uuid-' . $identity[0] . ';', Response::LEAGUE_ERROR));
  404. //====end====
  405. //====验证 赛事结果记录 所属赛事 是否存在====$match_uuids
  406. $s_match_ids = array_unique($s_match_ids);
  407. sort($s_match_ids);
  408. //获取 本地 已存在 赛事
  409. $l_match_data = $models['model_local_match']::whereIn('others_match_id', $s_match_ids)->where('source', $source)->select('others_match_id', 'match_id')->get()->toArray();
  410. //二维数组去重
  411. $l_match_data = commonFunction::uniquArrV2($l_match_data, 'others_match_id');
  412. //循环对比 请求match_id->本地others_match_id
  413. foreach ($l_match_data as $k => $v) {
  414. foreach ($s_match_ids as $kk => $s_match_id) {
  415. if ($v['others_match_id'] == $s_match_id) {
  416. unset($s_match_ids[$kk]);
  417. }
  418. }
  419. }
  420. sort($s_match_ids);
  421. //去除本地和请求里都存在的赛事,如果还有剩余赛事id,则返回异常
  422. if (!empty($s_match_ids)) throw new \Exception(Response::generate($gameName . '赛事-match_id' . $s_match_ids[0] . ';', Response::MATCH_ERROR));
  423. //====end====
  424. //处理 赛事 结果记录 数据
  425. foreach ($match_r_data as $k => $v) {
  426. $data = $v;
  427. //获取 本地 联赛 ID
  428. $lg_id = commonFunction::searcharray($data['uuid'], 'identity', $l_lg_data, 'lg_id');
  429. //获取 本地 赛事 ID
  430. $match_id = commonFunction::searcharray($data['match_id'], 'others_match_id', $l_match_data, 'match_id');
  431. //根据球类 获取 赛事结果记录字段
  432. $set_match_r = $this->get_match_r($game_code, $lg_id, $match_id, $data);
  433. //写 赛事 结果 记录
  434. $ret = $models['model_result_record']::insert($set_match_r);
  435. if ($ret != true) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::ADD_MATCH_R_R_ERROR));
  436. }
  437. $this->writeLog($logdata, Response::success());
  438. //提交事务
  439. DB::commit();
  440. return Response::success();
  441. } catch (\Exception $e) {
  442. //回滚事务
  443. DB::rollBack();
  444. $this->writeLog($logdata, ['file' => $e->getFile(), 'line' => $e->getLine(), 'msg' => $e->getMessage()]);
  445. return $e->getMessage();
  446. }
  447. }
  448. //将数组按按指定健名,重新生成新的数组,key在存在并且 值不能重复
  449. private function ArrayKeySet(Array $array, $key)
  450. {
  451. $ret = [];
  452. foreach ($array as $val) {
  453. $ret[$val[$key]] = $val;
  454. }
  455. return $ret;
  456. }
  457. /*
  458. * 写 普通 赔率 数据
  459. * 每个请求 只包含 一场赛事下 N条赔率
  460. */
  461. public function setOdds($data)
  462. {
  463. try {
  464. //开启事务
  465. DB::beginTransaction();
  466. $obt = $data['data'];
  467. //请求 数据 为空
  468. if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
  469. $getData = $this->getAddData($obt);
  470. //不是 赔率 数据
  471. if ($getData['title'] != 'odds') throw new \Exception(Response::generate('不是赔率数据,', Response::ABNORMAL));
  472. //获取球类代码
  473. $game_code = $getData['game_code'];
  474. //获取数据源
  475. $source = $getData['source'];
  476. //获取源数据联赛ID
  477. $uuid = $getData['uuid'];
  478. //获取源数据赛事ID
  479. $s_match_id = $getData['match_id'];
  480. //获取赔率所属赛事 tag 值 玩法数量
  481. $tag = $getData['tag'] ?: 99;
  482. //获取赔率是否是串场
  483. $is_stringscene = $getData['is_stringscene'];
  484. //获取球类名称
  485. $gameName = gameModel::getGameName($game_code);
  486. //验证本次请求所属联赛/赛事是否存在 返回本地联赛/赛事ID
  487. $models = commonFunction::getModels($game_code, 1);
  488. $lg_id = $this->leagueVerify($models, $uuid, $source, $gameName);
  489. $match_id = $this->matchVerify($models, $s_match_id, $source, $gameName);
  490. //更新赛事 tag 值
  491. //如果未获取到本地赛事id,则返回异常
  492. if (empty($match_id)) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $s_match_id . ';', Response::L_MATCH_ID_ERR));
  493. $upMatch = $models['model_match']::where(['id' => $match_id])
  494. ->update(['tag' => $tag, 'utime' => date('Y-m-d H:i:s')]);
  495. if ($upMatch < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $s_match_id . ';', Response::UPMATCHTAG_ERROR));
  496. //获取 赔率数据
  497. $oddsData = $getData['data'];
  498. //===追加处理赔率过滤===
  499. //获取当前赛事 在本地的所有赔率
  500. $l_odds_data = $models['model_odds']::select('odds_only')->where(['match_id' => $match_id, 'is_stringscene' => $is_stringscene])->get()->toArray();
  501. //获取请求待写入数据
  502. $setOddsData = [];
  503. //获取本地待删除数据
  504. $delOddsData = [];
  505. //本地没有该赛事赔率,则直接全部写入
  506. if (empty($l_odds_data)) {
  507. $setOddsData = $oddsData;
  508. } //本地有该赛事赔率,则分别获取需写入/删除的数据
  509. else {
  510. $newodds_t = $this->ArrayKeySet($oddsData, 'odds_only');
  511. $oldodds_t = $this->ArrayKeySet($l_odds_data, 'odds_only');
  512. foreach ($newodds_t as $key => $val) {
  513. if (isset($oldodds_t[$key])) {
  514. unset($newodds_t[$key]);
  515. unset($oldodds_t[$key]);
  516. }
  517. }
  518. $oddsData = $newodds_t;
  519. $l_odds_data = $oldodds_t;
  520. /*
  521. foreach ($oddsData as $k => $v) {
  522. foreach ($l_odds_data as $kk => $vv) {
  523. if ($v['odds_only'] == $vv['odds_only']) {
  524. unset($oddsData[$k]);
  525. unset($l_odds_data[$kk]);
  526. }
  527. }
  528. }
  529. */
  530. sort($oddsData);
  531. sort($l_odds_data);
  532. //需写入请求数据
  533. $setOddsData = $oddsData;
  534. //需删除本地数据
  535. $delOddsData = $l_odds_data;
  536. }
  537. //===end===
  538. //删除本地不在请求中的数据
  539. if (!empty($delOddsData)) {
  540. //所有需删除数据odds_only
  541. $odds_onlys = [];
  542. foreach ($delOddsData as $k => $v) {
  543. $odds_onlys[] = $v['odds_only'];
  544. }
  545. $del = $models['model_odds']::whereIn('odds_only', $odds_onlys)->delete();
  546. if ($del != count($odds_onlys)) throw new \Exception(Response::generate($gameName, Response::DEL_ODDS_ERR));
  547. }
  548. //写入请求中本地不存在的数据
  549. if (!empty($setOddsData)) {
  550. //处理待写入 赔率记录数据
  551. foreach ($setOddsData as $k => $v) {
  552. //组装数据
  553. $set_odds_r[] = [
  554. 'match_id' => $match_id ?: 0,
  555. 'others_match_id' => $v['match_id'] ?: 0,
  556. 'odds_code' => $v['odds_code'] ?: '',
  557. 'status' => $v['status'] ?: 0,
  558. 'sort' => $v['sort'] ?: 0,
  559. 'p_code' => $v['p_code'] ?: '',
  560. 'odds' => $v['odds'] ?: 0,
  561. 'condition' => $v['condition'],
  562. 'odds_only' => $v['odds_only'] ?: '',
  563. 'source' => $v['source'] ?: '',
  564. 'type' => $v['type'] ?: 0,
  565. 'team' => $v['team'] ?: '',
  566. 'lg_id' => $lg_id,
  567. 'is_stringscene' => $is_stringscene,
  568. 'others_lg_id' => $v['lg_id'],
  569. 'ctime' => date('Y-m-d H:i:s'),
  570. 'utime' => date('Y-m-d H:i:s'),
  571. ];
  572. }
  573. //处理待写入 赔率数据
  574. foreach ($oddsData as $k => $v) {
  575. //组装数据
  576. $set_odds[] = [
  577. 'match_id' => $match_id ?: 0,
  578. 'others_match_id' => $v['match_id'] ?: 0,
  579. 'odds_code' => $v['odds_code'] ?: '',
  580. 'status' => $v['status'] ?: 0,
  581. 'sort' => $v['sort'] ?: 0,
  582. 'p_code' => $v['p_code'] ?: '',
  583. 'odds' => $v['odds'] ?: 0,
  584. 'condition' => $v['condition'],
  585. 'odds_only' => $v['odds_only'] ?: '',
  586. 'source' => $v['source'] ?: '',
  587. 'type' => $v['type'] ?: 0,
  588. 'team' => $v['team'] ?: '',
  589. 'lg_id' => $lg_id,
  590. 'is_stringscene' => $is_stringscene,
  591. 'others_lg_id' => $v['lg_id'],
  592. 'ctime' => date('Y-m-d H:i:s'),
  593. 'utime' => date('Y-m-d H:i:s'),
  594. 'sole' => $v['sole'],
  595. 'expire_time' => date('Y-m-d H:i:s', time() + 60)
  596. ];
  597. }
  598. //写赔率记录数据
  599. $ret = $models['model_odds_record']::insert($set_odds_r);
  600. if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率记录;', Response::ADD_ODDS_R_ERROR));
  601. //写赔率 数据
  602. $ret = $models['model_odds']::insert($set_odds);
  603. if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率;', Response::ADD_ODDS_ERROR));
  604. }
  605. $this->writeLog($data, Response::success());
  606. //提交事务
  607. DB::commit();
  608. return Response::success();
  609. } catch (\Exception $e) {
  610. //回滚事务
  611. DB::rollBack();
  612. $this->writeLog($data, ['file' => $e->getFile(), 'line' => $e->getLine(), 'msg' => $e->getMessage()]);
  613. return $e->getMessage();
  614. }
  615. }
  616. /*
  617. * 写 普通 赔率 数据
  618. * 每个请求 只包含 一场赛事下 N条赔率
  619. */
  620. public function setOdds_old($data)
  621. {
  622. try {
  623. //开启事务
  624. DB::beginTransaction();
  625. $obt = $data['data'];
  626. //请求 数据 为空
  627. if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
  628. $getData = $this->getAddData($obt);
  629. //不是 赔率 数据
  630. if ($getData['title'] != 'odds') throw new \Exception(Response::generate('不是赔率数据,', Response::ABNORMAL));
  631. /*
  632. //写请求数据 日志记录
  633. if($this->isRecord){
  634. $setSportsRecord = St_set_sports_recordModel::setSportsRecord($getData['title'],$obt,$getData);
  635. if($setSportsRecord < 1) throw new \Exception(Response::generate('',Response::SPORTS_RECORD_ERR));
  636. }
  637. */
  638. //获取球类代码
  639. $game_code = $getData['game_code'];
  640. //获取数据源
  641. $source = $getData['source'];
  642. //获取源数据联赛ID
  643. $uuid = $getData['uuid'];
  644. //获取源数据赛事ID
  645. $s_match_id = $getData['match_id'];
  646. //获取赔率所属赛事 tag 值 玩法数量
  647. $tag = $getData['tag'] ?: 99;
  648. //获取赔率是否是串场
  649. $is_stringscene = $getData['is_stringscene'];
  650. //获取球类名称
  651. $gameName = gameModel::getGameName($game_code);
  652. //验证本次请求所属联赛/赛事是否存在 返回本地联赛/赛事ID
  653. $models = commonFunction::getModels($game_code, 1);
  654. $lg_id = $this->leagueVerify($models, $uuid, $source, $gameName);
  655. $match_id = $this->matchVerify($models, $s_match_id, $source, $gameName);
  656. //更新赛事 tag 值
  657. //如果未获取到本地赛事id,则返回异常
  658. if (empty($match_id)) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $s_match_id . ';', Response::L_MATCH_ID_ERR));
  659. $upMatch = $models['model_match']::where(['id' => $match_id])
  660. ->update(['tag' => $tag, 'utime' => date('Y-m-d H:i:s')]);
  661. if ($upMatch < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $s_match_id . ';', Response::UPMATCHTAG_ERROR));
  662. //获取 赔率数据
  663. $oddsData = $getData['data'];
  664. //获取 当前 所有 可用 赔率 sole
  665. $odds_only = $getData['odds_only'];
  666. //更新赛事下所有 不在本次请求的赔率 状态
  667. $ret = OddsModel::upOddsStatus($models, $s_match_id, '', $source, $odds_only, $is_stringscene);
  668. if ($ret != true) throw new \Exception(Response::generate($gameName, Response::ODDS_SOLE_ERR));
  669. //获取当前赛事 在本地的所有赔率
  670. $l_odds_data = $models['model_odds']::select('odds_only')->where(['match_id' => $match_id])->get()->toArray();
  671. $set_odds_r = [];
  672. $set_odds = [];
  673. if (!empty($oddsData)) {
  674. //去除本地已有的赔率
  675. if (!empty($l_odds_data)) {
  676. foreach ($oddsData as $k => $v) {
  677. foreach ($l_odds_data as $kk => $vv) {
  678. if ($v['odds_only'] == $vv['odds_only']) {
  679. unset($oddsData[$k]);
  680. }
  681. }
  682. }
  683. sort($oddsData);
  684. }
  685. //处理待写入 赔率记录数据
  686. foreach ($oddsData as $k => $v) {
  687. //组装数据
  688. $set_odds_r[] = [
  689. 'match_id' => $match_id ?: 0,
  690. 'others_match_id' => $v['match_id'] ?: 0,
  691. 'odds_code' => $v['odds_code'] ?: '',
  692. 'status' => $v['status'] ?: 0,
  693. 'sort' => $v['sort'] ?: 0,
  694. 'p_code' => $v['p_code'] ?: '',
  695. 'odds' => $v['odds'] ?: 0,
  696. 'condition' => $v['condition'],
  697. 'odds_only' => $v['odds_only'] ?: '',
  698. 'source' => $v['source'] ?: '',
  699. 'type' => $v['type'] ?: 0,
  700. 'team' => $v['team'] ?: '',
  701. 'lg_id' => $lg_id,
  702. 'is_stringscene' => $is_stringscene,
  703. 'others_lg_id' => $v['lg_id'],
  704. 'ctime' => date('Y-m-d H:i:s'),
  705. 'utime' => date('Y-m-d H:i:s'),
  706. ];
  707. }
  708. //处理待写入 赔率数据
  709. foreach ($oddsData as $k => $v) {
  710. //组装数据
  711. $set_odds[] = [
  712. 'match_id' => $match_id ?: 0,
  713. 'others_match_id' => $v['match_id'] ?: 0,
  714. 'odds_code' => $v['odds_code'] ?: '',
  715. 'status' => $v['status'] ?: 0,
  716. 'sort' => $v['sort'] ?: 0,
  717. 'p_code' => $v['p_code'] ?: '',
  718. 'odds' => $v['odds'] ?: 0,
  719. 'condition' => $v['condition'],
  720. 'odds_only' => $v['odds_only'] ?: '',
  721. 'source' => $v['source'] ?: '',
  722. 'type' => $v['type'] ?: 0,
  723. 'team' => $v['team'] ?: '',
  724. 'lg_id' => $lg_id,
  725. 'is_stringscene' => $is_stringscene,
  726. 'others_lg_id' => $v['lg_id'],
  727. 'ctime' => date('Y-m-d H:i:s'),
  728. 'utime' => date('Y-m-d H:i:s'),
  729. 'sole' => $v['sole'],
  730. 'expire_time' => date('Y-m-d H:i:s', time() + 60)
  731. ];
  732. }
  733. //写赔率记录数据
  734. $ret = $models['model_odds_record']::insert($set_odds_r);
  735. if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率记录;', Response::ADD_ODDS_R_ERROR));
  736. //写赔率 数据
  737. $ret = $models['model_odds']::insert($set_odds);
  738. if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率;', Response::ADD_ODDS_ERROR));
  739. }
  740. $this->writeLog($data, Response::success());
  741. //提交事务
  742. DB::commit();
  743. return Response::success();
  744. } catch (\Exception $e) {
  745. //回滚事务
  746. DB::rollBack();
  747. $this->writeLog($data, ['file' => $e->getFile(), 'line' => $e->getLine(), 'msg' => $e->getMessage()]);
  748. return $e->getMessage();
  749. }
  750. }
  751. /**
  752. * @param Req $data
  753. * @return string
  754. * @throws \App\Lib\Biz\Sport\Exception
  755. * 更新赛事状态
  756. */
  757. public function upMatch($data)
  758. {
  759. $sdata = $data;
  760. try {
  761. //开启事务
  762. DB::beginTransaction();
  763. //获取待更新赛事
  764. $obt = $data['data'];
  765. //请求 数据 为空
  766. if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
  767. $data = $this->getAddData($obt);
  768. //不是 直播 数据
  769. if ($data['title'] != 'match_status') throw new \Exception(Response::generate('不是更新赛事状态数据', Response::ABNORMAL));
  770. /*
  771. //写请求数据 日志记录
  772. if($this->isRecord){
  773. $setSportsRecord = St_set_sports_recordModel::setSportsRecord($getData['title'],$obt,$getData);
  774. if($setSportsRecord < 1) throw new \Exception(Response::generate('',Response::SPORTS_RECORD_ERR));
  775. }
  776. */
  777. //获取 球类代码
  778. $game_code = $data['game_code'];
  779. //获取 数据源
  780. $source = $data['source'];
  781. //获取所有数据源赛事 match_id
  782. $others_match_ids = [];
  783. foreach ($data['data'] as $k => $v) {
  784. $others_match_ids[] = $v['match_id'];
  785. }
  786. //根据球类代码 获取model
  787. $model = commonFunction::getModels($game_code, 1);
  788. //获取所有赛事 match_id
  789. $local_match = $model['model_local_match']::SELECT('others_match_id', 'match_id')
  790. ->where(['source' => $source])
  791. ->whereIn('others_match_id', $others_match_ids)
  792. ->get()->toArray();
  793. if (empty($local_match)) throw new \Exception(Response::generate('', Response::MATCHID_NULL));
  794. //更新状态字段
  795. if ($game_code == 'zq') {
  796. foreach ($local_match as $k => $v) {
  797. $set_status = [
  798. 'status' => $v['status'],
  799. 'is_rollball' => $v['is_rollball'],
  800. 'is_today' => $v['is_today'],
  801. 'is_morningplate' => $v['is_morningplate'],
  802. 'is_stringscene' => $v['is_stringscene'],
  803. 'is_horn' => $v['is_horn'],
  804. 'utime' => date('Y-m-d H:i:s'),
  805. ];
  806. $ret = $model['model_match']::where(['id' => $v['match_id']])
  807. ->update($set_status);
  808. if ($ret < 1) throw new \Exception(Response::generate(gameModel::getGameName($game_code) . '赛事-match_id:' . $v['others_match_id'], Response::UPSTATUS_ERROR));
  809. }
  810. } else {
  811. foreach ($local_match as $k => $v) {
  812. $set_status = [
  813. 'status' => $v['status'],
  814. 'is_rollball' => $v['is_rollball'],
  815. 'is_today' => $v['is_today'],
  816. 'is_morningplate' => $v['is_morningplate'],
  817. 'is_stringscene' => $v['is_stringscene'],
  818. 'utime' => date('Y-m-d H:i:s'),
  819. ];
  820. $ret = $model['model_match']::where(['id' => $v['match_id']])
  821. ->update($set_status);
  822. if ($ret < 1) throw new \Exception(Response::generate(gameModel::getGameName($game_code) . '赛事-match_id:' . $v['others_match_id'], Response::UPSTATUS_ERROR));
  823. }
  824. }
  825. $this->writeLog($sdata, Response::success());
  826. //提交事务
  827. DB::commit();
  828. return Response::success();
  829. } catch (\Exception $e) {
  830. //回滚事务
  831. DB::rollBack();
  832. $this->writeLog($sdata, ['file' => $e->getFile(), 'line' => $e->getLine(), 'msg' => $e->getMessage()]);
  833. return $e->getMessage();
  834. }
  835. }
  836. /*
  837. *写 冠军联赛 赔率 数据
  838. *每个请求 包含 N个联赛 下 N条赔率
  839. */
  840. public function setOddsCH($data)
  841. {
  842. try {
  843. //开启事务
  844. DB::beginTransaction();
  845. $obt = $data['data'];
  846. //请求 数据 为空
  847. if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
  848. $getData = $this->getAddData($obt);
  849. //不是 冠军 赔率 数据
  850. if ($getData['title'] != 'odds_ch') throw new \Exception(Response::generate('不是冠军赔率数据,', Response::ABNORMAL));
  851. //写请求数据 日志记录
  852. if ($this->isRecord) {
  853. $setSportsRecord = St_set_sports_recordModel::setSportsRecord($getData['title'], $obt, $getData);
  854. if ($setSportsRecord < 1) throw new \Exception(Response::generate('', Response::SPORTS_RECORD_ERR));
  855. }
  856. //获取球类代码
  857. $game_code = $getData['game_code'];
  858. //获取数据源
  859. $source = $getData['source'];
  860. //获取球类名称
  861. $gameName = gameModel::getGameName($game_code);
  862. //获取 model
  863. $models = commonFunction::getModels($game_code, 1);
  864. //获取 赔率数据
  865. $oddsData = $getData['data'];
  866. //获取 当前 所有 可用 赔率 sole
  867. $odds_only = $getData['odds_only'];
  868. //====验证 请求里 所有赔率 所属联赛 是否存在 ====
  869. //获取 当前请求 所有 联赛 uuid
  870. $uuids = [];
  871. $s_lg_ids = [];
  872. foreach ($oddsData as $k => $v) {
  873. $uuids[] = $v['uuid'];
  874. $s_lg_ids[] = $v['lg_id'];
  875. }
  876. $s_lg_ids = array_unique($s_lg_ids);
  877. $uuids = array_unique($uuids);
  878. sort($uuids);
  879. sort($s_lg_ids);
  880. //更新联赛下所有 不在本次请求的赔率 状态
  881. $ret = OddsModel::upOddsStatus($models, '', $s_lg_ids, $source, $odds_only);
  882. if ($ret != true) throw new \Exception(Response::generate($gameName, Response::ODDS_SOLE_ERR));
  883. //获取 本地 已存在 联赛
  884. $l_lg_data = $models['model_local_league']::whereIn('identity', $uuids)->select('identity', 'lg_id')->get()->toArray();
  885. //二维数组去重
  886. $l_lg_data = commonFunction::uniquArrV2($l_lg_data, 'identity');
  887. //循环对比 请求uuid->本地uuid
  888. foreach ($l_lg_data as $k => $v) {
  889. foreach ($uuids as $kk => $uuid) {
  890. if ($v['identity'] == $uuid) {
  891. unset($uuids[$kk]);
  892. }
  893. }
  894. }
  895. //去除本地和请求里都存在的联赛,如果还有剩余联赛id,则返回异常;
  896. if (!empty($uuids)) throw new \Exception(Response::generate($gameName . '冠军联赛:uuid-' . $uuids[0] . ';', Response::LEAGUE_ERROR));
  897. //====end====
  898. //赔率记录数据
  899. $set_odds_r = [];
  900. //赔率数据
  901. $set_odds = [];
  902. if (!empty($oddsData)) {
  903. foreach ($oddsData as $k => $v) {
  904. //获取 本地 联赛 ID
  905. $lg_id = commonFunction::searcharray($v['uuid'], 'identity', $l_lg_data, 'lg_id');
  906. //组装赔率记录数据
  907. $set_odds_r[] = [
  908. 'match_id' => 0,
  909. 'others_match_id' => $v['match_id'] ?: 0,
  910. 'odds_code' => $v['odds_code'] ?: '',
  911. 'status' => $v['status'] ?: 0,
  912. 'sort' => $v['sort'] ?: 0,
  913. 'p_code' => $v['p_code'] ?: '',
  914. 'odds' => $v['odds'] ?: 0,
  915. 'condition' => $v['condition'],
  916. 'odds_only' => $v['odds_only'] ?: '',
  917. 'source' => $v['source'] ?: '',
  918. 'type' => $v['type'] ?: 1,
  919. 'team' => $v['team'] ?: '',
  920. 'lg_id' => $lg_id,
  921. 'others_lg_id' => $v['lg_id'],
  922. 'ctime' => date('Y-m-d H:i:s'),
  923. 'utime' => date('Y-m-d H:i:s'),
  924. ];
  925. }
  926. foreach ($oddsData as $k => $v) {
  927. //获取 本地 联赛 ID
  928. $lg_id = commonFunction::searcharray($v['uuid'], 'identity', $l_lg_data, 'lg_id');
  929. //组装赔率数据
  930. $set_odds[] = [
  931. 'match_id' => 0,
  932. 'others_match_id' => $v['match_id'] ?: 0,
  933. 'odds_code' => $v['odds_code'] ?: '',
  934. 'status' => $v['status'] ?: 0,
  935. 'sort' => $v['sort'] ?: 0,
  936. 'p_code' => $v['p_code'] ?: '',
  937. 'odds' => $v['odds'] ?: 0,
  938. 'condition' => $v['condition'],
  939. 'odds_only' => $v['odds_only'] ?: '',
  940. 'source' => $v['source'] ?: '',
  941. 'type' => $v['type'] ?: 1,
  942. 'team' => $v['team'] ?: '',
  943. 'lg_id' => $lg_id,
  944. 'others_lg_id' => $v['lg_id'],
  945. 'ctime' => date('Y-m-d H:i:s'),
  946. 'utime' => date('Y-m-d H:i:s'),
  947. 'sole' => $v['sole'],
  948. 'expire_time' => date('Y-m-d H:i:s', time() + 60)
  949. ];
  950. }
  951. //写赔率记录数据
  952. $ret = $models['model_odds_record']::insert($set_odds_r);
  953. if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率记录;', Response::ADD_ODDS_R_ERROR));
  954. //写赔率 数据
  955. $ret = $models['model_odds']::insert($set_odds);
  956. if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率;', Response::ADD_ODDS_ERROR));
  957. }
  958. $this->writeLog($data, Response::success());
  959. //提交事务
  960. DB::commit();
  961. return Response::success();
  962. } catch (\Exception $e) {
  963. //回滚事务
  964. DB::rollBack();
  965. $this->writeLog($data, ['file' => $e->getFile(), 'line' => $e->getLine(), 'msg' => $e->getMessage()]);
  966. return $e->getMessage();
  967. }
  968. }
  969. /*
  970. * 写入直播 数据
  971. */
  972. public function setBroadCast($data)
  973. {
  974. $data_s = $data['data'];
  975. try {
  976. //开启事务
  977. DB::beginTransaction();
  978. $obt = $data['data'];
  979. //请求 数据 为空
  980. if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
  981. $getData = $this->getAddData($obt);
  982. //不是 直播 数据
  983. if ($getData['title'] != 'broad_cast') throw new \Exception(Response::generate('不是直播数据,', Response::ABNORMAL));
  984. //写请求数据 日志记录
  985. if ($this->isRecord) {
  986. $setSportsRecord = St_set_sports_recordModel::setSportsRecord($getData['title'], $obt, $getData);
  987. if ($setSportsRecord < 1) throw new \Exception(Response::generate('', Response::SPORTS_RECORD_ERR));
  988. }
  989. //获取 球类
  990. $game_code = $getData['game_code'];
  991. //删除当前球类已存在的直播数据
  992. $del = broadcastModel::where('game_code', $game_code)->delete();
  993. if ($del != true) throw new \Exception(Response::generate('', Response::DEL_PAST_BROADCAST_ERR));
  994. //获取 直播 数据
  995. $BroadCast = $getData['data'];
  996. $set_broadcast = [];
  997. foreach ($BroadCast as $k => $data) {
  998. //组装数据
  999. $set_broadcast[] = [
  1000. "doing" => $data['doing'],
  1001. "game_type" => $data['game_type'],
  1002. "game_code" => $game_code,
  1003. "guest_team" => $data['guest_team'],
  1004. "host_team" => $data['host_team'],
  1005. "league_name" => $data['league_name'],
  1006. "shower" => $data['shower'],
  1007. "showid" => (int)$data['showid'],
  1008. "start_time" => $data['start_time'],
  1009. "ctime" => date('Y-m-d H:i:s'),
  1010. "utime" => date('Y-m-d H:i:s'),
  1011. ];
  1012. }
  1013. //写入 直播 数据
  1014. $ret = broadcastModel::insert($set_broadcast);
  1015. if ($ret == false) throw new \Exception(Response::generate('', Response::BROADCAST_ERROR));
  1016. $this->writeLog($data_s, Response::success());
  1017. //提交事务
  1018. DB::commit();
  1019. return Response::success();
  1020. } catch (\Exception $e) {
  1021. //回滚事务
  1022. DB::rollBack();
  1023. $this->writeLog($data_s, ['file' => $e->getFile(), 'line' => $e->getLine(), 'msg' => $e->getMessage()]);
  1024. return $e->getMessage();
  1025. }
  1026. }
  1027. /*
  1028. * 验证所属 联赛 是否存在
  1029. */
  1030. public function leagueVerify($models = [], $uuid = '', $source = '', $gameName = '')
  1031. {
  1032. if (empty($models) || empty($uuid)) throw new \Exception(Response::generate('', Response::ABNORMAL));
  1033. $l_lg_id = $models['model_local_league']::where(['identity' => $uuid])->value('lg_id');
  1034. if ($l_lg_id < 1) throw new \Exception(Response::generate($gameName . '联赛:lg_id-' . $uuid, Response::LEAGUE_ERROR));
  1035. return $l_lg_id;
  1036. }
  1037. /*
  1038. * 验证所属 赛事 是否存在
  1039. */
  1040. public function matchVerify($models = [], $s_match_id = '', $source = '', $gameName = '')
  1041. {
  1042. if (empty($models) || empty($s_match_id)) throw new \Exception(Response::generate('', Response::ABNORMAL));
  1043. $l_match_id = $models['model_local_match']::where(['others_match_id' => $s_match_id, 'source' => $source])->value('match_id');
  1044. if ($l_match_id < 1) throw new \Exception(Response::generate($gameName . '赛事:match_id-' . $s_match_id, Response::MATCH_ERROR));
  1045. return $l_match_id;
  1046. }
  1047. /*
  1048. * 写入直播 数据
  1049. */
  1050. public function broadcast($opt = [], $game_code = '')
  1051. {
  1052. $data = $opt['data'];
  1053. $set_broadcast = [
  1054. "doing" => $data['doing'],
  1055. "game_type" => $data['game_type'],
  1056. "game_code" => $game_code,
  1057. "guest_team" => $data['guest_team'],
  1058. "host_team" => $data['host_team'],
  1059. "league_name" => $data['league_name'],
  1060. "shower" => $data['shower'],
  1061. "showid" => (int)$data['showid'],
  1062. "start_time" => $data['start_time'],
  1063. "ctime" => date('Y-m-d H:i:s'),
  1064. "utime" => date('Y-m-d H:i:s'),
  1065. ];
  1066. $ret = broadcastModel::insert($set_broadcast);
  1067. if ($ret == false) throw new \Exception(Response::generate('', Response::BROADCAST_ERROR));
  1068. }
  1069. /*
  1070. * 写入 赛事 初始 结果
  1071. */
  1072. public function match_result($game_code = '')
  1073. {
  1074. $model = commonFunction::getModels($game_code, 1);
  1075. if ($game_code == 'zq') ZqResultModel::ZQresult($model);
  1076. if ($game_code == 'lq') LqResultModel::LQresult($model);
  1077. if ($game_code == 'wq') WqResultModel::WQresult($model);
  1078. if ($game_code == 'bq') BqResultModel::BQresult($model);
  1079. }
  1080. /*
  1081. * 写入联赛数据
  1082. */
  1083. public function league($opt = [], $gameName = '')
  1084. {
  1085. $game_code = $opt['game_code'];
  1086. //根据球类代码获取相关model
  1087. $model = commonFunction::getModels($game_code, 1);
  1088. $data = $opt['data'];
  1089. //查询联赛是否已存在
  1090. $id = $model['model_league']::where('name_chinese', '=', $data['name_chinese'])
  1091. ->value('id');
  1092. //默认获取本年最后一天
  1093. $last_time = date('Y-12-31 23:59:59');
  1094. //决赛时间
  1095. if ($data['last_time']) {
  1096. $last_time = $data['last_time'];
  1097. }
  1098. $set_lg['name_chinese'] = $data['name_chinese'];
  1099. $set_lg['kind'] = $data['kind'];
  1100. $set_lg['match_mode'] = $data['match_mode'];
  1101. $set_lg['if_stop'] = $data['if_stop'];
  1102. $set_lg['identity'] = $data['uuid'] ?: '';
  1103. $set_lg['last_time'] = $last_time;
  1104. $set_lg['utime'] = date('Y-m-d H:i:s');
  1105. if (empty($id)) {
  1106. //写入联赛
  1107. $id = $model['model_league']::insertGetId($set_lg);
  1108. $m_lg_id = $id;
  1109. if ($m_lg_id < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::INSERT_ERROR));
  1110. } else {
  1111. //更新联赛
  1112. $ret = $model['model_league']::where(['id' => $id])
  1113. ->update($set_lg);
  1114. if ($ret < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::UPDATE_ERROR));
  1115. }
  1116. $set_local = [
  1117. 'lg_id' => $id,
  1118. 'others_lg_id' => $data['lg_id'],
  1119. 'source' => $data['source'],
  1120. 'ctime' => date('Y-m-d H:i:s')
  1121. ];
  1122. $ret = $model['model_local_league']::insertGetId($set_local);
  1123. if ($ret < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::LOCAL_LEAGUE_ERROR));//Render([], '10017', lang('Tips','Sports')->get('local_league_error'));
  1124. //执行成功返回源数据 联赛ID
  1125. $data = ['others_lg_id' => $data['lg_id'], 'lg_id' => $id];
  1126. return $data;
  1127. }
  1128. /*
  1129. * 写入赛事数据
  1130. */
  1131. public function competition($opt = [], $gameName = '', $lg_id = '')
  1132. {
  1133. $game_code = $opt['game_code'];
  1134. //根据球类代码获取相关model
  1135. $model = commonFunction::getModels($game_code, 1);
  1136. $data = $opt['data'];
  1137. if (empty($data['lg_id'])) throw new \Exception(Response::generate('', Response::LEAGUE_ERROR));//Render([], '10015', lang('Tips','Sports')->get('league_error'));
  1138. //查询赛事是否存在
  1139. $id = $model['model_match']::where(['home_team' => $data['home_team'], 'guest_team' => $data['guest_team'], 'match_date' => $data['match_date'], 'match_time' => $data['match_time']])
  1140. ->value('id');
  1141. $half_match_id = 0;
  1142. //如果有上半场赛事id 获取上半场赛事是否存在
  1143. if (!empty($data['half_match_id'])) {
  1144. $half_match_id = $match_id = $model['model_local_match']::where(['others_match_id' => $data['half_match_id'], 'source' => $data['source']])
  1145. ->value('match_id');
  1146. if (empty($half_match_id)) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::HALF_MATCH_ERROR));//Render([], '10024', lang('Tips','Sports')->get('half_match_error'));
  1147. }
  1148. //如果赛事没有开始日期,则为冠军盘口赛事
  1149. if (empty($data['match_date'])) {
  1150. //冠军盘口赛事获取所属联赛结束时间
  1151. $last_time = $model['model_league']::where(['id' => $lg_id])
  1152. ->value('last_time');
  1153. if (empty($last_time)) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::LG_LASTTIME_ERROR));//Render([], '10023', lang('Tips','Sports')->get('lg_lastTime_error'));
  1154. //给冠军盘口赛事 赋值时间
  1155. $time = strtotime($last_time);
  1156. $data['match_date'] = date('Y-m-d', $time);
  1157. $data['match_time'] = date('H:i:s', $time);
  1158. }
  1159. $set_match = [
  1160. 'ctime' => date('Y-m-d H:i:s'),
  1161. 'utime' => date('Y-m-d H:i:s'),
  1162. 'expire_time' => date('Y-m-d H:i:s', time() + 60),
  1163. 'home_team' => $data['home_team'] ?: '',
  1164. 'guest_team' => $data['guest_team'] ?: 'no_team',
  1165. 'lg_id' => $lg_id,
  1166. 'status' => $data['status'],
  1167. 'match_date' => $data['match_date'] ?: date('Y-m-d'),
  1168. 'match_time' => $data['match_time'] ?: date('H:i:s'),
  1169. 'tag' => $data['tag'] ?: 0,
  1170. 'is_rollball' => $data['is_rollball'] ?: 0,
  1171. 'is_today' => $data['is_today'] ?: 0,
  1172. 'is_morningplate' => $data['is_morningplate'] ?: 0,
  1173. 'is_stringscene' => $data['is_stringscene'] ?: 0,
  1174. 'us_time' => $data['us_time'] ?: commonFunction::qgmdate('Y-m-d H:i:s', '', -4),
  1175. 'half_match_id' => $half_match_id ?: 0,
  1176. 'identity' => $data['uuid'],
  1177. ];
  1178. //写入赛事
  1179. if (empty($id)) {
  1180. //写入赛事 返回id
  1181. $id = $model['model_match']::insertGetId($set_match);
  1182. if ($id < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::INSERT_ERROR));
  1183. } else {
  1184. //更新赛事
  1185. $ret = $model['model_match']::where(['id' => $id])->update($set_match);
  1186. if ($ret < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::UPDATE_ERROR));
  1187. }
  1188. //写关联记录
  1189. $set_local = [
  1190. 'match_id' => $id,
  1191. 'others_match_id' => $data['match_id'],
  1192. 'source' => $data['source'],
  1193. 'ctime' => date('Y-m-d H:i:s')
  1194. ];
  1195. $ret = $model['model_local_match']::insertGetId($set_local);
  1196. if ($ret < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::LOCAL_MATCH_ERROR));//Render([], '10018', lang('Tips','Sports')->get('local_match_error'));
  1197. //返回 源数据 赛事ID
  1198. $data = ['others_match_id' => $data['match_id'], 'match_id' => $id];
  1199. return $data;
  1200. }
  1201. /*
  1202. * 写入赔率/赔率记录数据
  1203. */
  1204. public function odds($opt = [], $gameName = '', $lg_id = 0, $match_id = 0, $oddsID = '', $oddsRecordID = '')
  1205. {
  1206. $game_code = $opt['game_code'];
  1207. //根据球类代码获取相关model
  1208. $model = commonFunction::getModels($game_code, 1);
  1209. $data = $opt['data'];
  1210. //获取赛事 本地/源ID
  1211. $others_match_id = $data['match_id'];
  1212. //获取联赛 本地/源ID
  1213. $others_lg_id = $data['lg_id'];
  1214. //===写赔率记录===
  1215. $set_odds_r = [
  1216. 'match_id' => $match_id ?: 0,
  1217. 'others_match_id' => $others_match_id ?: 0,
  1218. 'odds_code' => $data['odds_code'] ?: '',
  1219. 'status' => $data['status'] ?: 0,
  1220. 'sort' => $data['sort'] ?: 0,
  1221. 'p_code' => $data['p_code'] ?: '',
  1222. 'odds' => $data['odds'] ?: 0,
  1223. 'condition' => $data['condition'],
  1224. 'odds_only' => $data['odds_only'] ?: '',
  1225. 'source' => $data['source'] ?: '',
  1226. 'type' => $data['type'] ?: 0,
  1227. 'team' => $data['team'] ?: '',
  1228. 'lg_id' => $lg_id,
  1229. 'others_lg_id' => $others_lg_id,
  1230. 'ctime' => date('Y-m-d H:i:s'),
  1231. ];
  1232. //更新或写入赔率记录
  1233. if ($oddsRecordID != false) {
  1234. $ret = $model['model_odds_record']::where(['id' => $oddsRecordID])
  1235. ->update($set_odds_r);
  1236. if ($ret < 1) throw new \Exception(Response::generate($gameName . '赔率记录-odds_only:' . $data['odds_only'] . ';', Response::ADD_ODDS_R_ERROR));//Render([], '10020', lang('Tips','Sports')->get('add_odds_r_error'));
  1237. } else {
  1238. $ret = $model['model_odds_record']::insert($set_odds_r);
  1239. if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率记录-odds_only:' . $data['odds_only'] . ';', Response::ADD_ODDS_R_ERROR));//Render([], '10020', lang('Tips','Sports')->get('add_odds_r_error'));
  1240. }
  1241. //===写赔率===
  1242. $set_odds = [
  1243. 'match_id' => $match_id ?: 0,
  1244. 'others_match_id' => $others_match_id ?: 0,
  1245. 'odds_code' => $data['odds_code'] ?: '',
  1246. 'status' => $data['status'] ?: 0,
  1247. 'sort' => $data['sort'] ?: 0,
  1248. 'p_code' => $data['p_code'] ?: '',
  1249. 'odds' => $data['odds'] ?: 0,
  1250. 'condition' => $data['condition'],
  1251. 'odds_only' => $data['odds_only'] ?: '',
  1252. 'sole' => $data['sole'] ?: '',
  1253. 'source' => $data['source'] ?: '',
  1254. 'type' => $data['type'] ?: 0,
  1255. 'team' => $data['team'] ?: '',
  1256. 'lg_id' => $lg_id,
  1257. 'others_lg_id' => $others_lg_id,
  1258. 'ctime' => date('Y-m-d H:i:s'),
  1259. 'utime' => date('Y-m-d H:i:s'),
  1260. 'expire_time' => date('Y-m-d H:i:s', time() + 60),
  1261. ];
  1262. //更新或写入赔率数据
  1263. if ($oddsID != false) {
  1264. $ret = $model['model_odds']::where(['id' => $oddsID])
  1265. ->update($set_odds);
  1266. if ($ret < 1) throw new \Exception(Response::generate($gameName . '赔率-odds_only:' . $data['odds_only'] . ';', Response::ADD_ODDS_ERROR));//Render([], '10019', lang('Tips','Sports')->get('add_odds_error'));
  1267. } else {
  1268. $ret = $model['model_odds']::insert($set_odds);
  1269. if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率-odds_only:' . $data['odds_only'] . ';', Response::ADD_ODDS_ERROR));//Render([], '10019', lang('Tips','Sports')->get('add_odds_error'));
  1270. }
  1271. //===end===
  1272. }
  1273. /*
  1274. * 更新 赛事下 所有不在本次请求的 赔率状态
  1275. */
  1276. public function upOddsStatus($opt = [], $gameName = '')
  1277. {
  1278. //获取球类代码
  1279. $game_code = $opt['game_code'];
  1280. //获取球类model
  1281. $model = commonFunction::getModels($game_code, 1);
  1282. //赛事下 所有 赔率sole
  1283. $odds_sole = $opt['data'];
  1284. //数据源 赛事 id
  1285. $others_match_id = $opt['match_id'];
  1286. //数据源
  1287. $source = $opt['source'];
  1288. //更新赛事下所有 不在本次请求的赔率 状态
  1289. $ret = OddsModel::getMatchSole($model, $others_match_id, '', $source, $odds_sole);
  1290. if ($ret != true) throw new \Exception(Response::generate($gameName, Response::ODDS_SOLE_ERR));
  1291. }
  1292. /*
  1293. * 写入联赛结果
  1294. */
  1295. public function league_result($opt, $gameName)
  1296. {
  1297. $game_code = $opt['game_code'];
  1298. //根据球类代码获取相关model
  1299. $model = commonFunction::getModels($game_code, 1);
  1300. $data = $opt['data'];
  1301. //验证结果所属联赛
  1302. $lg_id = $model['model_local_league']::where(['others_lg_id' => $data['lg_id'], 'source' => $data['source']])
  1303. ->value('lg_id');
  1304. if ($lg_id < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::LEAGUE_ERROR));
  1305. $lg_result_id = $model['model_league_result']::where(['lg_id' => $lg_id, 'game_name' => $data['game_name']])
  1306. ->value('id');
  1307. $set_lg_result = [
  1308. 'lg_id' => $lg_id,
  1309. 'game_name' => $data['game_name'],
  1310. 'result' => json_encode($data['result'], JSON_UNESCAPED_UNICODE),
  1311. 'status' => $data['status'],
  1312. 'ctime' => date('Y-m-d H:i:s'),
  1313. 'utime' => date('Y-m-d H:i:s'),
  1314. ];
  1315. //联赛结果数据处理
  1316. if (!empty($lg_result_id)) {
  1317. $ret = $model['model_league_result']::where(['id' => $lg_result_id])
  1318. ->update($set_lg_result);
  1319. if ($ret < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::ADD_LG_R_ERROR));//Render([], '10021', lang('Tips','Sports')->get('add_lg_r_error'));
  1320. } else {
  1321. $ret = $model['model_league_result']::insert($set_lg_result);
  1322. if ($ret != true) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::ADD_LG_R_ERROR));//Render([], '10021', lang('Tips','Sports')->get('add_lg_r_error'));
  1323. }
  1324. }
  1325. /*
  1326. * 写入赛事结果
  1327. */
  1328. public function com_result($opt = [], $gameName = '', $lg_id = '', $match_id = '')
  1329. {
  1330. $game_code = $opt['game_code'];
  1331. //根据球类代码获取相关model
  1332. $model = commonFunction::getModels($game_code, 1);
  1333. $data = $opt['data'];
  1334. //查询结果是否存在
  1335. $match_r_id = $model['model_result']::where(['match_id' => $match_id])
  1336. ->value('id');
  1337. $set_match_r = [
  1338. "home_team" => $data['home_team'],
  1339. "guest_team" => $data['guest_team'],
  1340. "lg_id" => $lg_id,
  1341. "home_rate" => $data['home_rate'],
  1342. "guest_rate" => $data['guest_rate'],
  1343. "home_score" => $data['home_score'],
  1344. "guest_score" => $data['guest_score'],
  1345. "all_goal" => $data['all_goal'],
  1346. "status" => $data['status'],
  1347. "first_score" => $data['first_score'],
  1348. "last_score" => $data['last_score'],
  1349. "match_score" => $data['match_score'],
  1350. "match_winer" => $data['match_winer'],
  1351. "match_time" => $data['match_time'],
  1352. "match_process" => $data['match_process'],
  1353. "tag" => $data['tag'],
  1354. "match_id" => $match_id,
  1355. "u_home_score" => $data['u_home_score'],
  1356. "u_guest_score" => $data['u_guest_score'],
  1357. "p_code" => $data['p_code'],
  1358. "update_time" => date('Y-m-d H:i:s')
  1359. ];
  1360. //赛事结果数据处理
  1361. if (!empty($match_r_id)) {
  1362. $ret = $model['model_result']::where(['id' => $match_r_id])
  1363. ->update($set_match_r);
  1364. if ($ret < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::ADD_MATCH_R_ERROR));//Render([], '10022', lang('Tips','Sports')->get('add_match_r_error'));
  1365. } else {
  1366. $ret = $model['model_result']::insert($set_match_r);
  1367. if ($ret != true) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::ADD_MATCH_R_ERROR));//Render([], '10022', lang('Tips','Sports')->get('add_match_r_error'));
  1368. }
  1369. // return Response::success();
  1370. }
  1371. //写入赛事结果记录
  1372. public function com_result_record($opt = [], $gameName = '', $lg_id = '', $match_id = '')
  1373. {
  1374. $game_code = $opt['game_code'];
  1375. //根据球类代码获取相关model
  1376. $model = commonFunction::getModels($game_code, 1);
  1377. $data = $opt['data'];
  1378. $match_r_id = $model['model_result_record']::where(['match_id' => $match_id, 'match_time' => $data['match_time']])
  1379. ->value('id');
  1380. //根据球类 获取 赛事结果记录字段
  1381. $set_match_r = $this->get_match_r($game_code, $lg_id, $match_id, $data);
  1382. //赛事结果记录处理
  1383. if ($match_r_id > 0) {
  1384. $ret = $model['model_result_record']::where(['id' => $match_r_id])
  1385. ->update($set_match_r);
  1386. if ($ret < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::ADD_MATCH_R_R_ERROR));//Render([], '10022', lang('Tips','Sports')->get('add_match_r_r_error'));
  1387. } else {
  1388. $ret = $model['model_result_record']::insert($set_match_r);
  1389. if ($ret != true) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::ADD_MATCH_R_R_ERROR));//Render([], '10022', lang('Tips','Sports')->get('add_match_r_r_error'));
  1390. }
  1391. }
  1392. /**
  1393. * @param $data
  1394. * @return mixed
  1395. * json转数组
  1396. */
  1397. public function getAddData($data)
  1398. {
  1399. $data = json_decode($data, true);
  1400. return $data;
  1401. }
  1402. /*
  1403. * 根据球类获取 赛事结果记录字段
  1404. */
  1405. public function get_match_r($game_code, $lg_id, $match_id, $data)
  1406. {
  1407. $set_match_r = [];
  1408. if ($game_code == 'zq') {
  1409. $set_match_r = [
  1410. "home_team" => $data['home_team'] ?: '',
  1411. "guest_team" => $data['guest_team'] ?: '',
  1412. "lg_id" => $lg_id,
  1413. "all_goal" => $data['all_goal'] ?: 0,
  1414. "home_rate" => $data['home_rate'] ?: 0,
  1415. "guest_rate" => $data['guest_rate'] ?: 0,
  1416. "home_score" => $data['home_score'] ?: 0,
  1417. "guest_score" => $data['guest_score'] ?: 0,
  1418. "status" => $data['status'] ?: 0,
  1419. "first_score" => $data['first_score'] ?: 0,
  1420. "last_score" => $data['last_score'] ?: 0,
  1421. "match_score" => $data['match_score'] ?: 0,
  1422. "match_winer" => $data['match_winer'] ?: '',
  1423. "match_time" => $data['match_time'] ?: 0,
  1424. "match_process" => $data['match_process'] ?: '',
  1425. // "tag"=> $data['tag']?:0,
  1426. "match_id" => $match_id,
  1427. "update_time" => date('Y-m-d H:i:s')
  1428. ];
  1429. };
  1430. if ($game_code == 'lq') {
  1431. $set_match_r = [
  1432. "home_team" => $data['home_team'] ?: '',
  1433. "guest_team" => $data['guest_team'] ?: '',
  1434. "lg_id" => $lg_id,
  1435. "home_rate" => $data['home_rate'] ?: 0,
  1436. "guest_rate" => $data['guest_rate'] ?: 0,
  1437. "home_score" => $data['home_score'] ?: 0,
  1438. "guest_score" => $data['guest_score'] ?: 0,
  1439. "status" => $data['status'] ?: 0,
  1440. "first_score" => $data['first_score'] ?: 0,
  1441. "last_score" => $data['last_score'] ?: 0,
  1442. "match_score" => $data['match_score'] ?: 0,
  1443. "match_winer" => $data['match_winer'] ?: '',
  1444. "match_time" => $data['match_time'] ?: 0,
  1445. "match_process" => $data['match_process'] ?: '',
  1446. // "tag"=> $data['tag']?:0,
  1447. "match_id" => $match_id,
  1448. "update_time" => date('Y-m-d H:i:s'),
  1449. "result_mark" => json_encode($data['result_mark']) ?: '',
  1450. ];
  1451. }
  1452. if ($game_code == 'wq') {
  1453. $set_match_r = [
  1454. "home_player_name" => $data['home_player_name'] ?: '',
  1455. "guest_player_name" => $data['guest_player_name'] ?: '',
  1456. "lg_id" => $lg_id,
  1457. "home_player_let_plate" => $data['home_player_let_plate'] ?: 0,
  1458. "guest_player_let_plate" => $data['guest_player_let_plate'] ?: 0,
  1459. "home_player_let_inning" => $data['home_player_let_inning'] ?: 0,
  1460. "guest_player_let_inning" => $data['guest_player_let_inning'] ?: 0,
  1461. "all_inning" => $data['all_inning'] ?: 0,
  1462. "home_player_score" => $data['home_player_score'] ?: 0,
  1463. "guest_player_score" => $data['guest_player_score'] ?: 0,
  1464. "status" => $data['status'] ?: 0,
  1465. "first_score_player" => $data['first_score_player'] ?: '',
  1466. "last_score_player" => $data['last_score_player'] ?: '',
  1467. "first_inning_score" => $data['first_inning_score'] ?: 0,
  1468. "second_inning_score" => $data['second_inning_score'] ?: 0,
  1469. "third_inning_score" => $data['third_inning_score'] ?: 0,
  1470. "match_winer_player" => $data['match_winer_player'] ?: '',
  1471. "update_time" => date('Y-m-d H:i:s'),
  1472. "match_time" => $data['match_time'] ?: 0,
  1473. "match_process" => $data['match_process'] ?: '',
  1474. // "tag"=>$data['tag']?:0,
  1475. "match_id" => $match_id,
  1476. "result_mark" => json_encode($data['result_mark']) ?: '',
  1477. ];
  1478. }
  1479. if ($game_code == 'bq') {
  1480. $set_match_r = [
  1481. "home_team" => $data['home_team'] ?: '',
  1482. "guest_team" => $data['guest_team'] ?: '',
  1483. "lg_id" => $lg_id,
  1484. "home_rate" => $data['home_rate'] ?: 0,
  1485. "guest_rate" => $data['guest_rate'] ?: 0,
  1486. "home_score" => $data['home_score'] ?: 0,
  1487. "guest_score" => $data['guest_score'] ?: 0,
  1488. "status" => $data['status'] ?: 0,
  1489. "first_score" => $data['first_score'] ?: 0,
  1490. "last_score" => $data['last_score'] ?: 0,
  1491. "match_score" => $data['match_score'] ?: 0,
  1492. "match_winer" => $data['match_winer'] ?: '',
  1493. "match_time" => $data['match_time'] ?: 0,
  1494. "match_process" => $data['match_process'] ?: '',
  1495. // "tag"=> $data['tag']?:0,
  1496. "match_id" => $match_id,
  1497. "all_inning" => $data['all_inning'] ?: 9,
  1498. "update_time" => date('Y-m-d H:i:s'),
  1499. "result_mark" => json_encode($data['result_mark']) ?: '',
  1500. ];
  1501. }
  1502. return $set_match_r;
  1503. }
  1504. /**
  1505. * 根据联赛名称 获取 国家 地区
  1506. */
  1507. public function getArea($leagueName = '')
  1508. {
  1509. //如果联赛名称有括号,去除
  1510. $leagueName = preg_replace('/\(.*?\)/', '', $leagueName);
  1511. //获取所有国家/地区
  1512. $areaData = StAreaCountryModel::select('id', 'pid', 'name')->get()->toArray();
  1513. //获取当前联赛所属国家
  1514. if (strpos($leagueName, 'NBA') !== false) {
  1515. $data = [
  1516. 'id' => 247,
  1517. 'pid' => 0,
  1518. 'name' => '世界'
  1519. ];
  1520. return $data;
  1521. }
  1522. //识别本地 国家地区数据
  1523. foreach ($areaData as $v => $k) {
  1524. if (strpos($leagueName, $k['name']) !== false) {
  1525. return $k;
  1526. }
  1527. }
  1528. //如果不能识别,则返回未知
  1529. $data = [
  1530. 'id' => 0,
  1531. 'pid' => 0,
  1532. 'name' => '未知国家或地区'
  1533. ];
  1534. return $data;
  1535. }
  1536. //写文本日志
  1537. private function writeLog($body, $ret)
  1538. {
  1539. go(function () use ($body, $ret) {
  1540. $json_data = json_encode($body, JSON_UNESCAPED_UNICODE);
  1541. $data = json_decode($body['data'], true);
  1542. $game_code = isset($data['game_code']) ? $data['game_code'] : '';
  1543. $title = isset($data['title']) ? $data['title'] : '';
  1544. $msg = is_string($ret) ? $ret : json_encode($ret, 256);
  1545. $now = explode(" ", microtime());
  1546. $wdata = date("Y-m-d", $now[1]);
  1547. $path = LOG_PATH . DS . $wdata . DS . $game_code . DS;
  1548. if (!file_exists($path)) {
  1549. $ret = mkdir($path, '0755', true);
  1550. if (!$ret) {
  1551. echo "$path --- Log File Create false \n";
  1552. return;
  1553. }
  1554. }
  1555. $lasttxt = date('Y-m-d H:i:s', $now[1]) . substr($now[0], 1, 5) . ' - ' . $msg . ' - ' . $json_data . "\n\n";
  1556. $file = $path . DS . $game_code . '_' . $title . '.log';
  1557. file_put_contents($file, $lasttxt, FILE_APPEND | LOCK_EX);
  1558. return;
  1559. });
  1560. return;
  1561. }
  1562. private function writeLog_db($body, $ret)
  1563. {
  1564. if (!is_string($body)) {
  1565. $body = json_encode([$body], 256);
  1566. }
  1567. if (!is_string($ret)) {
  1568. $ret = json_encode([$ret], 256);
  1569. }
  1570. $data = ['ctime' => date("Y-m-d H:i:s"), 'body' => $body, 'ret' => $ret];
  1571. $return = DB::table('datainf_log')->insert($data);
  1572. return $return;
  1573. }
  1574. }