1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
cowyo/main.go
Zack Scholl 9fd17f5f03 Cleaned up a little
Former-commit-id: af2ba688dac0d0b970d2c5fe060c0cfbdea2aacf [formerly 3ffec2cba795a7cdc1d24993ec39de29f01e0a92] [formerly a9e84aa28cd48712673233d02a2053a7f79f84af [formerly f8268bd5b158131b56c437eddc91901670327a5b [formerly 179cf911ca]]]
Former-commit-id: 996d7c30b7d1ea60ca3ea1ba5bb560464e1d12e0 [formerly 9f8c7111ba6a6b7fdb44fb511d439b9acebcf0bf]
Former-commit-id: 39b5044fd6917f9f146fe0fdd431ceda8bb096cb
Former-commit-id: f43b34d5ff
2016-02-07 18:43:34 -05:00

78 lines
2.1 KiB
Go

package main
import (
"flag"
"fmt"
"log"
"path"
"runtime"
"github.com/gin-gonic/gin"
)
// AllowedIPs is a white/black list of
// IP addresses allowed to access cowyo
var AllowedIPs = map[string]bool{
"192.168.1.13": true,
"192.168.1.12": true,
"192.168.1.2": true,
}
// RuntimeArgs contains all runtime
// arguments available
var RuntimeArgs struct {
ExternalIP string
Port string
DatabaseLocation string
ServerCRT string
ServerKey string
}
func main() {
_, executableFile, _, _ := runtime.Caller(0) // get full path of this file
databaseFile := path.Join(path.Dir(executableFile), "data.db")
flag.StringVar(&RuntimeArgs.Port, "p", ":12312", "port to bind")
flag.StringVar(&RuntimeArgs.DatabaseLocation, "db", databaseFile, "location of database file")
flag.StringVar(&RuntimeArgs.ServerCRT, "crt", "", "location of ssl crt")
flag.StringVar(&RuntimeArgs.ServerKey, "key", "", "location of ssl key")
flag.CommandLine.Usage = func() {
fmt.Println(`cowyo: a websocket notepad
run this to start the server and then visit localhost at the port you specify
(see parameters).
Example: 'cowyo localhost'
Example: 'cowyo -p :8080 localhost'
Example: 'cowyo -db /var/lib/cowyo/db.bolt localhost'
Example: 'cowyo -p :8080 -crt ssl/server.crt -key ssl/server.key localhost'
Options:`)
flag.CommandLine.PrintDefaults()
}
flag.Parse()
RuntimeArgs.ExternalIP = flag.Arg(0)
if RuntimeArgs.ExternalIP == "" {
log.Fatal("You need to specify the external IP address")
}
Open(RuntimeArgs.DatabaseLocation)
defer Close()
// Default page
p := CowyoData{"about", about_page, []string{}, []string{}}
p.save(about_page)
//var q CowyoData
//q.load("SpikySeaSlug")
//rebuildTexts(q)
r := gin.Default()
r.LoadHTMLGlob("templates/*")
r.GET("/", newNote)
r.GET("/:title", editNote)
r.GET("/:title/*option", everythingElse)
r.DELETE("/listitem", deleteListItem)
if RuntimeArgs.ServerCRT != "" && RuntimeArgs.ServerKey != "" {
r.RunTLS(RuntimeArgs.Port, RuntimeArgs.ServerCRT, RuntimeArgs.ServerKey)
} else {
log.Println("No crt/key found, running non-https")
r.Run(RuntimeArgs.Port)
}
}