arns-lt-gemini/formatter.go
Arnas Udovicius c946b9daba
All checks were successful
continuous-integration/drone/push Build is passing
all left pages
2022-08-21 01:34:22 +03:00

64 lines
1.2 KiB
Go

package main
import (
"errors"
"net/url"
"sort"
"strings"
)
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)
}
func (file *TreeFile) CategoryPath() string {
return "/" + strings.Join(file.Category, "/")
}
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")
}
func GetLastFiles(files []*TreeFile) []*TreeFile {
sortingFiles := make(map[string]*TreeFile)
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)
}
lastFiles := make([]*TreeFile, 0, length)
for i, k := range keys {
if i == length {
break
}
lastFiles = append(lastFiles, sortingFiles[k])
}
return lastFiles
}