44 lines
804 B
Go
44 lines
804 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"strings"
|
|
)
|
|
|
|
type PlayerStore interface {
|
|
GetPlayerScore(name string) int
|
|
RecordWin(name string)
|
|
}
|
|
|
|
type PlayerServer struct {
|
|
store PlayerStore
|
|
}
|
|
|
|
func (p *PlayerServer) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
|
player := strings.TrimPrefix(r.URL.Path, "/players/")
|
|
|
|
switch r.Method {
|
|
case http.MethodPost:
|
|
p.processWin(w, player)
|
|
case http.MethodGet:
|
|
p.showScore(w, player)
|
|
}
|
|
|
|
}
|
|
|
|
func (p *PlayerServer) showScore(w http.ResponseWriter, player string) {
|
|
score := p.store.GetPlayerScore(player)
|
|
|
|
if score == 0 {
|
|
w.WriteHeader(http.StatusNotFound)
|
|
}
|
|
|
|
fmt.Fprint(w, score)
|
|
}
|
|
|
|
func (p *PlayerServer) processWin(w http.ResponseWriter, player string) {
|
|
p.store.RecordWin(player)
|
|
w.WriteHeader(http.StatusAccepted)
|
|
}
|