2018-12-23 08:16:50 +08:00
|
|
|
//go:generate go run assets_generate.go
|
|
|
|
// The "go:generate" directive compiles static assets by running assets_generate.go
|
|
|
|
|
|
|
|
package data
|
|
|
|
|
|
|
|
import (
|
2021-11-04 18:12:57 +08:00
|
|
|
"fmt"
|
2018-12-23 08:16:50 +08:00
|
|
|
"html/template"
|
|
|
|
"io/ioutil"
|
2020-05-08 23:15:21 +08:00
|
|
|
"time"
|
2018-12-23 08:16:50 +08:00
|
|
|
|
2021-04-20 12:59:36 +08:00
|
|
|
"github.com/spf13/pflag"
|
|
|
|
|
2019-07-29 01:47:38 +08:00
|
|
|
"github.com/rclone/rclone/fs"
|
2021-04-20 12:59:36 +08:00
|
|
|
"github.com/rclone/rclone/fs/config/flags"
|
2018-12-23 08:16:50 +08:00
|
|
|
)
|
|
|
|
|
2021-04-20 12:59:36 +08:00
|
|
|
// Help describes the options for the serve package
|
|
|
|
var Help = `--template allows a user to specify a custom markup template for http
|
|
|
|
and webdav serve functions. The server exports the following markup
|
|
|
|
to be used within the template to server pages:
|
|
|
|
|
|
|
|
| Parameter | Description |
|
|
|
|
| :---------- | :---------- |
|
|
|
|
| .Name | The full path of a file/directory. |
|
|
|
|
| .Title | Directory listing of .Name |
|
|
|
|
| .Sort | The current sort used. This is changeable via ?sort= parameter |
|
|
|
|
| | Sort Options: namedirfirst,name,size,time (default namedirfirst) |
|
|
|
|
| .Order | The current ordering used. This is changeable via ?order= parameter |
|
|
|
|
| | Order Options: asc,desc (default asc) |
|
|
|
|
| .Query | Currently unused. |
|
|
|
|
| .Breadcrumb | Allows for creating a relative navigation |
|
|
|
|
|-- .Link | The relative to the root link of the Text. |
|
|
|
|
|-- .Text | The Name of the directory. |
|
|
|
|
| .Entries | Information about a specific file/directory. |
|
|
|
|
|-- .URL | The 'url' of an entry. |
|
|
|
|
|-- .Leaf | Currently same as 'URL' but intended to be 'just' the name. |
|
|
|
|
|-- .IsDir | Boolean for if an entry is a directory or not. |
|
|
|
|
|-- .Size | Size in Bytes of the entry. |
|
|
|
|
|-- .ModTime | The UTC timestamp of an entry. |
|
|
|
|
`
|
|
|
|
|
|
|
|
// Options for the templating functionality
|
|
|
|
type Options struct {
|
|
|
|
Template string
|
|
|
|
}
|
|
|
|
|
|
|
|
// AddFlags for the templating functionality
|
|
|
|
func AddFlags(flagSet *pflag.FlagSet, prefix string, Opt *Options) {
|
2021-08-16 17:30:01 +08:00
|
|
|
flags.StringVarP(flagSet, &Opt.Template, prefix+"template", "", Opt.Template, "User-specified template")
|
2021-04-20 12:59:36 +08:00
|
|
|
}
|
|
|
|
|
2020-05-11 01:53:38 +08:00
|
|
|
// AfterEpoch returns the time since the epoch for the given time
|
2020-05-08 23:15:21 +08:00
|
|
|
func AfterEpoch(t time.Time) bool {
|
|
|
|
return t.After(time.Time{})
|
|
|
|
}
|
|
|
|
|
2020-05-01 02:24:11 +08:00
|
|
|
// GetTemplate returns the HTML template for serving directories via HTTP/Webdav
|
|
|
|
func GetTemplate(tmpl string) (tpl *template.Template, err error) {
|
|
|
|
var templateString string
|
|
|
|
if tmpl == "" {
|
|
|
|
templateFile, err := Assets.Open("index.html")
|
|
|
|
if err != nil {
|
2021-11-04 18:12:57 +08:00
|
|
|
return nil, fmt.Errorf("get template open: %w", err)
|
2020-05-01 02:24:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
defer fs.CheckClose(templateFile, &err)
|
|
|
|
|
|
|
|
templateBytes, err := ioutil.ReadAll(templateFile)
|
|
|
|
if err != nil {
|
2021-11-04 18:12:57 +08:00
|
|
|
return nil, fmt.Errorf("get template read: %w", err)
|
2020-05-01 02:24:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
templateString = string(templateBytes)
|
|
|
|
|
|
|
|
} else {
|
|
|
|
templateFile, err := ioutil.ReadFile(tmpl)
|
|
|
|
if err != nil {
|
2021-11-04 18:12:57 +08:00
|
|
|
return nil, fmt.Errorf("get template open: %w", err)
|
2020-05-01 02:24:11 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
templateString = string(templateFile)
|
2018-12-23 08:16:50 +08:00
|
|
|
}
|
|
|
|
|
2020-05-08 23:15:21 +08:00
|
|
|
funcMap := template.FuncMap{
|
|
|
|
"afterEpoch": AfterEpoch,
|
|
|
|
}
|
|
|
|
tpl, err = template.New("index").Funcs(funcMap).Parse(templateString)
|
2018-12-23 08:16:50 +08:00
|
|
|
if err != nil {
|
2021-11-04 18:12:57 +08:00
|
|
|
return nil, fmt.Errorf("get template parse: %w", err)
|
2018-12-23 08:16:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|