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

169 lines
5.1 KiB
Go
Raw Normal View History

2016-02-06 16:40:53 +03:00
package main
import (
2016-03-30 00:00:58 +03:00
"bytes"
2016-02-07 21:15:42 +03:00
"flag"
2016-02-07 19:05:38 +03:00
"fmt"
2016-03-30 00:00:58 +03:00
"io"
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-03-30 00:00:58 +03:00
"path/filepath"
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-03-19 18:26:08 +03:00
// IP addresses allowed to access cowyo
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-03-27 18:54:59 +03:00
ForceWss bool
2016-03-30 00:00:58 +03:00
DumpDataset string
RestoreDataset 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
2016-03-29 23:09:21 +03:00
func init() {
gin.SetMode(gin.ReleaseMode)
}
2016-02-06 16:40:53 +03:00
func main() {
2016-03-30 00:56:54 +03:00
VersionNum = "1.0"
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-03-29 23:09:21 +03:00
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")
2016-03-19 18:26:08 +03:00
flag.StringVar(&RuntimeArgs.WikiName, "w", "cowyo", "custom name for wiki")
2016-03-29 23:09:21 +03:00
flag.BoolVar(&RuntimeArgs.ForceWss, "e", false, "force encrypted sockets (use if using Caddy auto HTTPS)")
2016-03-30 00:00:58 +03:00
flag.StringVar(&RuntimeArgs.DumpDataset, "dump", "", "directory to dump all data to")
flag.StringVar(&RuntimeArgs.RestoreDataset, "restore", "", "directory to restore all data from")
2016-02-07 21:15:42 +03:00
flag.CommandLine.Usage = func() {
2016-03-29 23:09:21 +03:00
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'
2016-03-19 18:26:08 +03:00
Example: 'cowyo yourserver.com'
Example: 'cowyo -p :8080 localhost:8080'
Example: 'cowyo -p :8080 -crt ssl/server.crt -key ssl/server.key localhost:8080'
2016-03-29 23:09:21 +03:00
2016-02-07 21:15:42 +03:00
Options:`)
flag.CommandLine.PrintDefaults()
}
flag.Parse()
2016-03-11 22:11:00 +03:00
2016-03-30 00:00:58 +03:00
if len(RuntimeArgs.DumpDataset) > 0 {
fmt.Println("Dumping data to '" + RuntimeArgs.DumpDataset + "' folder...")
dumpEverything(RuntimeArgs.DumpDataset)
2016-03-11 22:11:00 +03:00
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-03-29 23:09:21 +03:00
if len(RuntimeArgs.AdminKey) == 0 {
RuntimeArgs.AdminKey = RandStringBytesMaskImprSrc(50)
}
2016-03-14 22:25:09 +03:00
// create programdata bucket
2016-02-07 21:15:42 +03:00
Open(RuntimeArgs.DatabaseLocation)
2016-02-07 19:05:38 +03:00
2016-02-14 17:05:56 +03:00
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-03-14 22:25:09 +03:00
Close()
2016-03-14 22:36:01 +03:00
2016-02-07 19:05:38 +03:00
// Default page
2016-04-07 17:15:46 +03:00
defaultPage, _ := ioutil.ReadFile(path.Join(RuntimeArgs.SourcePath, "templates/aboutpage.md"))
2016-03-15 04:39:09 +03:00
p := WikiData{"help", "", []string{}, []string{}, false, "zzz"}
2016-04-07 17:15:46 +03:00
p.save(string(defaultPage))
defaultPage, _ = ioutil.ReadFile(path.Join(RuntimeArgs.SourcePath, "templates/privacypolicy.md"))
p = WikiData{"privacypolicy", "", []string{}, []string{}, false, "zzz"}
p.save(string(defaultPage))
2016-02-07 19:05:38 +03:00
2016-03-30 00:00:58 +03:00
if len(RuntimeArgs.RestoreDataset) > 0 {
fmt.Println("Restoring data from '" + RuntimeArgs.RestoreDataset + "' folder...")
filepath.Walk(RuntimeArgs.RestoreDataset, restoreFile)
os.Exit(1)
}
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)
2016-03-29 02:55:25 +03:00
r.PUT("/:title", putFile)
r.PUT("/", putFile)
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-03-19 18:26:08 +03:00
fmt.Println("cowyo (version " + VersionNum + ") is up and running on https://" + RuntimeArgs.ExternalIP)
2016-02-16 01:22:06 +03:00
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"
2016-03-27 18:54:59 +03:00
if RuntimeArgs.ForceWss {
RuntimeArgs.Socket = "wss"
}
fmt.Println("--------------------------")
2016-03-19 18:26:08 +03:00
fmt.Println("cowyo (version " + VersionNum + ") is up and running on http://" + RuntimeArgs.ExternalIP)
2016-02-16 01:22:06 +03:00
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
}
2016-03-30 00:00:58 +03:00
func restoreFile(path string, f os.FileInfo, err error) error {
fName := filepath.Base(path)
buf := bytes.NewBuffer(nil)
fOpen, _ := os.Open(path) // Error handling elided for brevity.
io.Copy(buf, fOpen) // Error handling elided for brevity.
fOpen.Close()
s := string(buf.Bytes())
fmt.Println(fName)
p := WikiData{fName, "", []string{}, []string{}, false, ""}
p.save(s)
return nil
}