mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
6adb82b7d7
Former-commit-id: db3a0d5d035ee1e4ca2a918268d2422994826f06 [formerly c8c26fe5a5f17530f760e580d3120733b9f05aec] [formerly 787c25f6e9f7b298d598e4002f8e7d5f3f82d68f [formerly a6486364d6a1f512c2067825c05ee5d5dc7c12cd [formerly1fb3282c1c
]]] Former-commit-id: 49b0da7945773cce3c07edb0b1d7a160fea30472 [formerly bdb9d8e6ed376c8216a09b86453c19c326f66f15] Former-commit-id: 846154396ecd0adedeebe9fa05b3ae8abed803e1 Former-commit-id:ad85ecc1da
142 lines
4.0 KiB
Go
142 lines
4.0 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 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 {
|
|
WikiName string
|
|
ExternalIP string
|
|
Port string
|
|
DatabaseLocation string
|
|
ServerCRT string
|
|
ServerKey string
|
|
SourcePath string
|
|
AdminKey string
|
|
Socket string
|
|
ForceWss bool
|
|
}
|
|
var VersionNum string
|
|
|
|
func init() {
|
|
gin.SetMode(gin.ReleaseMode)
|
|
}
|
|
|
|
func main() {
|
|
VersionNum = "0.95"
|
|
// _, 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", "", "key to access admin priveleges")
|
|
flag.StringVar(&RuntimeArgs.ServerCRT, "crt", "", "location of SSL certificate")
|
|
flag.StringVar(&RuntimeArgs.ServerKey, "key", "", "location of SSL key")
|
|
flag.StringVar(&RuntimeArgs.WikiName, "w", "cowyo", "custom name for wiki")
|
|
flag.BoolVar(&RuntimeArgs.ForceWss, "e", false, "force encrypted sockets (use if using Caddy auto HTTPS)")
|
|
dumpDataset := flag.Bool("dump", false, "flag to dump all data to 'dump' directory")
|
|
flag.CommandLine.Usage = func() {
|
|
fmt.Println(`cowyo (version ` + VersionNum + `)
|
|
|
|
Usage: cowyo [options] [address]
|
|
|
|
If address is not provided then cowyo
|
|
will determine the best internal IP address.
|
|
|
|
Example: 'cowyo'
|
|
Example: 'cowyo yourserver.com'
|
|
Example: 'cowyo -p :8080 localhost:8080'
|
|
Example: 'cowyo -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...")
|
|
dumpEverything()
|
|
os.Exit(1)
|
|
}
|
|
|
|
RuntimeArgs.ExternalIP = flag.Arg(0)
|
|
if RuntimeArgs.ExternalIP == "" {
|
|
RuntimeArgs.ExternalIP = GetLocalIP() + RuntimeArgs.Port
|
|
}
|
|
RuntimeArgs.SourcePath = cwd
|
|
|
|
if len(RuntimeArgs.AdminKey) == 0 {
|
|
RuntimeArgs.AdminKey = RandStringBytesMaskImprSrc(50)
|
|
}
|
|
// create programdata bucket
|
|
Open(RuntimeArgs.DatabaseLocation)
|
|
|
|
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)
|
|
}
|
|
Close()
|
|
|
|
// Default page
|
|
aboutFile, _ := ioutil.ReadFile(path.Join(RuntimeArgs.SourcePath, "templates/aboutpage.md"))
|
|
p := WikiData{"help", "", []string{}, []string{}, false, "zzz"}
|
|
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.PUT("/:title", putFile)
|
|
r.PUT("/", putFile)
|
|
r.GET("/:title/*option", everythingElse)
|
|
r.POST("/:title/*option", encryptionRoute)
|
|
r.DELETE("/listitem", deleteListItem)
|
|
r.DELETE("/deletepage", deletePage)
|
|
if RuntimeArgs.ServerCRT != "" && RuntimeArgs.ServerKey != "" {
|
|
RuntimeArgs.Socket = "wss"
|
|
fmt.Println("--------------------------")
|
|
fmt.Println("cowyo (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"
|
|
if RuntimeArgs.ForceWss {
|
|
RuntimeArgs.Socket = "wss"
|
|
}
|
|
fmt.Println("--------------------------")
|
|
fmt.Println("cowyo (version " + VersionNum + ") is up and running on http://" + RuntimeArgs.ExternalIP)
|
|
fmt.Println("Admin key: " + RuntimeArgs.AdminKey)
|
|
fmt.Println("--------------------------")
|
|
r.Run(RuntimeArgs.Port)
|
|
}
|
|
}
|