games inits itself
parent
f40fdd60da
commit
306295ba1c
|
|
@ -32,27 +32,6 @@ func NewDB(ctx context.Context, scheme, conn string) (DB, error) {
|
|||
}
|
||||
defer sql.Close()
|
||||
|
||||
if _, err := sql.ExecContext(ctx, `
|
||||
CREATE TABLE IF NOT EXISTS users (
|
||||
uuid TEXT,
|
||||
name TEXT
|
||||
);
|
||||
CREATE TABLE IF NOT EXISTS games (
|
||||
uuid TEXT
|
||||
);
|
||||
CREATE TABLE IF NOT EXISTS players (
|
||||
user_uuid TEXT,
|
||||
game_uuid TEXT
|
||||
);
|
||||
CREATE TABLE IF NOT EXISTS events (
|
||||
game_uuid TEXT,
|
||||
timestamp DATETIME,
|
||||
payload TEXT
|
||||
);
|
||||
`); err != nil {
|
||||
return DB{}, err
|
||||
}
|
||||
|
||||
return db, err
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,9 +1,29 @@
|
|||
package main
|
||||
|
||||
import "context"
|
||||
|
||||
type Games struct {
|
||||
db DB
|
||||
}
|
||||
|
||||
func NewGames(db DB) Games {
|
||||
return Games{db: db}
|
||||
func NewGames(ctx context.Context, db DB) (Games, error) {
|
||||
err := db.Exec(ctx, `
|
||||
CREATE TABLE IF NOT EXISTS users (
|
||||
uuid TEXT,
|
||||
name TEXT
|
||||
);
|
||||
CREATE TABLE IF NOT EXISTS games (
|
||||
uuid TEXT
|
||||
);
|
||||
CREATE TABLE IF NOT EXISTS players (
|
||||
user_uuid TEXT,
|
||||
game_uuid TEXT
|
||||
);
|
||||
CREATE TABLE IF NOT EXISTS events (
|
||||
game_uuid TEXT,
|
||||
timestamp DATETIME,
|
||||
payload TEXT
|
||||
);
|
||||
`)
|
||||
return Games{db: db}, err
|
||||
}
|
||||
|
|
|
|||
|
|
@ -31,12 +31,16 @@ func run(ctx context.Context) error {
|
|||
if err != nil {
|
||||
return err
|
||||
}
|
||||
games, err := NewGames(ctx, db)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
S := &S{
|
||||
ctx: ctx,
|
||||
limiter: rate.NewLimiter(10, 10),
|
||||
config: config,
|
||||
games: NewGames(db),
|
||||
games: games,
|
||||
}
|
||||
|
||||
s := &http.Server{
|
||||
|
|
|
|||
Loading…
Reference in New Issue