Henrique Dias 40f3d86c11 Fix typos and bugs
Former-commit-id: fb374cfe0d91354506341fc5463dde7165bddc57 [formerly c1fbd8be9b1cdb8b72018e24d1bd70491675bc69] [formerly c45c4d8d6c5e1dbb9fabc839db8a1293ead7efe8 [formerly f61c32449623563773e4dfe853fc563dbff46ab0]]
Former-commit-id: bb005c63e6f2ef6c33c991071547f4a66b18e891 [formerly be35360661a5d2271e46e723075132906fa0562e]
Former-commit-id: 3072b5e854ca3b2d125c480262e79c66a356c08e
2017-07-25 12:25:15 +01:00

101 lines
2.4 KiB
Go

package main
import (
"encoding/json"
"flag"
"fmt"
"io/ioutil"
"net/http"
"strconv"
"strings"
"github.com/hacdias/filemanager"
"golang.org/x/net/webdav"
)
// confFile contains the configuration file for this File Manager instance.
// If the user chooses to use a configuration file, the flags will be ignored.
type confFile struct {
Database string `json:"database"`
Scope string `json:"scope"`
Commands []string `json:"commands"`
Port int `json:"port"`
AllowCommands bool `json:"allowCommands"`
AllowEdit bool `json:"allowEdit"`
AllowNew bool `json:"allowNew"`
}
var (
config string
database string
scope string
commands string
port string
allowCommands bool
allowEdit bool
allowNew bool
)
func init() {
flag.StringVar(&config, "config", "", "JSON configuration file")
flag.StringVar(&port, "port", "80", "HTTP Port")
flag.StringVar(&database, "database", "./filemanager.db", "Database path")
flag.StringVar(&scope, "scope", ".", "Default scope for new users")
flag.StringVar(&commands, "commands", "git svn hg", "Space separated commands available for new users")
flag.BoolVar(&allowCommands, "allow-commands", true, "Default allow commands option")
flag.BoolVar(&allowEdit, "allow-edit", true, "Default allow edit option")
flag.BoolVar(&allowNew, "allow-new", true, "Default allow new option")
}
func main() {
flag.Parse()
if config != "" {
loadConfig()
}
fm, err := filemanager.New(database, filemanager.User{
AllowCommands: allowCommands,
AllowEdit: allowEdit,
AllowNew: allowNew,
Commands: strings.Split(strings.TrimSpace(commands), " "),
Rules: []*filemanager.Rule{},
CSS: "",
FileSystem: webdav.Dir(scope),
})
if err != nil {
panic(err)
}
fm.SetBaseURL("/")
fm.SetPrefixURL("/")
fmt.Println("Starting filemanager on *:" + port)
if err := http.ListenAndServe(":"+port, fm); err != nil {
panic(err)
}
}
func loadConfig() {
file, err := ioutil.ReadFile(config)
if err != nil {
panic(err)
}
var conf *confFile
err = json.Unmarshal(file, &conf)
if err != nil {
panic(err)
}
database = conf.Database
scope = conf.Scope
commands = strings.Join(conf.Commands, " ")
port = strconv.Itoa(conf.Port)
allowNew = conf.AllowNew
allowEdit = conf.AllowEdit
allowCommands = conf.AllowCommands
}