1
0
mirror of https://github.com/schollz/cowyo.git synced 2023-08-10 21:13:00 +03:00
cowyo/main.go
Travis Scholl 525410630e enable TLS as option
Former-commit-id: 508a5ad64d9b75f34474ab631a6126db78618ec4 [formerly 0f4d3525998db6a60343c64e40589cf7ddad804c] [formerly 1d29ed0259dff609ee49c384d9ed80bd1057ae0a [formerly e927b6861b59f72be54822fde9dc674e748aeba4 [formerly ec2c759178]]]
Former-commit-id: 9f3fafe9d9b9e5965fe2854b748579042e9f7639 [formerly 3d1a563666349cdef7e96d0e4dc2bf1ce7024511]
Former-commit-id: fe0b27a75cf202add6ba8b2da4a793414588c868
Former-commit-id: 41a6745016
2016-02-07 10:20:41 -08:00

75 lines
2.0 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}
p.save()
fmt.Println(about_page)
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)
}
}