2017-07-29 13:20:58 +00:00
|
|
|
// Package filemanager provides a web interface to access your files
|
|
|
|
// wherever you are. To use this package as a middleware for your app,
|
|
|
|
// you'll need to create a filemanager instance:
|
|
|
|
//
|
|
|
|
// m, err := filemanager.New(database, user)
|
|
|
|
//
|
|
|
|
// Where 'user' contains the default options for new users. You can just
|
|
|
|
// use 'filemanager.DefaultUser' or create yourself a default user:
|
|
|
|
//
|
|
|
|
// m, err := filemanager.New(database, filemanager.User{
|
|
|
|
// Admin: false,
|
|
|
|
// AllowCommands: false,
|
|
|
|
// AllowEdit: true,
|
|
|
|
// AllowNew: true,
|
|
|
|
// Commands: []string{
|
|
|
|
// "git",
|
|
|
|
// },
|
|
|
|
// Rules: []*filemanager.Rule{},
|
|
|
|
// CSS: "",
|
|
|
|
// FileSystem: webdav.Dir("/path/to/files"),
|
|
|
|
// })
|
|
|
|
//
|
|
|
|
// The credentials for the first user are always 'admin' for both the user and
|
|
|
|
// the password, and they can be changed later through the settings. The first
|
|
|
|
// user is always an Admin and has all of the permissions set to 'true'.
|
|
|
|
//
|
|
|
|
// Then, you should set the Prefix URL and the Base URL, using the following
|
|
|
|
// functions:
|
|
|
|
//
|
|
|
|
// m.SetBaseURL("/")
|
|
|
|
// m.SetPrefixURL("/")
|
|
|
|
//
|
|
|
|
// The Prefix URL is a part of the path that is already stripped from the
|
|
|
|
// r.URL.Path variable before the request arrives to File Manager's handler.
|
|
|
|
// This is a function that will rarely be used. You can see one example on Caddy
|
|
|
|
// filemanager plugin.
|
|
|
|
//
|
|
|
|
// The Base URL is the URL path where you want File Manager to be available in. If
|
|
|
|
// you want to be available at the root path, you should call:
|
|
|
|
//
|
|
|
|
// m.SetBaseURL("/")
|
|
|
|
//
|
|
|
|
// But if you want to access it at '/admin', you would call:
|
|
|
|
//
|
|
|
|
// m.SetBaseURL("/admin")
|
|
|
|
//
|
|
|
|
// Now, that you already have a File Manager instance created, you just need to
|
|
|
|
// add it to your handlers using m.ServeHTTP which is compatible to http.Handler.
|
|
|
|
// We also have a m.ServeWithErrorsHTTP that returns the status code and an error.
|
|
|
|
//
|
|
|
|
// One simple implementation for this, at port 80, in the root of the domain, would be:
|
|
|
|
//
|
|
|
|
// http.ListenAndServe(":80", m)
|
2017-06-20 10:40:52 +00:00
|
|
|
package filemanager
|
2017-06-24 11:12:15 +00:00
|
|
|
|
|
|
|
import (
|
2017-06-25 10:40:23 +00:00
|
|
|
"errors"
|
2017-07-08 16:51:47 +00:00
|
|
|
"log"
|
2017-06-24 11:12:15 +00:00
|
|
|
"net/http"
|
2017-07-08 16:51:47 +00:00
|
|
|
"os"
|
|
|
|
"os/exec"
|
2017-07-29 10:02:18 +00:00
|
|
|
"reflect"
|
2017-06-24 11:12:15 +00:00
|
|
|
"strings"
|
2017-08-19 11:35:44 +00:00
|
|
|
"time"
|
2017-06-24 11:12:15 +00:00
|
|
|
|
|
|
|
rice "github.com/GeertJohan/go.rice"
|
2017-07-03 07:59:49 +00:00
|
|
|
"github.com/asdine/storm"
|
2017-07-08 16:51:47 +00:00
|
|
|
"github.com/mholt/caddy"
|
2017-08-11 08:33:47 +00:00
|
|
|
"github.com/robfig/cron"
|
2017-06-24 11:12:15 +00:00
|
|
|
)
|
|
|
|
|
2017-06-25 14:24:16 +00:00
|
|
|
// FileManager is a file manager instance. It should be creating using the
|
|
|
|
// 'New' function and not directly.
|
2017-06-24 11:12:15 +00:00
|
|
|
type FileManager struct {
|
2017-08-19 11:35:44 +00:00
|
|
|
// Job cron.
|
|
|
|
Cron *cron.Cron
|
2017-07-06 13:40:06 +00:00
|
|
|
|
|
|
|
// The key used to sign the JWT tokens.
|
2017-08-19 11:35:44 +00:00
|
|
|
Key []byte
|
2017-06-24 11:12:15 +00:00
|
|
|
|
2017-07-06 13:40:06 +00:00
|
|
|
// The static assets.
|
2017-08-19 11:35:44 +00:00
|
|
|
Assets *rice.Box
|
2017-08-11 08:33:47 +00:00
|
|
|
|
2017-07-03 07:59:49 +00:00
|
|
|
// PrefixURL is a part of the URL that is already trimmed from the request URL before it
|
2017-06-27 09:45:06 +00:00
|
|
|
// arrives to our handlers. It may be useful when using File Manager as a middleware
|
|
|
|
// such as in caddy-filemanager plugin. It is only useful in certain situations.
|
2017-07-03 07:59:49 +00:00
|
|
|
PrefixURL string
|
2017-06-27 09:31:50 +00:00
|
|
|
|
2017-07-03 07:59:49 +00:00
|
|
|
// BaseURL is the path where the GUI will be accessible. It musn't end with
|
|
|
|
// a trailing slash and mustn't contain PrefixURL, if set. It shouldn't be
|
|
|
|
// edited directly. Use SetBaseURL.
|
|
|
|
BaseURL string
|
2017-06-24 11:12:15 +00:00
|
|
|
|
2017-08-02 13:10:05 +00:00
|
|
|
// NoAuth disables the authentication. When the authentication is disabled,
|
|
|
|
// there will only exist one user, called "admin".
|
|
|
|
NoAuth bool
|
|
|
|
|
2017-08-09 14:06:28 +00:00
|
|
|
// StaticGen is the static websit generator handler.
|
|
|
|
StaticGen StaticGen
|
|
|
|
|
2017-07-14 07:25:37 +00:00
|
|
|
// The Default User needed to build the New User page.
|
|
|
|
DefaultUser *User
|
|
|
|
|
2017-07-08 16:51:47 +00:00
|
|
|
// A map of events to a slice of commands.
|
|
|
|
Commands map[string][]string
|
2017-06-25 09:52:34 +00:00
|
|
|
|
2017-08-18 08:00:32 +00:00
|
|
|
Store *Store
|
2017-06-24 11:12:15 +00:00
|
|
|
}
|
|
|
|
|
2017-08-18 08:00:32 +00:00
|
|
|
// Command is a command function.
|
|
|
|
type Command func(r *http.Request, m *FileManager, u *User) error
|
2017-06-24 11:12:15 +00:00
|
|
|
|
2017-08-19 11:35:44 +00:00
|
|
|
func (m *FileManager) Load() error {
|
2017-07-03 07:59:49 +00:00
|
|
|
// Creates a new File Manager instance with the Users
|
|
|
|
// map and Assets box.
|
2017-08-19 11:35:44 +00:00
|
|
|
m.Assets = rice.MustFindBox("./assets/dist")
|
|
|
|
m.Cron = cron.New()
|
2017-07-03 07:59:49 +00:00
|
|
|
|
|
|
|
// Tries to get the encryption key from the database.
|
|
|
|
// If it doesn't exist, create a new one of 256 bits.
|
2017-08-19 11:35:44 +00:00
|
|
|
err := m.Store.Config.Get("key", &m.Key)
|
|
|
|
if err != nil && err == ErrNotExist {
|
2017-07-25 08:01:29 +00:00
|
|
|
var bytes []byte
|
2017-08-19 11:35:44 +00:00
|
|
|
bytes, err = GenerateRandomBytes(64)
|
2017-07-25 08:01:29 +00:00
|
|
|
if err != nil {
|
2017-08-19 11:35:44 +00:00
|
|
|
return err
|
2017-07-25 08:01:29 +00:00
|
|
|
}
|
|
|
|
|
2017-08-19 11:35:44 +00:00
|
|
|
m.Key = bytes
|
|
|
|
err = m.Store.Config.Save("key", m.Key)
|
2017-06-25 08:11:25 +00:00
|
|
|
}
|
|
|
|
|
2017-07-03 07:59:49 +00:00
|
|
|
if err != nil {
|
2017-08-19 11:35:44 +00:00
|
|
|
return err
|
2017-07-03 07:59:49 +00:00
|
|
|
}
|
|
|
|
|
2017-07-08 17:08:11 +00:00
|
|
|
// Tries to get the event commands from the database.
|
|
|
|
// If they don't exist, initialize them.
|
2017-08-19 11:35:44 +00:00
|
|
|
err = m.Store.Config.Get("commands", &m.Commands)
|
2017-07-08 17:08:11 +00:00
|
|
|
if err != nil && err == storm.ErrNotFound {
|
|
|
|
m.Commands = map[string][]string{
|
2017-08-09 14:06:28 +00:00
|
|
|
"before_save": {},
|
|
|
|
"after_save": {},
|
|
|
|
"before_publish": {},
|
|
|
|
"after_publish": {},
|
2017-07-08 17:08:11 +00:00
|
|
|
}
|
2017-08-19 11:35:44 +00:00
|
|
|
err = m.Store.Config.Save("commands", m.Commands)
|
2017-07-08 17:08:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
2017-08-19 11:35:44 +00:00
|
|
|
return err
|
2017-07-08 17:08:11 +00:00
|
|
|
}
|
|
|
|
|
2017-08-19 11:35:44 +00:00
|
|
|
// Tries to fetch the users from the database.
|
|
|
|
users, err := m.Store.Users.Gets()
|
2017-07-03 07:59:49 +00:00
|
|
|
if err != nil {
|
2017-08-19 11:35:44 +00:00
|
|
|
return err
|
2017-07-03 07:59:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// If there are no users in the database, it creates a new one
|
|
|
|
// based on 'base' User that must be provided by the function caller.
|
|
|
|
if len(users) == 0 {
|
2017-08-19 11:35:44 +00:00
|
|
|
u := *m.DefaultUser
|
2017-07-20 08:52:03 +00:00
|
|
|
u.Username = "admin"
|
|
|
|
|
2017-07-03 07:59:49 +00:00
|
|
|
// Hashes the password.
|
2017-08-19 11:35:44 +00:00
|
|
|
u.Password, err = HashPassword("admin")
|
2017-07-03 07:59:49 +00:00
|
|
|
if err != nil {
|
2017-08-19 11:35:44 +00:00
|
|
|
return err
|
2017-07-03 07:59:49 +00:00
|
|
|
}
|
|
|
|
|
2017-07-06 08:33:36 +00:00
|
|
|
// The first user must be an administrator.
|
2017-07-20 08:52:03 +00:00
|
|
|
u.Admin = true
|
|
|
|
u.AllowCommands = true
|
|
|
|
u.AllowNew = true
|
|
|
|
u.AllowEdit = true
|
2017-08-10 11:18:51 +00:00
|
|
|
u.AllowPublish = true
|
2017-07-03 07:59:49 +00:00
|
|
|
|
|
|
|
// Saves the user to the database.
|
2017-08-19 11:35:44 +00:00
|
|
|
if err := m.Store.Users.Save(&u); err != nil {
|
|
|
|
return err
|
2017-07-03 07:59:49 +00:00
|
|
|
}
|
|
|
|
}
|
2017-06-25 08:11:25 +00:00
|
|
|
|
2017-08-19 11:35:44 +00:00
|
|
|
m.DefaultUser.Username = ""
|
|
|
|
m.DefaultUser.Password = ""
|
2017-07-18 15:36:08 +00:00
|
|
|
|
2017-08-19 11:35:44 +00:00
|
|
|
m.Cron.AddFunc("@hourly", m.ShareCleaner)
|
|
|
|
m.Cron.Start()
|
2017-08-11 08:33:47 +00:00
|
|
|
|
2017-08-19 11:35:44 +00:00
|
|
|
return nil
|
|
|
|
}
|
2017-06-25 08:11:25 +00:00
|
|
|
|
2017-06-27 09:45:06 +00:00
|
|
|
// RootURL returns the actual URL where
|
2017-06-25 09:52:34 +00:00
|
|
|
// File Manager interface can be accessed.
|
2017-06-27 09:45:06 +00:00
|
|
|
func (m FileManager) RootURL() string {
|
2017-07-03 07:59:49 +00:00
|
|
|
return m.PrefixURL + m.BaseURL
|
2017-06-24 11:12:15 +00:00
|
|
|
}
|
|
|
|
|
2017-06-27 09:45:06 +00:00
|
|
|
// SetPrefixURL updates the prefixURL of a File
|
|
|
|
// Manager object.
|
2017-06-27 13:49:46 +00:00
|
|
|
func (m *FileManager) SetPrefixURL(url string) {
|
2017-06-27 09:45:06 +00:00
|
|
|
url = strings.TrimPrefix(url, "/")
|
|
|
|
url = strings.TrimSuffix(url, "/")
|
|
|
|
url = "/" + url
|
2017-07-03 07:59:49 +00:00
|
|
|
m.PrefixURL = strings.TrimSuffix(url, "/")
|
2017-06-27 09:45:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetBaseURL updates the baseURL of a File Manager
|
2017-06-25 09:52:34 +00:00
|
|
|
// object.
|
2017-06-25 08:11:25 +00:00
|
|
|
func (m *FileManager) SetBaseURL(url string) {
|
|
|
|
url = strings.TrimPrefix(url, "/")
|
|
|
|
url = strings.TrimSuffix(url, "/")
|
|
|
|
url = "/" + url
|
2017-07-03 07:59:49 +00:00
|
|
|
m.BaseURL = strings.TrimSuffix(url, "/")
|
2017-06-25 08:11:25 +00:00
|
|
|
}
|
|
|
|
|
2017-08-09 14:06:28 +00:00
|
|
|
// ServeHTTP handles the request.
|
2017-07-20 08:03:14 +00:00
|
|
|
func (m *FileManager) ServeHTTP(w http.ResponseWriter, r *http.Request) {
|
2017-08-18 08:00:32 +00:00
|
|
|
/* code, err := serveHTTP(&RequestContext{
|
2017-08-01 19:49:56 +00:00
|
|
|
FileManager: m,
|
|
|
|
User: nil,
|
|
|
|
File: nil,
|
2017-06-27 14:35:39 +00:00
|
|
|
}, w, r)
|
2017-07-06 13:40:06 +00:00
|
|
|
|
2017-08-01 19:49:56 +00:00
|
|
|
if code >= 400 {
|
2017-07-06 13:40:06 +00:00
|
|
|
w.WriteHeader(code)
|
2017-07-20 08:03:14 +00:00
|
|
|
|
2017-08-01 19:49:56 +00:00
|
|
|
if err == nil {
|
2017-07-30 08:21:17 +00:00
|
|
|
txt := http.StatusText(code)
|
|
|
|
log.Printf("%v: %v %v\n", r.URL.Path, code, txt)
|
|
|
|
w.Write([]byte(txt))
|
2017-07-20 08:03:14 +00:00
|
|
|
}
|
2017-07-06 13:40:06 +00:00
|
|
|
}
|
2017-08-01 19:49:56 +00:00
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
w.Write([]byte(err.Error()))
|
2017-08-18 08:00:32 +00:00
|
|
|
} */
|
2017-07-20 08:03:14 +00:00
|
|
|
}
|
2017-07-06 13:40:06 +00:00
|
|
|
|
2017-08-18 08:00:32 +00:00
|
|
|
// Attach attaches a static generator to the current File Manager.
|
|
|
|
func (m *FileManager) Attach(s StaticGen) error {
|
|
|
|
if reflect.TypeOf(s).Kind() != reflect.Ptr {
|
2017-08-09 14:06:28 +00:00
|
|
|
return errors.New("data should be a pointer to interface, not interface")
|
|
|
|
}
|
|
|
|
|
2017-08-18 08:00:32 +00:00
|
|
|
err := s.Setup()
|
|
|
|
if err != nil {
|
2017-08-09 14:06:28 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2017-08-18 08:00:32 +00:00
|
|
|
m.StaticGen = s
|
2017-08-10 11:18:51 +00:00
|
|
|
|
2017-08-19 11:35:44 +00:00
|
|
|
err = m.Store.Config.Get("staticgen_"+s.Name(), s)
|
|
|
|
if err == ErrNotExist {
|
|
|
|
return m.Store.Config.Save("staticgen_"+s.Name(), s)
|
2017-08-10 11:18:51 +00:00
|
|
|
}
|
|
|
|
|
2017-08-19 11:35:44 +00:00
|
|
|
return err
|
|
|
|
}
|
2017-08-09 14:06:28 +00:00
|
|
|
|
2017-08-19 11:35:44 +00:00
|
|
|
// ShareCleaner removes sharing links that are no longer active.
|
2017-08-11 08:33:47 +00:00
|
|
|
// This function is set to run periodically.
|
2017-08-19 11:35:44 +00:00
|
|
|
func (m FileManager) ShareCleaner() {
|
2017-08-11 08:33:47 +00:00
|
|
|
// Get all links.
|
2017-08-19 11:35:44 +00:00
|
|
|
links, err := m.Store.Share.Gets()
|
2017-08-11 08:33:47 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// Find the expired ones.
|
|
|
|
for i := range links {
|
|
|
|
if links[i].Expires && links[i].ExpireDate.Before(time.Now()) {
|
2017-08-19 11:35:44 +00:00
|
|
|
err = m.Store.Share.Delete(links[i].Hash)
|
2017-08-11 08:33:47 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Print(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-08-19 11:35:44 +00:00
|
|
|
}
|
2017-07-08 16:51:47 +00:00
|
|
|
|
2017-07-08 17:08:11 +00:00
|
|
|
// Runner runs the commands for a certain event type.
|
2017-07-08 16:51:47 +00:00
|
|
|
func (m FileManager) Runner(event string, path string) error {
|
2017-07-12 14:28:35 +00:00
|
|
|
commands := []string{}
|
|
|
|
|
|
|
|
// Get the commands from the File Manager instance itself.
|
|
|
|
if val, ok := m.Commands[event]; ok {
|
|
|
|
commands = append(commands, val...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Execute the commands.
|
|
|
|
for _, command := range commands {
|
2017-07-08 16:51:47 +00:00
|
|
|
args := strings.Split(command, " ")
|
|
|
|
nonblock := false
|
|
|
|
|
|
|
|
if len(args) > 1 && args[len(args)-1] == "&" {
|
|
|
|
// Run command in background; non-blocking
|
|
|
|
nonblock = true
|
|
|
|
args = args[:len(args)-1]
|
|
|
|
}
|
|
|
|
|
|
|
|
command, args, err := caddy.SplitCommandAndArgs(strings.Join(args, " "))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
cmd := exec.Command(command, args...)
|
|
|
|
cmd.Env = append(os.Environ(), "file="+path)
|
|
|
|
cmd.Stdin = os.Stdin
|
|
|
|
cmd.Stdout = os.Stdout
|
|
|
|
cmd.Stderr = os.Stderr
|
|
|
|
|
|
|
|
if nonblock {
|
|
|
|
log.Printf("[INFO] Nonblocking Command:\"%s %s\"", command, strings.Join(args, " "))
|
|
|
|
if err := cmd.Start(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Printf("[INFO] Blocking Command:\"%s %s\"", command, strings.Join(args, " "))
|
|
|
|
if err := cmd.Run(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|