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

90 lines
2.7 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-11 00:51:19 +03:00
"io/ioutil"
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
2016-02-10 17:13:21 +03:00
// IP addresses allowed to access awwkoala
2016-02-07 21:15:42 +03:00
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 {
2016-02-11 00:47:02 +03:00
WikiName string
2016-02-07 21:15:42 +03:00
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
}
2016-02-10 22:10:48 +03:00
var VersionNum string
2016-02-06 16:40:53 +03:00
func main() {
2016-02-10 22:10:48 +03:00
VersionNum = "1.01"
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")
2016-02-10 23:07:26 +03:00
flag.StringVar(&RuntimeArgs.Port, "p", ":8003", "port to bind")
2016-02-07 21:15:42 +03:00
flag.StringVar(&RuntimeArgs.DatabaseLocation, "db", databaseFile, "location of database file")
2016-02-11 05:25:39 +03:00
flag.StringVar(&RuntimeArgs.AdminKey, "a", RandStringBytesMaskImprSrc(50), "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")
2016-02-11 00:47:02 +03:00
flag.StringVar(&RuntimeArgs.WikiName, "w", "AwwKoala", "custom name for wiki")
2016-02-07 21:15:42 +03:00
flag.CommandLine.Usage = func() {
2016-02-10 17:16:16 +03:00
fmt.Println(`AwwKoala: A Websocket Wiki and Kind Of A List Application
2016-02-07 21:15:42 +03:00
run this to start the server and then visit localhost at the port you specify
(see parameters).
2016-02-10 17:13:21 +03:00
Example: 'awwkoala localhost'
2016-02-10 17:16:16 +03:00
Example: 'awwkoala -p :8080 localhost:8080'
2016-02-10 23:07:26 +03:00
Example: 'awwkoala -db /var/lib/awwkoala/db.bolt localhost:8003'
2016-02-10 17:16:16 +03:00
Example: 'awwkoala -p :8080 -crt ssl/server.crt -key ssl/server.key localhost:8080'
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
2016-02-11 00:51:19 +03:00
aboutFile, _ := ioutil.ReadFile(path.Join(RuntimeArgs.SourcePath, "templates/aboutpage.md"))
2016-02-11 01:03:00 +03:00
p := WikiData{"about", "", []string{}, []string{}}
p.save(string(aboutFile))
2016-02-07 19:05:38 +03:00
2016-02-10 17:16:16 +03:00
// var q WikiData
2016-02-10 17:22:28 +03:00
// q.load("about")
2016-02-10 17:16:16 +03:00
// fmt.Println(getImportantVersions(q))
2016-02-11 05:25:39 +03:00
log.Println(RuntimeArgs.AdminKey)
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-11 05:16:54 +03:00
r.DELETE("/deletepage", deletePage)
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
}