transmet/main.go

96 lines
1.8 KiB
Go
Raw Normal View History

2015-04-27 17:31:51 +02:00
package main
import (
2015-04-29 17:25:48 +02:00
"database/sql"
2015-04-27 17:31:51 +02:00
"encoding/json"
"fmt"
2015-04-29 17:25:48 +02:00
"github.com/gorilla/sessions"
_ "github.com/lib/pq"
2015-04-29 17:25:48 +02:00
"html/template"
"net/http"
"os"
"path/filepath"
"regexp"
2015-04-27 17:31:51 +02:00
)
const VERSION = "0.1"
type Config struct {
Sql struct {
Host string
Dbname string
Username string
Password string
}
2015-04-29 17:25:48 +02:00
Port string
2015-04-27 17:31:51 +02:00
}
2015-04-29 17:25:48 +02:00
const (
flash_err = "_flash_err"
flash_info = "_flash_info"
)
2015-04-27 17:31:51 +02:00
var (
2015-04-29 17:25:48 +02:00
config Config
db *sql.DB
store = sessions.NewCookieStore([]byte("key-store-auth-secret"))
templates = map[string]*template.Template{}
2015-04-27 17:31:51 +02:00
)
func loadConfig() {
file, err := os.Open("config/local.json")
if err != nil {
fmt.Println("Error: cannot open config file")
os.Exit(-1)
}
decoder := json.NewDecoder(file)
decoder.Decode(&config)
}
func dbConnect() {
2015-04-29 17:25:48 +02:00
var err error
db, err = sql.Open("postgres", fmt.Sprintf("postgres://%s:%s@%s/%s?sslmode=require", config.Sql.Username, config.Sql.Password, config.Sql.Host, config.Sql.Dbname))
if err != nil {
fmt.Println("DB ERROR: ", err)
}
err = db.Ping()
if err != nil {
fmt.Println("DB Error on Ping(): ", err)
os.Exit(-1)
}
}
func initTemplates() {
files, _ := filepath.Glob("templates/pages/*.html")
re := regexp.MustCompile("templates/pages/(.*).html")
fmt.Println("Loading Templates:")
for _, t := range files {
name := re.FindStringSubmatch(t)
fmt.Println(" ", name[1])
var err error
templates[name[1]], err = template.ParseFiles("templates/layout.html", t)
if err != nil {
fmt.Println("Template load error: ", err)
os.Exit(-1)
}
}
}
2015-04-27 17:31:51 +02:00
func main() {
fmt.Println("transmet ", VERSION)
fmt.Println("Loading...")
loadConfig()
2015-04-29 17:25:48 +02:00
dbConnect()
initTemplates()
init_route_handlers()
fmt.Println("Running...")
err := http.ListenAndServe(":"+config.Port, nil)
if err != nil {
fmt.Println("Fatal Error: ", err)
}
db.Close()
2015-04-27 17:31:51 +02:00
}