2022-08-07 05:47:15 +00:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2022-08-20 20:46:31 +00:00
|
|
|
"errors"
|
|
|
|
"net/url"
|
2022-08-07 05:47:15 +00:00
|
|
|
"sort"
|
2022-08-20 20:46:31 +00:00
|
|
|
"strings"
|
2022-08-07 05:47:15 +00:00
|
|
|
)
|
|
|
|
|
2022-08-20 20:46:31 +00:00
|
|
|
func (file *TreeFile) CategoriesAsUrl() string {
|
|
|
|
escapedCategories := []string{}
|
|
|
|
for _, c := range file.Category {
|
|
|
|
escapedCategories = append(escapedCategories, url.QueryEscape(c))
|
|
|
|
}
|
|
|
|
|
|
|
|
return strings.Join(escapedCategories, "/")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (file *TreeFile) GmiName() string {
|
|
|
|
return strings.Replace(file.Name, ".md", ".gmi", 1)
|
|
|
|
}
|
|
|
|
|
2022-08-20 22:33:27 +00:00
|
|
|
func (file *TreeFile) CategoryPath() string {
|
|
|
|
return "/" + strings.Join(file.Category, "/")
|
|
|
|
}
|
|
|
|
|
2022-08-20 20:46:31 +00:00
|
|
|
func (tree *Tree) GetIndexFile() (*TreeFile, error) {
|
|
|
|
for _, file := range tree.RootFiles {
|
|
|
|
if file.Name == "index.md" {
|
|
|
|
return file, nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil, errors.New("index file not found")
|
|
|
|
}
|
|
|
|
|
2022-08-19 22:03:57 +00:00
|
|
|
func GetLastFiles(files []*TreeFile) []*TreeFile {
|
|
|
|
sortingFiles := make(map[string]*TreeFile)
|
2022-08-07 05:47:15 +00:00
|
|
|
for _, f := range files {
|
|
|
|
sortingFiles[f.Created+f.Id] = f
|
|
|
|
}
|
|
|
|
|
|
|
|
keys := make([]string, 0, len(sortingFiles))
|
|
|
|
for k := range sortingFiles {
|
|
|
|
keys = append(keys, k)
|
|
|
|
}
|
|
|
|
sort.Strings(keys)
|
|
|
|
sort.Reverse(sort.StringSlice(keys))
|
|
|
|
|
|
|
|
length := 10
|
|
|
|
if len(keys) < 10 {
|
|
|
|
length = len(keys)
|
|
|
|
}
|
2022-08-19 22:03:57 +00:00
|
|
|
lastFiles := make([]*TreeFile, 0, length)
|
2022-08-07 05:47:15 +00:00
|
|
|
for i, k := range keys {
|
|
|
|
if i == length {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
lastFiles = append(lastFiles, sortingFiles[k])
|
|
|
|
}
|
|
|
|
|
|
|
|
return lastFiles
|
|
|
|
}
|