Merge branch 'onedb'

This commit is contained in:
filifa 2024-08-03 21:19:04 -05:00
commit 5015924d19
5 changed files with 18 additions and 9 deletions

View File

@ -42,4 +42,4 @@ fi
# grab select data from response with jq, add 0 to the end of each line (to go
# in the 'posted' db column), then write each line to db
jqFilter='.highlights.highlights.items | map(select(.keywordsAll[].value == "highlight"))[] | {headline, id} + {url: (.playbacks | map(select(.name == "mp4Avc"))[0].url)} | select(.url | startswith("https://mlb-cuts-diamond"))'
mlblive content -g $gamePk | jq -Sc "$jqFilter" | sed 's/$/0/' | sqlite3 $db '.mode ascii' '.separator  \n' '.import /dev/stdin mlbdata'
mlblive content -g $gamePk | jq -Sc "$jqFilter" | sed 's/$/0/' | sqlite3 $db '.mode ascii' '.separator  \n' '.import /dev/stdin highlights'

View File

@ -42,7 +42,7 @@ fi
jqFilter='{gamePk} + (.gameData.teams | {awayTeam: .away.teamName, homeTeam: .home.teamName}) + (.liveData.plays.allPlays[] | (.result + (.about | {atBatIndex, halfInning, inning, isComplete, isScoringPlay, hasReview})))'
fmt='OFS=""; print $0, 0'
save="\"sqlite3 $db '.mode ascii' '.separator ' '.import /dev/stdin mlbdata'\""
save="\"sqlite3 $db '.mode ascii' '.separator ' '.import /dev/stdin plays'\""
# grab select data from each response with jq, add 0 to the end of each line
# (to go in the 'posted' db column), then write each line as they come in to db

View File

@ -5,12 +5,12 @@ select
json ->> 'headline',
json ->> 'id',
json ->> 'url'
from mlbdata
from highlights
where
json ->> 'url' is not null and
posted = 0;
update mlbdata
update highlights
set posted = 1
where posted = 0;
commit;

View File

@ -9,13 +9,13 @@ json ->> 'awayTeam',
json ->> 'awayScore',
json ->> 'homeTeam',
json ->> 'homeScore'
from mlbdata
from plays
where
json ->> 'description' is not null and
json ->> 'isScoringPlay' = 1 and
posted = 0;
update mlbdata
update plays
set posted = 1
where posted = 0;
commit;

View File

@ -1,10 +1,19 @@
create table if not exists mlbdata (
create table if not exists plays (
"json" text unique on conflict ignore,
"posted" integer check ("posted" in (0, 1))
);
create index if not exists nonposted
on mlbdata(posted)
create index if not exists nonposted_plays
on plays(posted)
where posted = 0;
create table if not exists highlights (
"json" text unique on conflict ignore,
"posted" integer check ("posted" in (0, 1))
);
create index if not exists nonposted_highlights
on highlights(posted)
where posted = 0;
create table if not exists games (