Merge branch 'smarter-updates'

main
Yanick Champoux 2024-02-04 17:54:48 -05:00
commit 03cd2113cc
3 changed files with 49 additions and 7 deletions

View File

@ -0,0 +1,5 @@
---
"ottawa-boardgame-sell-bgg": minor
---
feat: be smarter when updating games

View File

@ -77,15 +77,51 @@ export async function update_user_games(db, username) {
'INSERT into game (username, bgg_id, name, thumbnail, notes,price,updated_at) VALUES(@username,@bgg_id,@name,@thumbnail,@notes,@price,@updated_at)',
);
const update = db.prepare(
'UPDATE game set notes=@notes, price=@price, updated_at=@updated_at where username=@username and bgg_id=@bgg_id',
);
const game_present = db.prepare(
'SELECT notes, price from game where username = ? AND bgg_id = ?',
);
const already_there = games
.map(({ bgg_id }) => bgg_id)
.map((id) => `'${id}'`)
.join(',');
await db
.prepare('DELETE FROM game where username = @username')
.run({ username });
.prepare(
`DELETE FROM game where username = @username AND bgg_id not in (${already_there})`,
)
.run({
username,
});
for (let game of games) {
insert.run({
username,
updated_at,
...game,
});
console.log(game.name);
const existing_game = game_present.get(username, game.bgg_id);
if (existing_game) {
if (
['notes', 'price'].some(
(attr) => existing_game[attr] != game[attr],
)
) {
console.log('updating game');
update.run({
...game,
updated_at,
username,
});
} else {
console.log("didn't change");
}
} else {
console.log('new game!');
insert.run({
username,
updated_at,
...game,
});
}
}
}

View File

@ -6,6 +6,7 @@ const users = db.prepare('SELECT username from bgg_user').all();
await Promise.all(
users.map(({ username }) => {
console.log(username);
return update_user_games(db, username)
.then(() => console.log(username, 'is done'))
.catch((e) => console.error(e));