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
fi
jqFilter='.dates[].games[] | "\(.gamePk)\(.)"'
fmt="OFS=\"\"; print \$1, \$2, 0"
jqFilter='.dates[].games[]'
fmt="OFS=\"\"; print \$0, 0"
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
# 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" ]]
then
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
# 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" ]]
then
echo "$0:" 'no live games found' >&2

View File

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