DataLogic.php 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716
  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. try {
  760. //开启事务
  761. DB::beginTransaction();
  762. //获取待更新赛事
  763. $obt = $data['data'];
  764. //请求 数据 为空
  765. if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
  766. $getData = $this->getAddData($obt);
  767. //不是 直播 数据
  768. if ($getData['title'] != '"match_status",') throw new \Exception(Response::generate('不是更新赛事状态数据', Response::ABNORMAL));
  769. //写请求数据 日志记录
  770. if ($this->isRecord) {
  771. $setSportsRecord = St_set_sports_recordModel::setSportsRecord($getData['title'], $obt, $getData);
  772. if ($setSportsRecord < 1) throw new \Exception(Response::generate('', Response::SPORTS_RECORD_ERR));
  773. }
  774. //获取 球类代码
  775. $game_code = $data['game_code'];
  776. //获取 数据源
  777. $source = $data['source'];
  778. //获取所有数据源赛事 match_id
  779. $others_match_ids = [];
  780. foreach ($data['data'] as $k => $v) {
  781. $others_match_ids[] = $v['match_id'];
  782. }
  783. //根据球类代码 获取model
  784. $model = commonFunction::getModels($game_code, 1);
  785. //获取所有赛事 match_id
  786. $local_match = $model['model_local_match']::SELECT('others_match_id', 'match_id')
  787. ->where(['source' => $source])
  788. ->whereIn('others_match_id', $others_match_ids)
  789. ->get()->toArray();
  790. if (empty($local_match)) throw new \Exception(Response::generate('', Response::MATCHID_NULL));
  791. //更新状态字段
  792. foreach ($local_match as $k => $v) {
  793. $set_status = [
  794. 'status' => $v['status'],
  795. 'is_rollball' => $v['is_rollball'],
  796. 'stais_todaytus' => $v['is_today'],
  797. 'is_morningplate' => $v['is_morningplate'],
  798. 'is_stringscene' => $v['is_stringscene'],
  799. 'is_horn' => $v['is_horn'],
  800. ];
  801. $ret = $model['model_match']::where(['id' => $v['match_id']])
  802. ->update($set_status);
  803. if ($ret < 1) throw new \Exception(Response::generate(gameModel::getGameName($game_code) . '赛事-match_id:' . $v['others_match_id'], Response::UPSTATUS_ERROR));
  804. }
  805. $this->writeLog($data, Response::success());
  806. //提交事务
  807. DB::commit();
  808. return Response::success();
  809. } catch (\Exception $e) {
  810. //回滚事务
  811. DB::rollBack();
  812. $this->writeLog($data, ['file' => $e->getFile(), 'line' => $e->getLine(), 'msg' => $e->getMessage()]);
  813. return $e->getMessage();
  814. }
  815. }
  816. /*
  817. *写 冠军联赛 赔率 数据
  818. *每个请求 包含 N个联赛 下 N条赔率
  819. */
  820. public function setOddsCH($data)
  821. {
  822. try {
  823. //开启事务
  824. DB::beginTransaction();
  825. $obt = $data['data'];
  826. //请求 数据 为空
  827. if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
  828. $getData = $this->getAddData($obt);
  829. //不是 冠军 赔率 数据
  830. if ($getData['title'] != 'odds_ch') throw new \Exception(Response::generate('不是冠军赔率数据,', Response::ABNORMAL));
  831. //写请求数据 日志记录
  832. if ($this->isRecord) {
  833. $setSportsRecord = St_set_sports_recordModel::setSportsRecord($getData['title'], $obt, $getData);
  834. if ($setSportsRecord < 1) throw new \Exception(Response::generate('', Response::SPORTS_RECORD_ERR));
  835. }
  836. //获取球类代码
  837. $game_code = $getData['game_code'];
  838. //获取数据源
  839. $source = $getData['source'];
  840. //获取球类名称
  841. $gameName = gameModel::getGameName($game_code);
  842. //获取 model
  843. $models = commonFunction::getModels($game_code, 1);
  844. //获取 赔率数据
  845. $oddsData = $getData['data'];
  846. //获取 当前 所有 可用 赔率 sole
  847. $odds_only = $getData['odds_only'];
  848. //====验证 请求里 所有赔率 所属联赛 是否存在 ====
  849. //获取 当前请求 所有 联赛 uuid
  850. $uuids = [];
  851. $s_lg_ids = [];
  852. foreach ($oddsData as $k => $v) {
  853. $uuids[] = $v['uuid'];
  854. $s_lg_ids[] = $v['lg_id'];
  855. }
  856. $s_lg_ids = array_unique($s_lg_ids);
  857. $uuids = array_unique($uuids);
  858. sort($uuids);
  859. sort($s_lg_ids);
  860. //更新联赛下所有 不在本次请求的赔率 状态
  861. $ret = OddsModel::upOddsStatus($models, '', $s_lg_ids, $source, $odds_only);
  862. if ($ret != true) throw new \Exception(Response::generate($gameName, Response::ODDS_SOLE_ERR));
  863. //获取 本地 已存在 联赛
  864. $l_lg_data = $models['model_local_league']::whereIn('identity', $uuids)->select('identity', 'lg_id')->get()->toArray();
  865. //二维数组去重
  866. $l_lg_data = commonFunction::uniquArrV2($l_lg_data, 'identity');
  867. //循环对比 请求uuid->本地uuid
  868. foreach ($l_lg_data as $k => $v) {
  869. foreach ($uuids as $kk => $uuid) {
  870. if ($v['identity'] == $uuid) {
  871. unset($uuids[$kk]);
  872. }
  873. }
  874. }
  875. //去除本地和请求里都存在的联赛,如果还有剩余联赛id,则返回异常;
  876. if (!empty($uuids)) throw new \Exception(Response::generate($gameName . '冠军联赛:uuid-' . $uuids[0] . ';', Response::LEAGUE_ERROR));
  877. //====end====
  878. //赔率记录数据
  879. $set_odds_r = [];
  880. //赔率数据
  881. $set_odds = [];
  882. if (!empty($oddsData)) {
  883. foreach ($oddsData as $k => $v) {
  884. //获取 本地 联赛 ID
  885. $lg_id = commonFunction::searcharray($v['uuid'], 'identity', $l_lg_data, 'lg_id');
  886. //组装赔率记录数据
  887. $set_odds_r[] = [
  888. 'match_id' => 0,
  889. 'others_match_id' => $v['match_id'] ?: 0,
  890. 'odds_code' => $v['odds_code'] ?: '',
  891. 'status' => $v['status'] ?: 0,
  892. 'sort' => $v['sort'] ?: 0,
  893. 'p_code' => $v['p_code'] ?: '',
  894. 'odds' => $v['odds'] ?: 0,
  895. 'condition' => $v['condition'],
  896. 'odds_only' => $v['odds_only'] ?: '',
  897. 'source' => $v['source'] ?: '',
  898. 'type' => $v['type'] ?: 1,
  899. 'team' => $v['team'] ?: '',
  900. 'lg_id' => $lg_id,
  901. 'others_lg_id' => $v['lg_id'],
  902. 'ctime' => date('Y-m-d H:i:s'),
  903. 'utime' => date('Y-m-d H:i:s'),
  904. ];
  905. }
  906. foreach ($oddsData as $k => $v) {
  907. //获取 本地 联赛 ID
  908. $lg_id = commonFunction::searcharray($v['uuid'], 'identity', $l_lg_data, 'lg_id');
  909. //组装赔率数据
  910. $set_odds[] = [
  911. 'match_id' => 0,
  912. 'others_match_id' => $v['match_id'] ?: 0,
  913. 'odds_code' => $v['odds_code'] ?: '',
  914. 'status' => $v['status'] ?: 0,
  915. 'sort' => $v['sort'] ?: 0,
  916. 'p_code' => $v['p_code'] ?: '',
  917. 'odds' => $v['odds'] ?: 0,
  918. 'condition' => $v['condition'],
  919. 'odds_only' => $v['odds_only'] ?: '',
  920. 'source' => $v['source'] ?: '',
  921. 'type' => $v['type'] ?: 1,
  922. 'team' => $v['team'] ?: '',
  923. 'lg_id' => $lg_id,
  924. 'others_lg_id' => $v['lg_id'],
  925. 'ctime' => date('Y-m-d H:i:s'),
  926. 'utime' => date('Y-m-d H:i:s'),
  927. 'sole' => $v['sole'],
  928. 'expire_time' => date('Y-m-d H:i:s', time() + 60)
  929. ];
  930. }
  931. //写赔率记录数据
  932. $ret = $models['model_odds_record']::insert($set_odds_r);
  933. if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率记录;', Response::ADD_ODDS_R_ERROR));
  934. //写赔率 数据
  935. $ret = $models['model_odds']::insert($set_odds);
  936. if ($ret != true) throw new \Exception(Response::generate($gameName . '赔率;', Response::ADD_ODDS_ERROR));
  937. }
  938. $this->writeLog($data, Response::success());
  939. //提交事务
  940. DB::commit();
  941. return Response::success();
  942. } catch (\Exception $e) {
  943. //回滚事务
  944. DB::rollBack();
  945. $this->writeLog($data, ['file' => $e->getFile(), 'line' => $e->getLine(), 'msg' => $e->getMessage()]);
  946. return $e->getMessage();
  947. }
  948. }
  949. /*
  950. * 写入直播 数据
  951. */
  952. public function setBroadCast($data)
  953. {
  954. $data_s = $data['data'];
  955. try {
  956. //开启事务
  957. DB::beginTransaction();
  958. $obt = $data['data'];
  959. //请求 数据 为空
  960. if (empty($obt)) throw new \Exception(Response::generate('请求数据为空,', Response::ABNORMAL));
  961. $getData = $this->getAddData($obt);
  962. //不是 直播 数据
  963. if ($getData['title'] != 'broad_cast') throw new \Exception(Response::generate('不是直播数据,', Response::ABNORMAL));
  964. //写请求数据 日志记录
  965. if ($this->isRecord) {
  966. $setSportsRecord = St_set_sports_recordModel::setSportsRecord($getData['title'], $obt, $getData);
  967. if ($setSportsRecord < 1) throw new \Exception(Response::generate('', Response::SPORTS_RECORD_ERR));
  968. }
  969. //获取 球类
  970. $game_code = $getData['game_code'];
  971. //删除当前球类已存在的直播数据
  972. $del = broadcastModel::where('game_code', $game_code)->delete();
  973. if ($del != true) throw new \Exception(Response::generate('', Response::DEL_PAST_BROADCAST_ERR));
  974. //获取 直播 数据
  975. $BroadCast = $getData['data'];
  976. $set_broadcast = [];
  977. foreach ($BroadCast as $k => $data) {
  978. //组装数据
  979. $set_broadcast[] = [
  980. "doing" => $data['doing'],
  981. "game_type" => $data['game_type'],
  982. "game_code" => $game_code,
  983. "guest_team" => $data['guest_team'],
  984. "host_team" => $data['host_team'],
  985. "league_name" => $data['league_name'],
  986. "shower" => $data['shower'],
  987. "showid" => (int)$data['showid'],
  988. "start_time" => $data['start_time'],
  989. "ctime" => date('Y-m-d H:i:s'),
  990. "utime" => date('Y-m-d H:i:s'),
  991. ];
  992. }
  993. //写入 直播 数据
  994. $ret = broadcastModel::insert($set_broadcast);
  995. if ($ret == false) throw new \Exception(Response::generate('', Response::BROADCAST_ERROR));
  996. $this->writeLog($data_s, Response::success());
  997. //提交事务
  998. DB::commit();
  999. return Response::success();
  1000. } catch (\Exception $e) {
  1001. //回滚事务
  1002. DB::rollBack();
  1003. $this->writeLog($data_s, ['file' => $e->getFile(), 'line' => $e->getLine(), 'msg' => $e->getMessage()]);
  1004. return $e->getMessage();
  1005. }
  1006. }
  1007. /*
  1008. * 验证所属 联赛 是否存在
  1009. */
  1010. public function leagueVerify($models = [], $uuid = '', $source = '', $gameName = '')
  1011. {
  1012. if (empty($models) || empty($uuid)) throw new \Exception(Response::generate('', Response::ABNORMAL));
  1013. $l_lg_id = $models['model_local_league']::where(['identity' => $uuid])->value('lg_id');
  1014. if ($l_lg_id < 1) throw new \Exception(Response::generate($gameName . '联赛:lg_id-' . $uuid, Response::LEAGUE_ERROR));
  1015. return $l_lg_id;
  1016. }
  1017. /*
  1018. * 验证所属 赛事 是否存在
  1019. */
  1020. public function matchVerify($models = [], $s_match_id = '', $source = '', $gameName = '')
  1021. {
  1022. if (empty($models) || empty($s_match_id)) throw new \Exception(Response::generate('', Response::ABNORMAL));
  1023. $l_match_id = $models['model_local_match']::where(['others_match_id' => $s_match_id, 'source' => $source])->value('match_id');
  1024. if ($l_match_id < 1) throw new \Exception(Response::generate($gameName . '赛事:match_id-' . $s_match_id, Response::MATCH_ERROR));
  1025. return $l_match_id;
  1026. }
  1027. /*
  1028. * 写入直播 数据
  1029. */
  1030. public function broadcast($opt = [], $game_code = '')
  1031. {
  1032. $data = $opt['data'];
  1033. $set_broadcast = [
  1034. "doing" => $data['doing'],
  1035. "game_type" => $data['game_type'],
  1036. "game_code" => $game_code,
  1037. "guest_team" => $data['guest_team'],
  1038. "host_team" => $data['host_team'],
  1039. "league_name" => $data['league_name'],
  1040. "shower" => $data['shower'],
  1041. "showid" => (int)$data['showid'],
  1042. "start_time" => $data['start_time'],
  1043. "ctime" => date('Y-m-d H:i:s'),
  1044. "utime" => date('Y-m-d H:i:s'),
  1045. ];
  1046. $ret = broadcastModel::insert($set_broadcast);
  1047. if ($ret == false) throw new \Exception(Response::generate('', Response::BROADCAST_ERROR));
  1048. }
  1049. /*
  1050. * 写入 赛事 初始 结果
  1051. */
  1052. public function match_result($game_code = '')
  1053. {
  1054. $model = commonFunction::getModels($game_code, 1);
  1055. if ($game_code == 'zq') ZqResultModel::ZQresult($model);
  1056. if ($game_code == 'lq') LqResultModel::LQresult($model);
  1057. if ($game_code == 'wq') WqResultModel::WQresult($model);
  1058. if ($game_code == 'bq') BqResultModel::BQresult($model);
  1059. }
  1060. /*
  1061. * 写入联赛数据
  1062. */
  1063. public function league($opt = [], $gameName = '')
  1064. {
  1065. $game_code = $opt['game_code'];
  1066. //根据球类代码获取相关model
  1067. $model = commonFunction::getModels($game_code, 1);
  1068. $data = $opt['data'];
  1069. //查询联赛是否已存在
  1070. $id = $model['model_league']::where('name_chinese', '=', $data['name_chinese'])
  1071. ->value('id');
  1072. //默认获取本年最后一天
  1073. $last_time = date('Y-12-31 23:59:59');
  1074. //决赛时间
  1075. if ($data['last_time']) {
  1076. $last_time = $data['last_time'];
  1077. }
  1078. $set_lg['name_chinese'] = $data['name_chinese'];
  1079. $set_lg['kind'] = $data['kind'];
  1080. $set_lg['match_mode'] = $data['match_mode'];
  1081. $set_lg['if_stop'] = $data['if_stop'];
  1082. $set_lg['identity'] = $data['uuid'] ?: '';
  1083. $set_lg['last_time'] = $last_time;
  1084. $set_lg['utime'] = date('Y-m-d H:i:s');
  1085. if (empty($id)) {
  1086. //写入联赛
  1087. $id = $model['model_league']::insertGetId($set_lg);
  1088. $m_lg_id = $id;
  1089. if ($m_lg_id < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::INSERT_ERROR));
  1090. } else {
  1091. //更新联赛
  1092. $ret = $model['model_league']::where(['id' => $id])
  1093. ->update($set_lg);
  1094. if ($ret < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::UPDATE_ERROR));
  1095. }
  1096. $set_local = [
  1097. 'lg_id' => $id,
  1098. 'others_lg_id' => $data['lg_id'],
  1099. 'source' => $data['source'],
  1100. 'ctime' => date('Y-m-d H:i:s')
  1101. ];
  1102. $ret = $model['model_local_league']::insertGetId($set_local);
  1103. 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'));
  1104. //执行成功返回源数据 联赛ID
  1105. $data = ['others_lg_id' => $data['lg_id'], 'lg_id' => $id];
  1106. return $data;
  1107. }
  1108. /*
  1109. * 写入赛事数据
  1110. */
  1111. public function competition($opt = [], $gameName = '', $lg_id = '')
  1112. {
  1113. $game_code = $opt['game_code'];
  1114. //根据球类代码获取相关model
  1115. $model = commonFunction::getModels($game_code, 1);
  1116. $data = $opt['data'];
  1117. if (empty($data['lg_id'])) throw new \Exception(Response::generate('', Response::LEAGUE_ERROR));//Render([], '10015', lang('Tips','Sports')->get('league_error'));
  1118. //查询赛事是否存在
  1119. $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']])
  1120. ->value('id');
  1121. $half_match_id = 0;
  1122. //如果有上半场赛事id 获取上半场赛事是否存在
  1123. if (!empty($data['half_match_id'])) {
  1124. $half_match_id = $match_id = $model['model_local_match']::where(['others_match_id' => $data['half_match_id'], 'source' => $data['source']])
  1125. ->value('match_id');
  1126. 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'));
  1127. }
  1128. //如果赛事没有开始日期,则为冠军盘口赛事
  1129. if (empty($data['match_date'])) {
  1130. //冠军盘口赛事获取所属联赛结束时间
  1131. $last_time = $model['model_league']::where(['id' => $lg_id])
  1132. ->value('last_time');
  1133. 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'));
  1134. //给冠军盘口赛事 赋值时间
  1135. $time = strtotime($last_time);
  1136. $data['match_date'] = date('Y-m-d', $time);
  1137. $data['match_time'] = date('H:i:s', $time);
  1138. }
  1139. $set_match = [
  1140. 'ctime' => date('Y-m-d H:i:s'),
  1141. 'utime' => date('Y-m-d H:i:s'),
  1142. 'expire_time' => date('Y-m-d H:i:s', time() + 60),
  1143. 'home_team' => $data['home_team'] ?: '',
  1144. 'guest_team' => $data['guest_team'] ?: 'no_team',
  1145. 'lg_id' => $lg_id,
  1146. 'status' => $data['status'],
  1147. 'match_date' => $data['match_date'] ?: date('Y-m-d'),
  1148. 'match_time' => $data['match_time'] ?: date('H:i:s'),
  1149. 'tag' => $data['tag'] ?: 0,
  1150. 'is_rollball' => $data['is_rollball'] ?: 0,
  1151. 'is_today' => $data['is_today'] ?: 0,
  1152. 'is_morningplate' => $data['is_morningplate'] ?: 0,
  1153. 'is_stringscene' => $data['is_stringscene'] ?: 0,
  1154. 'us_time' => $data['us_time'] ?: commonFunction::qgmdate('Y-m-d H:i:s', '', -4),
  1155. 'half_match_id' => $half_match_id ?: 0,
  1156. 'identity' => $data['uuid'],
  1157. ];
  1158. //写入赛事
  1159. if (empty($id)) {
  1160. //写入赛事 返回id
  1161. $id = $model['model_match']::insertGetId($set_match);
  1162. if ($id < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::INSERT_ERROR));
  1163. } else {
  1164. //更新赛事
  1165. $ret = $model['model_match']::where(['id' => $id])->update($set_match);
  1166. if ($ret < 1) throw new \Exception(Response::generate($gameName . '赛事-match_id:' . $data['match_id'] . ';', Response::UPDATE_ERROR));
  1167. }
  1168. //写关联记录
  1169. $set_local = [
  1170. 'match_id' => $id,
  1171. 'others_match_id' => $data['match_id'],
  1172. 'source' => $data['source'],
  1173. 'ctime' => date('Y-m-d H:i:s')
  1174. ];
  1175. $ret = $model['model_local_match']::insertGetId($set_local);
  1176. 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'));
  1177. //返回 源数据 赛事ID
  1178. $data = ['others_match_id' => $data['match_id'], 'match_id' => $id];
  1179. return $data;
  1180. }
  1181. /*
  1182. * 写入赔率/赔率记录数据
  1183. */
  1184. public function odds($opt = [], $gameName = '', $lg_id = 0, $match_id = 0, $oddsID = '', $oddsRecordID = '')
  1185. {
  1186. $game_code = $opt['game_code'];
  1187. //根据球类代码获取相关model
  1188. $model = commonFunction::getModels($game_code, 1);
  1189. $data = $opt['data'];
  1190. //获取赛事 本地/源ID
  1191. $others_match_id = $data['match_id'];
  1192. //获取联赛 本地/源ID
  1193. $others_lg_id = $data['lg_id'];
  1194. //===写赔率记录===
  1195. $set_odds_r = [
  1196. 'match_id' => $match_id ?: 0,
  1197. 'others_match_id' => $others_match_id ?: 0,
  1198. 'odds_code' => $data['odds_code'] ?: '',
  1199. 'status' => $data['status'] ?: 0,
  1200. 'sort' => $data['sort'] ?: 0,
  1201. 'p_code' => $data['p_code'] ?: '',
  1202. 'odds' => $data['odds'] ?: 0,
  1203. 'condition' => $data['condition'],
  1204. 'odds_only' => $data['odds_only'] ?: '',
  1205. 'source' => $data['source'] ?: '',
  1206. 'type' => $data['type'] ?: 0,
  1207. 'team' => $data['team'] ?: '',
  1208. 'lg_id' => $lg_id,
  1209. 'others_lg_id' => $others_lg_id,
  1210. 'ctime' => date('Y-m-d H:i:s'),
  1211. ];
  1212. //更新或写入赔率记录
  1213. if ($oddsRecordID != false) {
  1214. $ret = $model['model_odds_record']::where(['id' => $oddsRecordID])
  1215. ->update($set_odds_r);
  1216. 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'));
  1217. } else {
  1218. $ret = $model['model_odds_record']::insert($set_odds_r);
  1219. 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'));
  1220. }
  1221. //===写赔率===
  1222. $set_odds = [
  1223. 'match_id' => $match_id ?: 0,
  1224. 'others_match_id' => $others_match_id ?: 0,
  1225. 'odds_code' => $data['odds_code'] ?: '',
  1226. 'status' => $data['status'] ?: 0,
  1227. 'sort' => $data['sort'] ?: 0,
  1228. 'p_code' => $data['p_code'] ?: '',
  1229. 'odds' => $data['odds'] ?: 0,
  1230. 'condition' => $data['condition'],
  1231. 'odds_only' => $data['odds_only'] ?: '',
  1232. 'sole' => $data['sole'] ?: '',
  1233. 'source' => $data['source'] ?: '',
  1234. 'type' => $data['type'] ?: 0,
  1235. 'team' => $data['team'] ?: '',
  1236. 'lg_id' => $lg_id,
  1237. 'others_lg_id' => $others_lg_id,
  1238. 'ctime' => date('Y-m-d H:i:s'),
  1239. 'utime' => date('Y-m-d H:i:s'),
  1240. 'expire_time' => date('Y-m-d H:i:s', time() + 60),
  1241. ];
  1242. //更新或写入赔率数据
  1243. if ($oddsID != false) {
  1244. $ret = $model['model_odds']::where(['id' => $oddsID])
  1245. ->update($set_odds);
  1246. 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'));
  1247. } else {
  1248. $ret = $model['model_odds']::insert($set_odds);
  1249. 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'));
  1250. }
  1251. //===end===
  1252. }
  1253. /*
  1254. * 更新 赛事下 所有不在本次请求的 赔率状态
  1255. */
  1256. public function upOddsStatus($opt = [], $gameName = '')
  1257. {
  1258. //获取球类代码
  1259. $game_code = $opt['game_code'];
  1260. //获取球类model
  1261. $model = commonFunction::getModels($game_code, 1);
  1262. //赛事下 所有 赔率sole
  1263. $odds_sole = $opt['data'];
  1264. //数据源 赛事 id
  1265. $others_match_id = $opt['match_id'];
  1266. //数据源
  1267. $source = $opt['source'];
  1268. //更新赛事下所有 不在本次请求的赔率 状态
  1269. $ret = OddsModel::getMatchSole($model, $others_match_id, '', $source, $odds_sole);
  1270. if ($ret != true) throw new \Exception(Response::generate($gameName, Response::ODDS_SOLE_ERR));
  1271. }
  1272. /*
  1273. * 写入联赛结果
  1274. */
  1275. public function league_result($opt, $gameName)
  1276. {
  1277. $game_code = $opt['game_code'];
  1278. //根据球类代码获取相关model
  1279. $model = commonFunction::getModels($game_code, 1);
  1280. $data = $opt['data'];
  1281. //验证结果所属联赛
  1282. $lg_id = $model['model_local_league']::where(['others_lg_id' => $data['lg_id'], 'source' => $data['source']])
  1283. ->value('lg_id');
  1284. if ($lg_id < 1) throw new \Exception(Response::generate($gameName . '联赛-lg_id:' . $data['lg_id'] . ';', Response::LEAGUE_ERROR));
  1285. $lg_result_id = $model['model_league_result']::where(['lg_id' => $lg_id, 'game_name' => $data['game_name']])
  1286. ->value('id');
  1287. $set_lg_result = [
  1288. 'lg_id' => $lg_id,
  1289. 'game_name' => $data['game_name'],
  1290. 'result' => json_encode($data['result'], JSON_UNESCAPED_UNICODE),
  1291. 'status' => $data['status'],
  1292. 'ctime' => date('Y-m-d H:i:s'),
  1293. 'utime' => date('Y-m-d H:i:s'),
  1294. ];
  1295. //联赛结果数据处理
  1296. if (!empty($lg_result_id)) {
  1297. $ret = $model['model_league_result']::where(['id' => $lg_result_id])
  1298. ->update($set_lg_result);
  1299. 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'));
  1300. } else {
  1301. $ret = $model['model_league_result']::insert($set_lg_result);
  1302. 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'));
  1303. }
  1304. }
  1305. /*
  1306. * 写入赛事结果
  1307. */
  1308. public function com_result($opt = [], $gameName = '', $lg_id = '', $match_id = '')
  1309. {
  1310. $game_code = $opt['game_code'];
  1311. //根据球类代码获取相关model
  1312. $model = commonFunction::getModels($game_code, 1);
  1313. $data = $opt['data'];
  1314. //查询结果是否存在
  1315. $match_r_id = $model['model_result']::where(['match_id' => $match_id])
  1316. ->value('id');
  1317. $set_match_r = [
  1318. "home_team" => $data['home_team'],
  1319. "guest_team" => $data['guest_team'],
  1320. "lg_id" => $lg_id,
  1321. "home_rate" => $data['home_rate'],
  1322. "guest_rate" => $data['guest_rate'],
  1323. "home_score" => $data['home_score'],
  1324. "guest_score" => $data['guest_score'],
  1325. "all_goal" => $data['all_goal'],
  1326. "status" => $data['status'],
  1327. "first_score" => $data['first_score'],
  1328. "last_score" => $data['last_score'],
  1329. "match_score" => $data['match_score'],
  1330. "match_winer" => $data['match_winer'],
  1331. "match_time" => $data['match_time'],
  1332. "match_process" => $data['match_process'],
  1333. "tag" => $data['tag'],
  1334. "match_id" => $match_id,
  1335. "u_home_score" => $data['u_home_score'],
  1336. "u_guest_score" => $data['u_guest_score'],
  1337. "p_code" => $data['p_code'],
  1338. "update_time" => date('Y-m-d H:i:s')
  1339. ];
  1340. //赛事结果数据处理
  1341. if (!empty($match_r_id)) {
  1342. $ret = $model['model_result']::where(['id' => $match_r_id])
  1343. ->update($set_match_r);
  1344. 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'));
  1345. } else {
  1346. $ret = $model['model_result']::insert($set_match_r);
  1347. 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'));
  1348. }
  1349. // return Response::success();
  1350. }
  1351. //写入赛事结果记录
  1352. public function com_result_record($opt = [], $gameName = '', $lg_id = '', $match_id = '')
  1353. {
  1354. $game_code = $opt['game_code'];
  1355. //根据球类代码获取相关model
  1356. $model = commonFunction::getModels($game_code, 1);
  1357. $data = $opt['data'];
  1358. $match_r_id = $model['model_result_record']::where(['match_id' => $match_id, 'match_time' => $data['match_time']])
  1359. ->value('id');
  1360. //根据球类 获取 赛事结果记录字段
  1361. $set_match_r = $this->get_match_r($game_code, $lg_id, $match_id, $data);
  1362. //赛事结果记录处理
  1363. if ($match_r_id > 0) {
  1364. $ret = $model['model_result_record']::where(['id' => $match_r_id])
  1365. ->update($set_match_r);
  1366. 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'));
  1367. } else {
  1368. $ret = $model['model_result_record']::insert($set_match_r);
  1369. 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'));
  1370. }
  1371. }
  1372. /**
  1373. * @param $data
  1374. * @return mixed
  1375. * json转数组
  1376. */
  1377. public function getAddData($data)
  1378. {
  1379. $data = json_decode($data, true);
  1380. return $data;
  1381. }
  1382. /*
  1383. * 根据球类获取 赛事结果记录字段
  1384. */
  1385. public function get_match_r($game_code, $lg_id, $match_id, $data)
  1386. {
  1387. $set_match_r = [];
  1388. if ($game_code == 'zq') {
  1389. $set_match_r = [
  1390. "home_team" => $data['home_team'] ?: '',
  1391. "guest_team" => $data['guest_team'] ?: '',
  1392. "lg_id" => $lg_id,
  1393. "all_goal" => $data['all_goal'] ?: 0,
  1394. "home_rate" => $data['home_rate'] ?: 0,
  1395. "guest_rate" => $data['guest_rate'] ?: 0,
  1396. "home_score" => $data['home_score'] ?: 0,
  1397. "guest_score" => $data['guest_score'] ?: 0,
  1398. "status" => $data['status'] ?: 0,
  1399. "first_score" => $data['first_score'] ?: 0,
  1400. "last_score" => $data['last_score'] ?: 0,
  1401. "match_score" => $data['match_score'] ?: 0,
  1402. "match_winer" => $data['match_winer'] ?: '',
  1403. "match_time" => $data['match_time'] ?: 0,
  1404. "match_process" => $data['match_process'] ?: '',
  1405. //"tag" => $data['tag'] ?: 0,
  1406. "match_id" => $match_id,
  1407. "update_time" => date('Y-m-d H:i:s')
  1408. ];
  1409. };
  1410. if ($game_code == 'lq') {
  1411. $set_match_r = [
  1412. "home_team" => $data['home_team'] ?: '',
  1413. "guest_team" => $data['guest_team'] ?: '',
  1414. "lg_id" => $lg_id,
  1415. "home_rate" => $data['home_rate'] ?: 0,
  1416. "guest_rate" => $data['guest_rate'] ?: 0,
  1417. "home_score" => $data['home_score'] ?: 0,
  1418. "guest_score" => $data['guest_score'] ?: 0,
  1419. "status" => $data['status'] ?: 0,
  1420. "first_score" => $data['first_score'] ?: 0,
  1421. "last_score" => $data['last_score'] ?: 0,
  1422. "match_score" => $data['match_score'] ?: 0,
  1423. "match_winer" => $data['match_winer'] ?: '',
  1424. "match_time" => $data['match_time'] ?: 0,
  1425. "match_process" => $data['match_process'] ?: '',
  1426. //"tag" => $data['tag'] ?: 0,
  1427. "match_id" => $match_id,
  1428. "update_time" => date('Y-m-d H:i:s'),
  1429. "result_mark" => json_encode($data['result_mark']) ?: '',
  1430. ];
  1431. }
  1432. if ($game_code == 'wq') {
  1433. $set_match_r = [
  1434. "home_player_name" => $data['home_player_name'] ?: '',
  1435. "guest_player_name" => $data['guest_player_name'] ?: '',
  1436. "lg_id" => $lg_id,
  1437. "home_player_let_plate" => $data['home_player_let_plate'] ?: 0,
  1438. "guest_player_let_plate" => $data['guest_player_let_plate'] ?: 0,
  1439. "home_player_let_inning" => $data['home_player_let_inning'] ?: 0,
  1440. "guest_player_let_inning" => $data['guest_player_let_inning'] ?: 0,
  1441. "all_inning" => $data['all_inning'] ?: 0,
  1442. "home_player_score" => $data['home_player_score'] ?: 0,
  1443. "guest_player_score" => $data['guest_player_score'] ?: 0,
  1444. "status" => $data['status'] ?: 0,
  1445. "first_score_player" => $data['first_score_player'] ?: '',
  1446. "last_score_player" => $data['last_score_player'] ?: '',
  1447. "first_inning_score" => $data['first_inning_score'] ?: 0,
  1448. "second_inning_score" => $data['second_inning_score'] ?: 0,
  1449. "third_inning_score" => $data['third_inning_score'] ?: 0,
  1450. "match_winer_player" => $data['match_winer_player'] ?: '',
  1451. "update_time" => date('Y-m-d H:i:s'),
  1452. "match_time" => $data['match_time'] ?: 0,
  1453. "match_process" => $data['match_process'] ?: '',
  1454. //"tag" => $data['tag'] ?: 0,
  1455. "match_id" => $match_id,
  1456. "result_mark" => $data['result_mark'] ?: '',
  1457. ];
  1458. }
  1459. if ($game_code == 'bq') {
  1460. $set_match_r = [
  1461. "home_team" => $data['home_team'] ?: '',
  1462. "guest_team" => $data['guest_team'] ?: '',
  1463. "lg_id" => $lg_id,
  1464. "home_rate" => $data['home_rate'] ?: 0,
  1465. "guest_rate" => $data['guest_rate'] ?: 0,
  1466. "home_score" => $data['home_score'] ?: 0,
  1467. "guest_score" => $data['guest_score'] ?: 0,
  1468. "status" => $data['status'] ?: 0,
  1469. "first_score" => $data['first_score'] ?: 0,
  1470. "last_score" => $data['last_score'] ?: 0,
  1471. "match_score" => $data['match_score'] ?: 0,
  1472. "match_winer" => $data['match_winer'] ?: '',
  1473. "match_time" => $data['match_time'] ?: 0,
  1474. "match_process" => $data['match_process'] ?: '',
  1475. //"tag" => $data['tag'] ?: 0,
  1476. "match_id" => $match_id,
  1477. "all_inning" => $data['all_inning'] ?: 9,
  1478. "update_time" => date('Y-m-d H:i:s'),
  1479. "result_mark" => $data['result_mark'] ?: '',
  1480. ];
  1481. }
  1482. return $set_match_r;
  1483. }
  1484. /**
  1485. * 根据联赛名称 获取 国家 地区
  1486. */
  1487. public function getArea($leagueName = '')
  1488. {
  1489. //如果联赛名称有括号,去除
  1490. $leagueName = preg_replace('/\(.*?\)/', '', $leagueName);
  1491. //获取所有国家/地区
  1492. $areaData = StAreaCountryModel::select('id', 'pid', 'name')->get()->toArray();
  1493. //获取当前联赛所属国家
  1494. if (strpos($leagueName, 'NBA') !== false) {
  1495. $data = [
  1496. 'id' => 247,
  1497. 'pid' => 0,
  1498. 'name' => '世界'
  1499. ];
  1500. return $data;
  1501. }
  1502. //识别本地 国家地区数据
  1503. foreach ($areaData as $v => $k) {
  1504. if (strpos($leagueName, $k['name']) !== false) {
  1505. return $k;
  1506. }
  1507. }
  1508. //如果不能识别,则返回未知
  1509. $data = [
  1510. 'id' => 0,
  1511. 'pid' => 0,
  1512. 'name' => '未知国家或地区'
  1513. ];
  1514. return $data;
  1515. }
  1516. //写文本日志
  1517. private function writeLog($body, $ret)
  1518. {
  1519. $json_data = json_encode($body, JSON_UNESCAPED_UNICODE);
  1520. $data = json_decode($body['data'], true);
  1521. $game_code = isset($data['game_code']) ? $data['game_code'] : '';
  1522. $title = isset($data['title']) ? $data['title'] : '';
  1523. $msg = is_string($ret) ? $ret : json_encode($ret);
  1524. $wdata = date("Y-m-d");
  1525. $path = LOG_PATH . DS . $wdata . DS . $game_code . DS;
  1526. if (!file_exists($path)) {
  1527. $ret = mkdir($path, '0755', true);
  1528. if (!$ret) {
  1529. echo "$path --- Log File Create false \n";
  1530. return;
  1531. }
  1532. }
  1533. $lasttxt = date('Y-m-d H:i:s') . ' - ' . $msg . ' - ' . $json_data . "\n\n";
  1534. $file = $path . DS . $game_code . '_' . $title . '.log';
  1535. file_put_contents($file, $lasttxt, FILE_APPEND | LOCK_EX);
  1536. return ;
  1537. }
  1538. private function writeLog_db($body, $ret)
  1539. {
  1540. if (!is_string($body)) {
  1541. $body = json_encode([$body], 256);
  1542. }
  1543. if (!is_string($ret)) {
  1544. $ret = json_encode([$ret], 256);
  1545. }
  1546. $data = ['ctime' => date("Y-m-d H:i:s"), 'body' => $body, 'ret' => $ret];
  1547. $return = DB::table('datainf_log')->insert($data);
  1548. return $return;
  1549. }
  1550. }