moth/cmd/mothd/main.go

92 lines
1.8 KiB
Go
Raw Normal View History

2019-09-02 19:47:24 -06:00
package main
import (
2020-02-29 16:59:44 -07:00
"flag"
2020-09-15 15:58:21 -06:00
"fmt"
2019-12-05 22:25:03 -07:00
"mime"
2020-09-15 15:58:21 -06:00
"os"
"time"
2020-08-14 20:26:04 -06:00
"github.com/spf13/afero"
2019-09-02 19:47:24 -06:00
)
func main() {
themePath := flag.String(
"theme",
"theme",
"Path to theme files",
)
statePath := flag.String(
"state",
"state",
"Path to state files",
)
mothballPath := flag.String(
"mothballs",
"mothballs",
2020-08-17 17:43:57 -06:00
"Path to mothball files",
)
2020-09-08 17:49:02 -06:00
puzzlePath := flag.String(
"puzzles",
"",
2020-09-11 13:03:19 -06:00
"Path to puzzles tree (enables development mode)",
2020-09-08 17:49:02 -06:00
)
refreshInterval := flag.Duration(
"refresh",
2*time.Second,
"Duration between maintenance tasks",
)
bindStr := flag.String(
"bind",
2020-02-29 16:59:44 -07:00
":8080",
"Bind [host]:port for HTTP service",
)
base := flag.String(
"base",
"/",
"Base URL of this instance",
)
2020-09-15 15:58:21 -06:00
seed := flag.String(
"seed",
"",
"Random seed to use, overrides $SEED",
)
2020-02-29 16:59:44 -07:00
flag.Parse()
2020-09-15 15:58:21 -06:00
// Set random seed
if *seed == "" {
*seed = os.Getenv("SEED")
}
if *seed == "" {
*seed = fmt.Sprintf("%d%d", os.Getpid(), time.Now().Unix())
}
os.Setenv("SEED", *seed)
2020-09-08 17:49:02 -06:00
osfs := afero.NewOsFs()
theme := NewTheme(afero.NewBasePathFs(osfs, *themePath))
state := NewState(afero.NewBasePathFs(osfs, *statePath))
config := Configuration{}
var provider PuzzleProvider
provider = NewMothballs(afero.NewBasePathFs(osfs, *mothballPath))
if *puzzlePath != "" {
provider = NewTranspilerProvider(afero.NewBasePathFs(osfs, *puzzlePath))
config.Devel = true
}
2019-12-07 21:17:13 -07:00
// Add some MIME extensions
// Doing this avoids decompressing a mothball entry twice per request
mime.AddExtensionType(".json", "application/json")
mime.AddExtensionType(".zip", "application/zip")
2020-08-18 17:04:23 -06:00
go theme.Maintain(*refreshInterval)
go state.Maintain(*refreshInterval)
2020-09-08 17:49:02 -06:00
go provider.Maintain(*refreshInterval)
2019-12-07 21:17:13 -07:00
2020-09-08 17:49:02 -06:00
server := NewMothServer(config, theme, state, provider)
2020-03-01 16:10:55 -07:00
httpd := NewHTTPServer(*base, server)
2020-08-19 18:01:21 -06:00
httpd.Run(*bindStr)
}