59b5574b16
Also moved db reference to data module; it now starts, but doesn't serve index.html for root yet
49 lines
1.1 KiB
Go
49 lines
1.1 KiB
Go
// myPrayerJournal API Server
|
|
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
|
|
"github.com/danieljsummers/myPrayerJournal/src/api/data"
|
|
"github.com/danieljsummers/myPrayerJournal/src/api/routes"
|
|
)
|
|
|
|
// Web contains configuration for the web server.
|
|
type Web struct {
|
|
Port string `json:"port"`
|
|
}
|
|
|
|
// Settings contains configuration for the myPrayerJournal API.
|
|
type Settings struct {
|
|
Data *data.Settings `json:"data"`
|
|
Web *Web `json:"web"`
|
|
Auth *routes.AuthConfig `json:"auth"`
|
|
}
|
|
|
|
// readSettings parses the JSON configuration file into the Settings struct.
|
|
func readSettings(f string) *Settings {
|
|
config, err := os.Open(f)
|
|
if err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
defer config.Close()
|
|
settings := Settings{}
|
|
if err = json.NewDecoder(config).Decode(&settings); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
return &settings
|
|
}
|
|
|
|
func main() {
|
|
cfg := readSettings("config.json")
|
|
if ok := data.Connect(cfg.Data); !ok {
|
|
log.Fatal("Unable to connect to database; exiting")
|
|
}
|
|
data.EnsureDB()
|
|
log.Printf("myPrayerJournal API listening on %s", cfg.Web.Port)
|
|
log.Fatal(http.ListenAndServe(cfg.Web.Port, routes.NewRouter(cfg.Auth)))
|
|
}
|