fixed logic error

This commit is contained in:
Settel 2021-10-16 21:47:45 +02:00
parent d70f98bf48
commit e18e6a94c1
4 changed files with 8 additions and 5 deletions

View File

@ -18,8 +18,8 @@ export default {
await this.save()
},
async save() {
this.$engine.createQuote(this.quote.quote)
// this.$engine.saveQuote(this.quote.id, this.quote.quote)
// this.$engine.createQuote(this.quote.quote)
this.$engine.saveQuote(this.quote.id, this.quote.quote)
await this.$engine.getMyQuotes()
},
async remove() {

View File

@ -11,12 +11,15 @@ func (app *Application) GetQuotes(usr *user.User, w http.ResponseWriter, r *http
gameRef := r.URL.Query().Get("g")
gm, err := app.GetGameById(gameRef)
if err != nil {
fmt.Printf("attempt to get quotes for invalid game id %s\n", gameRef)
w.WriteHeader(http.StatusNotFound)
fmt.Fprintf(w, "game not found")
return
}
if usr.GetGameId() != gameRef || !usr.IsGamemaster() {
if usr.GetGameId() != gameRef && !usr.IsGamemaster() {
fmt.Printf("user's game id is %s\n", usr.GetGameId())
fmt.Printf("user not allowed to access game id %s\n", gameRef)
w.WriteHeader(http.StatusForbidden)
fmt.Fprintf(w, "forbidden")
return

View File

@ -16,7 +16,7 @@ func (app *Application) RemoveQuote(usr *user.User, w http.ResponseWriter, r *ht
return
}
if usr.GetGameId() != gameRef || !usr.IsGamemaster() {
if usr.GetGameId() != gameRef && !usr.IsGamemaster() {
w.WriteHeader(http.StatusForbidden)
fmt.Fprintf(w, "forbidden")
return

View File

@ -18,7 +18,7 @@ func (app *Application) SaveQuote(usr *user.User, w http.ResponseWriter, r *http
return
}
if usr.GetGameId() != gameRef || !usr.IsGamemaster() {
if usr.GetGameId() != gameRef && !usr.IsGamemaster() {
w.WriteHeader(http.StatusForbidden)
fmt.Fprintf(w, "forbidden")
return