-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathball.js
438 lines (270 loc) · 12.4 KB
/
ball.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
obj = { "f1": 1, "f2": 2 }
for (var fld in obj) {
console.log(fld, ":", obj[fld]);
}
//return;
logmdx = require('./jsdk/log.js');
logger = logmdx.logger;
console.log("--");
mdx = require('./connBall.js');
connection = mdx.conn;
query = require('./jsdk/mysql.js')
flds = 'id,area_id,country_id,name_zh,short_name_zh,name_zht,short_name_zht,name_en,short_name_en,logo'
arr = flds.split(',')
placehodr_arr = []
for (fld of arr) {
var fs = require("fs");
tmp = fs.readFileSync('./jsdk/rplsTmp.txt', "utf8")
tmp = tmp.replace('#fld#', fld);
tmp = tmp.replace('#fld#', fld)
console.log(tmp);
}
console.log(placehodr_arr.join(','));
/**
*
* id: 1,
area_id: 3,
country_id: 54,
name_zh: '美国男子职业篮球联赛',
short_name_zh: 'NBA',
name_zht: '美國男子職業籃球聯賽',
short_name_zht: 'NBA',
name_en: 'National Basketball Association',
short_name_en: 'NBA',
logo: 'https://cdn.sportnanoapi.com/basketball/competition/aa6ac10ab514aba38a86c57d34e64f31.jpg'
*
*/
(async () => {
// Match_list()
// team_list()
// Match_list()
// countrys_list();
areas_list();
})();
async function team_list() {
var json = await getJsonRzt('Basketball.Live.Match_list')
for (var fld in json.data.teams) {
// for (item of json.data.teams) {
id = fld;
item = json.data.teams[fld];
try {
logger.info(item);
//unique
uniqueIdx("basketball_team_t", "id", id);
sql = 'insert into basketball_team_t( id,name_zh,short_name_zh,name_zht,short_name_zht,name_en,short_name_en,logo )values( @id@,@name_zh@,@short_name_zh@,@name_zht@,@short_name_zht@,@name_en@,@short_name_en@,@logo@)';
sql = sql.replace('@id@', "'" + item.id + "'")
sql = sql.replace('@name_zh@', "'" + item.name_zh + "'")
sql = sql.replace('@short_name_zh@', "'" + item.short_name_zh + "'")
sql = sql.replace('@name_zht@', "'" + item.name_zht + "'")
sql = sql.replace('@short_name_zht@', "'" + item.short_name_zht + "'")
sql = sql.replace('@name_en@', "'" + item.name_en + "'")
sql = sql.replace('@short_name_en@', "'" + item.short_name_en + "'")
sql = sql.replace('@logo@', "'" + item.logo + "'")
logger.info(sql);
var rzt = await query(connection, sql)
logger.info(rzt);
} catch (e) {
logger.error(e);
}
// break;
// break;
// process.exit();
}
// basket_match_event_t
console.log("f");
}
/**
* `id` bigint(32) unsigned NOT NULL COMMENT '比赛id',
`match_event_id` bigint(32) NOT NULL COMMENT '赛事id',
`total_sections` int(4) NOT NULL COMMENT '比赛总节数',
`match_status` tinyint(2) unsigned NOT NULL DEFAULT '0' COMMENT '篮球状态码 描述 \r\n0 比赛异常,说明:暂未判断具体原因的异常比赛,可能但不限于:腰斩、取消等等,可隐藏处理 篮球比赛状态\r\n1 未开赛 篮球比赛状态\r\n2 第一节 篮球比赛状态\r\n3 第一节完 篮球比赛状态\r\n4 第二节 篮球比赛状态\r\n5 第二节完 篮球比赛状态\r\n6 第三节 篮球比赛状态\r\n7 第三节完 篮球比赛状态\r\n8 第四节 篮球比赛状态\r\n9 加时 篮球比赛状态\r\n10 完场 篮球比赛状态\r\n11 中断 篮球比赛状态\r\n12 取消 篮球比赛状态\r\n13 延期 篮球比赛状态\r\n14 腰斩 篮球比赛状态\r\n15 待定 篮球比赛状态',
`match_time` bigint(15) unsigned NOT NULL DEFAULT '0' COMMENT '比赛时间',
`current_total_seconds` int(10) unsigned NOT NULL DEFAULT '0' COMMENT '当前总秒钟数,显示转换成 mm:ss',
`season_id` bigint(32) NOT NULL DEFAULT '0' COMMENT '赛季id',
`match_detail` varchar(100) NOT NULL COMMENT '比赛详细说明',
`compatible` varchar(100) NOT NULL COMMENT '兼容,请忽略',
`animation` int(4) NOT NULL DEFAULT '0' COMMENT '是否有动画,未购买客户请忽略',
`intelligence` int(4) NOT NULL DEFAULT '0' COMMENT '是否有情报,未购买客户请忽略',
`create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '创建时间',
`delete_flag` char(1) NOT NULL DEFAULT '0' COMMENT '是否删除(1.已删除0.未删除)',
*/
async function Match_list() {
json = await getJsonRzt('Basketball.Live.Match_list')
for (item of json.data.matches) {
try {
matchid = item[0];
比赛总节数 = item[1];
赛事id = item[2];
比赛状态 = item[3];
比赛时间 = item[4];
当前总秒钟数 = item[5];
// 1512,//赛事id
// 8,//比赛状态
// 1516638035,//比赛时间
// 91,//当前总秒钟数,显示转换成 mm:ss
类型 = item[9][0];
阶段id = item[9][1];
赛季id = item[9][2];
// 1,//类型 1-常规赛 2-季后赛 3-季前赛 4-全明星 5-杯赛
// 0,//阶段id
// 1041//赛季id
logger.info(item);
//unique
uniqueIdx("basketball_matche_t", "id", matchid);
sql = 'insert into basketball_matche_t('
+ " id,match_event_id,total_sections, match_status,match_time,current_total_seconds, season_id,match_detail,animation, intelligence ,compatible ) values( "
+ "@id@,@赛事id@,@比赛总节数@, @比赛状态@,@比赛时间@,@当前总秒钟数@, @赛季id@,'0','0','0','3' )";
sql = sql.replace('@id@', "'" + matchid + "'")
sql = sql.replace('@赛事id@', "'" + 赛事id + "'")
sql = sql.replace('@比赛总节数@', "'" + 比赛总节数 + "'")
sql = sql.replace('@比赛时间@', "'" + 比赛时间 + "'")
sql = sql.replace('@当前总秒钟数@', "'" + 当前总秒钟数 + "'")
sql = sql.replace('@赛季id@', "'" + 赛季id + "'")
sql = sql.replace('@比赛状态@', "'" + 比赛状态 + "'")
// sql = sql.replace('@name_en@', "'" + item.name_en + "'")
// sql = sql.replace('@short_name_en@', "'" + item.short_name_en + "'")
// sql = sql.replace('@logo@', "'" + item.logo + "'")
logger.info(sql);
var rzt = await query(connection, sql)
logger.info(rzt);
} catch (e) {
logger.error(e);
}
// break;
// process.exit();
}
console.log("f");
}
async function areas_list() {
//areas
json = await getJsonRzt('Basketball.Basic.Matchevent_list')
// url = "http://www.skrsport.live/?service=Basketball.Basic.Match_deleted_ids&username=sport_api&secret=0gclkqzK";
for (var fld in json.data.areas) {
// for (item of json.data.teams) {
id = fld;
item = json.data.areas[fld];
// for (item of json.data.countrys) {
try {
logger.info(item);
//unique
uniqueIdx("area_t", "id", item.id);
sql = 'insert into area_t(id,name_zh,name_zht,name_en)values( @id@,@name_zh@,@name_zht@,@name_en@)';
sql = sql.replace('@id@', "'" + item.id + "'")
sql = sql.replace('@area_id@', "'" + item.area_id + "'")
sql = sql.replace('@country_id@', "'" + item.country_id + "'")
sql = sql.replace('@name_zh@', "'" + item.name_zh + "'")
sql = sql.replace('@short_name_zh@', "'" + item.short_name_zh + "'")
sql = sql.replace('@name_zht@', "'" + item.name_zht + "'")
sql = sql.replace('@short_name_zht@', "'" + item.short_name_zht + "'")
sql = sql.replace('@name_en@', "'" + item.name_en + "'")
sql = sql.replace('@short_name_en@', "'" + item.short_name_en + "'")
sql = sql.replace('@logo@', "'" + item.logo + "'")
logger.info(sql);
var rzt = await query(connection, sql)
logger.info(rzt);
} catch (e) {
logger.error(e);
}
// break;
// process.exit();
}
// basket_match_event_t
console.log("f");
}
async function countrys_list() {
//countrys
json = await getJsonRzt('Basketball.Basic.Matchevent_list')
// url = "http://www.skrsport.live/?service=Basketball.Basic.Match_deleted_ids&username=sport_api&secret=0gclkqzK";
for (var fld in json.data.countrys) {
// for (item of json.data.teams) {
id = fld;
item = json.data.countrys[fld];
// for (item of json.data.countrys) {
try {
logger.info(item);
//unique
uniqueIdx("country_t", "id", item.id);
sql = 'insert into country_t(id,name_zh,name_zht,name_en)values( @id@,@name_zh@,@name_zht@,@name_en@)';
sql = sql.replace('@id@', "'" + item.id + "'")
sql = sql.replace('@area_id@', "'" + item.area_id + "'")
sql = sql.replace('@country_id@', "'" + item.country_id + "'")
sql = sql.replace('@name_zh@', "'" + item.name_zh + "'")
sql = sql.replace('@short_name_zh@', "'" + item.short_name_zh + "'")
sql = sql.replace('@name_zht@', "'" + item.name_zht + "'")
sql = sql.replace('@short_name_zht@', "'" + item.short_name_zht + "'")
sql = sql.replace('@name_en@', "'" + item.name_en + "'")
sql = sql.replace('@short_name_en@', "'" + item.short_name_en + "'")
sql = sql.replace('@logo@', "'" + item.logo + "'")
logger.info(sql);
var rzt = await query(connection, sql)
logger.info(rzt);
} catch (e) {
logger.error(e);
}
// break;
// process.exit();
}
// basket_match_event_t
console.log("f");
}
async function Matchevent_list() {
json = await getJsonRzt('Basketball.Basic.Matchevent_list')
// url = "http://www.skrsport.live/?service=Basketball.Basic.Match_deleted_ids&username=sport_api&secret=0gclkqzK";
for (item of json.data.matchevents) {
try {
logger.info(item);
//unique
sql = 'select * from basket_match_event_t where id=' + item.id
var rzt = await query(connection, sql)
if (rzt.length > 0)
continue;
sql = 'insert into basket_match_event_t(id,area_id,country_id,name_zh,short_name_zh,name_zht,short_name_zht,name_en,short_name_en,match_logo)values( @id@,@area_id@,@country_id@,@name_zh@,@short_name_zh@,@name_zht@,@short_name_zht@,@name_en@,@short_name_en@,@logo@)';
sql = sql.replace('@id@', "'" + item.id + "'")
sql = sql.replace('@area_id@', "'" + item.area_id + "'")
sql = sql.replace('@country_id@', "'" + item.country_id + "'")
sql = sql.replace('@name_zh@', "'" + item.name_zh + "'")
sql = sql.replace('@short_name_zh@', "'" + item.short_name_zh + "'")
sql = sql.replace('@name_zht@', "'" + item.name_zht + "'")
sql = sql.replace('@short_name_zht@', "'" + item.short_name_zht + "'")
sql = sql.replace('@name_en@', "'" + item.name_en + "'")
sql = sql.replace('@short_name_en@', "'" + item.short_name_en + "'")
sql = sql.replace('@logo@', "'" + item.logo + "'")
logger.info(sql);
var rzt = await query(connection, sql)
logger.info(rzt);
} catch (e) {
logger.error(e);
}
// break;
// process.exit();
}
// basket_match_event_t
console.log("f");
}
async function uniqueIdx(tab, col, val) {
var sql = "select * from " + tab + " where " + col + "='" + val + "'";
var rzt = await query(connection, sql)
if (rzt.length > 0) {
ex = {};
ex.sql = sql
ex.name = 'uniqueEx';
throw JSON.stringify(ex);
}
}
async function getJsonRzt(svr) {
var fs = require("fs");
fname = "d:\\spddata\\" + svr + "_rzt.json";
if (fs.existsSync(fname)) {
logger.info("file exist " + fname);
return JSON.parse(fs.readFileSync(fname))
} else {
url = "http://www.skrsport.live/?service=" + svr + "&username=sport_api&secret=0gclkqzK";
const request = require("request");
const util = require('util')
const requestPromise = util.promisify(request);
const response = await requestPromise(url);
console.log('response', response.body);
fs.writeFileSync(fname, response.body);
return response;
}
}