Merge branch 'develop' of git.gnuher.de:settel/knowyt into develop

This commit is contained in:
Settel 2023-02-02 14:59:32 +01:00
commit 21a24632b2
3 changed files with 14 additions and 1 deletions

View File

@ -1,6 +1,6 @@
{
"name": "knowyt",
"version": "2.13",
"version": "2.14",
"private": true,
"scripts": {
"lint": "tsc-strict",

View File

@ -132,6 +132,7 @@ const removeGame = async (): Promise<void> => {
if (confirm('remove game and wipe all of it\'s data?')) {
console.log(1)
await useEngine().removeGame()
document.location.reload()
}
}
</script>

View File

@ -3,6 +3,7 @@ package application
import (
"fmt"
"net/http"
"path"
"sirlab.de/go/knowyt/game"
"sirlab.de/go/knowyt/log"
@ -47,6 +48,17 @@ func (app *Application) removePlayerById(id string, gm *game.Game) error {
return fmt.Errorf("couldn't find player %s in game %s", id, gm.GetId())
}
quotesInfo := gm.GetQuotesInfoByUser(userToRemove)
for _, quote := range quotesInfo.Quotes {
gameDirName := path.Join(app.config.DataDir, "games", gm.GetId())
quoteFileNameShort := quote.Id + ".json"
quoteFileName := path.Join(gameDirName, "quotes", quoteFileNameShort)
if err := gm.RemoveQuote(quoteFileName, userToRemove.GetId(), quote.Id); err != nil {
return err
}
}
if err := userToRemove.RemovePlayer(); err != nil {
return err
}