mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
cfe4d43ee4
Former-commit-id: 54932b375a6cf0476e01d1d2ee714d88823ba1af [formerly 8f4f61ed964a4a21bb3c7045b429bbf460335a81] [formerly 0a25b1d69fa08bdf8c6d383dfb22e0924fde728b [formerly 2d7e60db6ab3326df883ffb2a04a53adfaa72a64 [formerly43ed6f23a1
]]] Former-commit-id: 95d794f249f1d3cdbcbd2b3aac7d69fc8bd556a5 [formerly 465a7492cec1969685c7f5d40d458c0666d631f9] Former-commit-id: 0afa0fc17276a213d35e82eaa280526896eebad1 Former-commit-id:fec0502be2
90 lines
2.7 KiB
Go
90 lines
2.7 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
"io/ioutil"
|
|
"log"
|
|
"path"
|
|
"runtime"
|
|
|
|
"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
|
|
}
|
|
var VersionNum string
|
|
|
|
func main() {
|
|
VersionNum = "1.01"
|
|
_, executableFile, _, _ := runtime.Caller(0) // get full path of this file
|
|
databaseFile := path.Join(path.Dir(executableFile), "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")
|
|
flag.CommandLine.Usage = func() {
|
|
fmt.Println(`AwwKoala: 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 localhost'
|
|
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()
|
|
RuntimeArgs.ExternalIP = flag.Arg(0)
|
|
if RuntimeArgs.ExternalIP == "" {
|
|
log.Fatal("You need to specify the external IP address")
|
|
}
|
|
RuntimeArgs.SourcePath = path.Dir(executableFile)
|
|
Open(RuntimeArgs.DatabaseLocation)
|
|
defer Close()
|
|
|
|
// 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))
|
|
log.Println(RuntimeArgs.AdminKey)
|
|
|
|
r := gin.Default()
|
|
r.LoadHTMLGlob(path.Join(RuntimeArgs.SourcePath, "templates/*"))
|
|
r.GET("/", newNote)
|
|
r.GET("/:title", editNote)
|
|
r.GET("/:title/*option", everythingElse)
|
|
r.DELETE("/listitem", deleteListItem)
|
|
r.DELETE("/deletepage", deletePage)
|
|
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)
|
|
}
|
|
}
|