2020-11-22 16:25:20 -05:00
|
|
|
package display
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"io/ioutil"
|
|
|
|
"mime"
|
|
|
|
"net/url"
|
|
|
|
"os"
|
|
|
|
"path/filepath"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/makeworld-the-better-one/amfora/renderer"
|
|
|
|
"github.com/makeworld-the-better-one/amfora/structs"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
|
|
|
// handleFile handles urls using file:// protocol
|
|
|
|
func handleFile(u string) (*structs.Page, bool) {
|
|
|
|
page := &structs.Page{}
|
|
|
|
|
|
|
|
uri, err := url.ParseRequestURI(u)
|
|
|
|
if err != nil {
|
|
|
|
Error("File Error", "Cannot parse URI: "+err.Error())
|
|
|
|
return page, false
|
|
|
|
}
|
|
|
|
fi, err := os.Stat(uri.Path)
|
|
|
|
if err != nil {
|
|
|
|
Error("File Error", "Cannot open local file: "+err.Error())
|
|
|
|
return page, false
|
|
|
|
}
|
|
|
|
|
|
|
|
switch mode := fi.Mode(); {
|
|
|
|
case mode.IsDir():
|
2020-12-20 16:58:29 -05:00
|
|
|
// Must end in slash
|
|
|
|
if u[len(u)-1] != '/' {
|
|
|
|
u += "/"
|
|
|
|
}
|
2020-11-22 16:25:20 -05:00
|
|
|
return createDirectoryListing(u)
|
|
|
|
case mode.IsRegular():
|
|
|
|
if fi.Size() > viper.GetInt64("a-general.page_max_size") {
|
|
|
|
Error("File Error", "Cannot open local file, exceeds page max size")
|
|
|
|
return page, false
|
|
|
|
}
|
|
|
|
|
|
|
|
mimetype := mime.TypeByExtension(filepath.Ext(uri.Path))
|
|
|
|
if strings.HasSuffix(u, ".gmi") || strings.HasSuffix(u, ".gemini") {
|
|
|
|
mimetype = "text/gemini"
|
|
|
|
}
|
|
|
|
|
|
|
|
if !strings.HasPrefix(mimetype, "text/") {
|
|
|
|
Error("File Error", "Cannot open file, not recognized as text.")
|
|
|
|
return page, false
|
|
|
|
}
|
|
|
|
|
|
|
|
content, err := ioutil.ReadFile(uri.Path)
|
|
|
|
if err != nil {
|
|
|
|
Error("File Error", "Cannot open local file: "+err.Error())
|
|
|
|
return page, false
|
|
|
|
}
|
|
|
|
|
|
|
|
if mimetype == "text/gemini" {
|
2021-02-27 18:17:49 -05:00
|
|
|
rendered, links, maxPreCols := renderer.RenderGemini(string(content), textWidth(), false)
|
2020-11-22 16:25:20 -05:00
|
|
|
page = &structs.Page{
|
2021-02-27 18:17:49 -05:00
|
|
|
Mediatype: structs.TextGemini,
|
|
|
|
URL: u,
|
|
|
|
Raw: string(content),
|
|
|
|
Content: rendered,
|
|
|
|
MaxPreCols: maxPreCols,
|
|
|
|
Links: links,
|
|
|
|
TermWidth: termW,
|
2020-11-22 16:25:20 -05:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
page = &structs.Page{
|
2021-02-27 18:17:49 -05:00
|
|
|
Mediatype: structs.TextPlain,
|
|
|
|
URL: u,
|
|
|
|
Raw: string(content),
|
|
|
|
Content: renderer.RenderPlainText(string(content)),
|
|
|
|
MaxPreCols: -1,
|
|
|
|
Links: []string{},
|
|
|
|
TermWidth: termW,
|
2020-11-22 16:25:20 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return page, true
|
|
|
|
}
|
|
|
|
|
|
|
|
// createDirectoryListing creates a text/gemini page for a directory
|
|
|
|
// that lists all the files as links.
|
|
|
|
func createDirectoryListing(u string) (*structs.Page, bool) {
|
|
|
|
page := &structs.Page{}
|
|
|
|
|
|
|
|
uri, err := url.ParseRequestURI(u)
|
|
|
|
if err != nil {
|
|
|
|
Error("Directory Error", "Cannot parse URI: "+err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
files, err := ioutil.ReadDir(uri.Path)
|
|
|
|
if err != nil {
|
|
|
|
Error("Directory error", "Cannot open local directory: "+err.Error())
|
|
|
|
return page, false
|
|
|
|
}
|
|
|
|
content := "Index of " + uri.Path + "\n"
|
|
|
|
content += "=> ../ ../\n"
|
|
|
|
for _, f := range files {
|
|
|
|
separator := ""
|
|
|
|
if f.IsDir() {
|
|
|
|
separator = "/"
|
|
|
|
}
|
|
|
|
content += fmt.Sprintf("=> %s%s %s%s\n", f.Name(), separator, f.Name(), separator)
|
|
|
|
}
|
|
|
|
|
2021-02-27 18:17:49 -05:00
|
|
|
rendered, links, maxPreCols := renderer.RenderGemini(content, textWidth(), false)
|
2020-11-22 16:25:20 -05:00
|
|
|
page = &structs.Page{
|
2021-02-27 18:17:49 -05:00
|
|
|
Mediatype: structs.TextGemini,
|
|
|
|
URL: u,
|
|
|
|
Raw: content,
|
|
|
|
Content: rendered,
|
|
|
|
MaxPreCols: maxPreCols,
|
|
|
|
Links: links,
|
|
|
|
TermWidth: termW,
|
2020-11-22 16:25:20 -05:00
|
|
|
}
|
|
|
|
return page, true
|
|
|
|
}
|