1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
cowyo/main.go

82 lines
2.3 KiB
Go
Raw Normal View History

2016-02-06 16:40:53 +03:00
package main
import (
2016-02-07 21:15:42 +03:00
"flag"
2016-02-07 19:05:38 +03:00
"fmt"
2016-02-06 16:40:53 +03:00
"log"
2016-02-07 21:15:42 +03:00
"path"
"runtime"
2016-02-06 16:40:53 +03:00
"github.com/gin-gonic/gin"
)
2016-02-07 21:15:42 +03:00
// 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,
}
2016-02-07 08:24:17 +03:00
2016-02-07 21:15:42 +03:00
// RuntimeArgs contains all runtime
// arguments available
var RuntimeArgs struct {
ExternalIP string
Port string
DatabaseLocation string
ServerCRT string
ServerKey string
2016-02-08 18:03:00 +03:00
SourcePath string
AdminKey string
2016-02-06 16:40:53 +03:00
}
func main() {
2016-02-07 21:15:42 +03:00
_, 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")
2016-02-09 01:47:07 +03:00
flag.StringVar(&RuntimeArgs.AdminKey, "a", "", "key to access admin priveleges")
2016-02-07 21:15:42 +03:00
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'
2016-02-07 21:20:41 +03:00
Example: 'cowyo -p :8080 -crt ssl/server.crt -key ssl/server.key localhost'
2016-02-07 21:15:42 +03:00
Options:`)
flag.CommandLine.PrintDefaults()
}
flag.Parse()
RuntimeArgs.ExternalIP = flag.Arg(0)
if RuntimeArgs.ExternalIP == "" {
2016-02-06 17:11:02 +03:00
log.Fatal("You need to specify the external IP address")
}
2016-02-08 18:03:00 +03:00
RuntimeArgs.SourcePath = path.Dir(executableFile)
2016-02-07 21:15:42 +03:00
Open(RuntimeArgs.DatabaseLocation)
2016-02-06 16:40:53 +03:00
defer Close()
2016-02-07 19:05:38 +03:00
// Default page
p := CowyoData{"about", about_page, []string{}, []string{}}
p.save(about_page)
2016-02-07 19:05:38 +03:00
2016-02-08 02:43:34 +03:00
//var q CowyoData
//q.load("SpikySeaSlug")
//rebuildTexts(q)
2016-02-06 16:40:53 +03:00
r := gin.Default()
2016-02-08 18:03:00 +03:00
r.LoadHTMLGlob(path.Join(RuntimeArgs.SourcePath, "templates/*"))
r.GET("/", newNote)
r.GET("/:title", editNote)
r.GET("/:title/*option", everythingElse)
2016-02-07 19:05:38 +03:00
r.DELETE("/listitem", deleteListItem)
2016-02-07 21:20:41 +03:00
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)
}
2016-02-06 16:40:53 +03:00
}