mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
12476b03c2
Former-commit-id: 1c5335ec40ce0b7ee52abb71af58bedd5559ee32 [formerly f6c2c21205c5859ae3972a43e6de8086268d9d88] [formerly f4dfec26467d1e2b994aab8305281364b3029986 [formerly ee5c701dd0
]]
Former-commit-id: 632facfd569da911dd20b0375b4fede77664e32e [formerly 3dc6dbad5fc4d30880af0961fae01c8fac5a113f]
Former-commit-id: 577ba1fedacb3cc7a0ecc9fca4cadd896398e8cf
124 lines
3.8 KiB
Go
124 lines
3.8 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"os"
|
|
"path"
|
|
|
|
"github.com/boltdb/bolt"
|
|
"github.com/gin-gonic/gin"
|
|
)
|
|
|
|
// AllowedIPs is a white/black list of
|
|
// IP addresses allowed to access awwkoala
|
|
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 {
|
|
WikiName string
|
|
ExternalIP string
|
|
Port string
|
|
DatabaseLocation string
|
|
ServerCRT string
|
|
ServerKey string
|
|
SourcePath string
|
|
AdminKey string
|
|
Socket string
|
|
}
|
|
var VersionNum string
|
|
|
|
func main() {
|
|
VersionNum = "0.9"
|
|
// _, executableFile, _, _ := runtime.Caller(0) // get full path of this file
|
|
cwd, _ := os.Getwd()
|
|
databaseFile := path.Join(cwd, "data.db")
|
|
flag.StringVar(&RuntimeArgs.Port, "p", ":8003", "port to bind")
|
|
flag.StringVar(&RuntimeArgs.DatabaseLocation, "db", databaseFile, "location of database file")
|
|
flag.StringVar(&RuntimeArgs.AdminKey, "a", RandStringBytesMaskImprSrc(50), "key to access admin priveleges")
|
|
flag.StringVar(&RuntimeArgs.ServerCRT, "crt", "", "location of ssl crt")
|
|
flag.StringVar(&RuntimeArgs.ServerKey, "key", "", "location of ssl key")
|
|
flag.StringVar(&RuntimeArgs.WikiName, "w", "AwwKoala", "custom name for wiki")
|
|
dumpDataset := flag.Bool("dump", false, "flag to dump all data to 'dump' directory")
|
|
flag.CommandLine.Usage = func() {
|
|
fmt.Println(`AwwKoala (version ` + VersionNum + `): A Websocket Wiki and Kind Of A List Application
|
|
run this to start the server and then visit localhost at the port you specify
|
|
(see parameters).
|
|
Example: 'awwkoala yourserver.com'
|
|
Example: 'awwkoala -p :8080 localhost:8080'
|
|
Example: 'awwkoala -db /var/lib/awwkoala/db.bolt localhost:8003'
|
|
Example: 'awwkoala -p :8080 -crt ssl/server.crt -key ssl/server.key localhost:8080'
|
|
Options:`)
|
|
flag.CommandLine.PrintDefaults()
|
|
}
|
|
flag.Parse()
|
|
|
|
if *dumpDataset {
|
|
fmt.Println("Dumping data to 'dump' folder...")
|
|
Open(RuntimeArgs.DatabaseLocation)
|
|
dumpEverything()
|
|
Close()
|
|
os.Exit(1)
|
|
}
|
|
|
|
RuntimeArgs.ExternalIP = flag.Arg(0)
|
|
if RuntimeArgs.ExternalIP == "" {
|
|
RuntimeArgs.ExternalIP = GetLocalIP() + RuntimeArgs.Port
|
|
}
|
|
RuntimeArgs.SourcePath = cwd
|
|
|
|
Open(RuntimeArgs.DatabaseLocation)
|
|
defer Close()
|
|
|
|
// 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)
|
|
}
|
|
|
|
// Default page
|
|
aboutFile, _ := ioutil.ReadFile(path.Join(RuntimeArgs.SourcePath, "templates/aboutpage.md"))
|
|
p := WikiData{"about", "", []string{}, []string{}}
|
|
p.save(string(aboutFile))
|
|
|
|
// var q WikiData
|
|
// q.load("about")
|
|
// fmt.Println(getImportantVersions(q))
|
|
|
|
r := gin.Default()
|
|
r.LoadHTMLGlob(path.Join(RuntimeArgs.SourcePath, "templates/*"))
|
|
r.GET("/", newNote)
|
|
r.HEAD("/", func(c *gin.Context) { c.Status(200) })
|
|
r.GET("/:title", editNote)
|
|
r.GET("/:title/*option", everythingElse)
|
|
r.DELETE("/listitem", deleteListItem)
|
|
r.DELETE("/deletepage", deletePage)
|
|
if RuntimeArgs.ServerCRT != "" && RuntimeArgs.ServerKey != "" {
|
|
RuntimeArgs.Socket = "wss"
|
|
fmt.Println("--------------------------")
|
|
fmt.Println("AwwKoala (version " + VersionNum + ") is up and running on https://" + RuntimeArgs.ExternalIP)
|
|
fmt.Println("Admin key: " + RuntimeArgs.AdminKey)
|
|
fmt.Println("--------------------------")
|
|
r.RunTLS(RuntimeArgs.Port, RuntimeArgs.ServerCRT, RuntimeArgs.ServerKey)
|
|
} else {
|
|
RuntimeArgs.Socket = "ws"
|
|
fmt.Println("--------------------------")
|
|
fmt.Println("AwwKoala (version " + VersionNum + ") is up and running on http://" + RuntimeArgs.ExternalIP)
|
|
fmt.Println("Admin key: " + RuntimeArgs.AdminKey)
|
|
fmt.Println("--------------------------")
|
|
r.Run(RuntimeArgs.Port)
|
|
}
|
|
}
|