simplify games table

This commit is contained in:
filifa 2024-08-08 22:17:11 -05:00
parent 0a15e0586b
commit 97b63bfeba
4 changed files with 10 additions and 16 deletions

View File

@ -29,7 +29,7 @@ then
exit 1 exit 1
fi fi
jqFilter='.dates[].games[] | "\(.gamePk)\(.)"' jqFilter='.dates[].games[]'
fmt="OFS=\"\"; print \$1, \$2, 0" fmt="OFS=\"\"; print \$0, 0"
save="\"sqlite3 $db '.mode ascii' '.separator ' '.import /dev/stdin games'\"" save="\"sqlite3 $db '.mode ascii' '.separator ' '.import /dev/stdin games'\""
mlblive schedule -t $team | jq -r "$jqFilter" | awk -F  "{$fmt | $save; close($save)}" mlblive schedule -t $team | jq -Sc "$jqFilter" | awk -F  "{$fmt | $save; close($save)}"

View File

@ -23,7 +23,7 @@ fi
# grab the game pk of a single live game, if multiple (in case of spring # grab the game pk of a single live game, if multiple (in case of spring
# training) # training)
gamePk=$(sqlite3 $db "select gamePk from games where json ->> 'status' ->> 'detailedState' in ('In Progress', 'Game Over') limit 1") gamePk=$(sqlite3 $db "select json ->> 'gamePk' from games where json ->> 'status' ->> 'detailedState' in ('In Progress', 'Game Over') limit 1")
if [[ -z "$gamePk" ]] if [[ -z "$gamePk" ]]
then then
echo "$0:" 'no live games found' >&2 echo "$0:" 'no live games found' >&2

View File

@ -23,7 +23,7 @@ fi
# grab the game pk of a single live game, if multiple (in case of spring # grab the game pk of a single live game, if multiple (in case of spring
# training) # training)
gamePk=$(sqlite3 $db "select gamePk from games where json ->> 'status' ->> 'detailedState' in ('In Progress', 'Warmup') limit 1") gamePk=$(sqlite3 $db "select json ->> 'gamePk' from games where json ->> 'status' ->> 'detailedState' in ('In Progress', 'Warmup') limit 1")
if [[ -z "$gamePk" ]] if [[ -z "$gamePk" ]]
then then
echo "$0:" 'no live games found' >&2 echo "$0:" 'no live games found' >&2

View File

@ -17,16 +17,10 @@ on highlights(posted)
where posted = 0; where posted = 0;
create table if not exists games ( create table if not exists games (
gamePk integer, "json" text unique on conflict ignore,
json text, "posted" integer check ("posted" in (0, 1)),
posted integer,
unique (gamePk) on conflict ignore
); );
create trigger if not exists delete_old_states create index if not exists nonposted_games
before insert on games on games(posted)
begin where posted = 0;
delete from games
where gamePk = new.gamePk and
json ->> 'status' ->> 'detailedState' != new.json ->> 'status' ->> 'detailedState';
end;