mirror of
https://git.freesoftwareextremist.com/bloat
synced 2024-11-09 16:14:11 +00:00
887ed241d6
Remove the server side session storage and store all the session related data in the client side cookies. This decreases the exposure of the auth tokens. It also simplifies the installation process as bloat no longer requires write access to the filesystem. This is a breaking change, all the existing sessions will stop working.
78 lines
1.6 KiB
Go
78 lines
1.6 KiB
Go
package main
|
|
|
|
import (
|
|
"errors"
|
|
"flag"
|
|
"fmt"
|
|
"log"
|
|
"net/http"
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
|
|
"bloat/config"
|
|
"bloat/renderer"
|
|
"bloat/service"
|
|
)
|
|
|
|
var (
|
|
configFiles = []string{"bloat.conf", "/etc/bloat.conf"}
|
|
)
|
|
|
|
func errExit(err error) {
|
|
fmt.Fprintln(os.Stderr, err.Error())
|
|
os.Exit(1)
|
|
}
|
|
|
|
func main() {
|
|
configFile := flag.String("f", "", "config file")
|
|
flag.Parse()
|
|
|
|
if len(*configFile) > 0 {
|
|
configFiles = []string{*configFile}
|
|
}
|
|
config, err := config.ParseFiles(configFiles)
|
|
if err != nil {
|
|
errExit(err)
|
|
}
|
|
|
|
if !config.IsValid() {
|
|
errExit(errors.New("invalid config"))
|
|
}
|
|
|
|
templatesGlobPattern := filepath.Join(config.TemplatesPath, "*")
|
|
renderer, err := renderer.NewRenderer(templatesGlobPattern)
|
|
if err != nil {
|
|
errExit(err)
|
|
}
|
|
|
|
customCSS := config.CustomCSS
|
|
if len(customCSS) > 0 && !strings.HasPrefix(customCSS, "http://") &&
|
|
!strings.HasPrefix(customCSS, "https://") {
|
|
customCSS = "/static/" + customCSS
|
|
}
|
|
|
|
var logger *log.Logger
|
|
if len(config.LogFile) < 1 {
|
|
logger = log.New(os.Stdout, "", log.LstdFlags)
|
|
} else {
|
|
lf, err := os.OpenFile(config.LogFile,
|
|
os.O_WRONLY|os.O_CREATE|os.O_APPEND, 0644)
|
|
if err != nil {
|
|
errExit(err)
|
|
}
|
|
defer lf.Close()
|
|
logger = log.New(lf, "", log.LstdFlags)
|
|
}
|
|
|
|
s := service.NewService(config.ClientName, config.ClientScope,
|
|
config.ClientWebsite, customCSS, config.SingleInstance,
|
|
config.PostFormats, renderer)
|
|
handler := service.NewHandler(s, logger, config.StaticDirectory)
|
|
|
|
logger.Println("listening on", config.ListenAddress)
|
|
err = http.ListenAndServe(config.ListenAddress, handler)
|
|
if err != nil {
|
|
errExit(err)
|
|
}
|
|
}
|