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

125 lines
3.8 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-16 01:11:07 +03:00
"os"
2016-02-07 21:15:42 +03:00
"path"
2016-02-06 16:40:53 +03:00
2016-02-14 17:05:56 +03:00
"github.com/boltdb/bolt"
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
Socket 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-03-14 21:51:27 +03:00
VersionNum = "0.93"
2016-02-16 01:22:06 +03:00
// _, executableFile, _, _ := runtime.Caller(0) // get full path of this file
2016-02-16 01:11:07 +03:00
cwd, _ := os.Getwd()
databaseFile := path.Join(cwd, "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-03-11 22:11:00 +03:00
dumpDataset := flag.Bool("dump", false, "flag to dump all data to 'dump' directory")
2016-02-07 21:15:42 +03:00
flag.CommandLine.Usage = func() {
fmt.Println(`AwwKoala (version ` + VersionNum + `): 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).
Example: 'awwkoala yourserver.com'
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()
2016-03-11 22:11:00 +03:00
if *dumpDataset {
fmt.Println("Dumping data to 'dump' folder...")
Open(RuntimeArgs.DatabaseLocation)
dumpEverything()
Close()
os.Exit(1)
}
2016-02-07 21:15:42 +03:00
RuntimeArgs.ExternalIP = flag.Arg(0)
if RuntimeArgs.ExternalIP == "" {
RuntimeArgs.ExternalIP = GetLocalIP() + RuntimeArgs.Port
2016-02-06 17:11:02 +03:00
}
2016-02-16 01:22:06 +03:00
RuntimeArgs.SourcePath = cwd
2016-03-11 22:11:00 +03:00
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
2016-02-14 17:05:56 +03:00
// create programdata bucket
err := db.Update(func(tx *bolt.Tx) error {
_, err := tx.CreateBucketIfNotExists([]byte("programdata"))
if err != nil {
return fmt.Errorf("create bucket: %s", err)
}
return err
})
if err != nil {
panic(err)
}
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-03-14 21:44:43 +03:00
p := WikiData{"help", "", []string{}, []string{}, false}
2016-02-11 01:03:00 +03:00
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-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)
2016-02-11 18:23:45 +03:00
r.HEAD("/", func(c *gin.Context) { c.Status(200) })
r.GET("/:title", editNote)
r.GET("/:title/*option", everythingElse)
2016-03-14 16:42:19 +03:00
r.POST("/:title/*option", encryptionRoute)
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 != "" {
RuntimeArgs.Socket = "wss"
fmt.Println("--------------------------")
2016-02-16 01:22:06 +03:00
fmt.Println("AwwKoala (version " + VersionNum + ") is up and running on https://" + RuntimeArgs.ExternalIP)
fmt.Println("Admin key: " + RuntimeArgs.AdminKey)
fmt.Println("--------------------------")
2016-02-07 21:20:41 +03:00
r.RunTLS(RuntimeArgs.Port, RuntimeArgs.ServerCRT, RuntimeArgs.ServerKey)
} else {
RuntimeArgs.Socket = "ws"
fmt.Println("--------------------------")
2016-02-16 01:22:06 +03:00
fmt.Println("AwwKoala (version " + VersionNum + ") is up and running on http://" + RuntimeArgs.ExternalIP)
fmt.Println("Admin key: " + RuntimeArgs.AdminKey)
fmt.Println("--------------------------")
2016-02-07 21:20:41 +03:00
r.Run(RuntimeArgs.Port)
}
2016-02-06 16:40:53 +03:00
}