2022-12-11 05:52:47 +00:00
|
|
|
package routes
|
|
|
|
|
|
|
|
import (
|
2024-02-19 22:23:39 +00:00
|
|
|
"errors"
|
2022-12-26 06:20:08 +00:00
|
|
|
"fmt"
|
2022-12-11 15:47:04 +00:00
|
|
|
"html/template"
|
2022-12-11 05:52:47 +00:00
|
|
|
"log"
|
|
|
|
"net/http"
|
2022-12-12 16:03:09 +00:00
|
|
|
"os"
|
2022-12-11 05:52:47 +00:00
|
|
|
"path/filepath"
|
2022-12-18 05:49:14 +00:00
|
|
|
"sort"
|
2024-02-19 22:23:39 +00:00
|
|
|
"strings"
|
2022-12-18 05:49:14 +00:00
|
|
|
"time"
|
2022-12-11 05:52:47 +00:00
|
|
|
|
2022-12-19 03:32:23 +00:00
|
|
|
"git.icyphox.sh/legit/config"
|
|
|
|
"git.icyphox.sh/legit/git"
|
2022-12-11 05:52:47 +00:00
|
|
|
"github.com/alexedwards/flow"
|
2022-12-14 12:08:48 +00:00
|
|
|
"github.com/dustin/go-humanize"
|
2024-02-19 22:23:39 +00:00
|
|
|
gogit "github.com/go-git/go-git/v5"
|
2022-12-26 06:20:08 +00:00
|
|
|
"github.com/microcosm-cc/bluemonday"
|
|
|
|
"github.com/russross/blackfriday/v2"
|
2022-12-11 05:52:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type deps struct {
|
|
|
|
c *config.Config
|
|
|
|
}
|
|
|
|
|
2024-02-19 22:23:39 +00:00
|
|
|
type info struct {
|
|
|
|
Name, Path, Desc, Idle string
|
|
|
|
d time.Time
|
|
|
|
}
|
|
|
|
|
2022-12-12 15:23:58 +00:00
|
|
|
func (d *deps) Index(w http.ResponseWriter, r *http.Request) {
|
2022-12-13 04:28:40 +00:00
|
|
|
dirs, err := os.ReadDir(d.c.Repo.ScanPath)
|
2022-12-12 16:03:09 +00:00
|
|
|
if err != nil {
|
|
|
|
d.Write500(w)
|
|
|
|
log.Printf("reading scan path: %s", err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2024-02-19 22:23:39 +00:00
|
|
|
categories := make(map[string][]info)
|
2022-12-12 16:03:09 +00:00
|
|
|
|
|
|
|
for _, dir := range dirs {
|
2022-12-22 15:43:49 +00:00
|
|
|
if d.isIgnored(dir.Name()) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2022-12-13 04:28:40 +00:00
|
|
|
path := filepath.Join(d.c.Repo.ScanPath, dir.Name())
|
2022-12-12 16:03:09 +00:00
|
|
|
gr, err := git.Open(path, "")
|
2024-02-19 22:23:39 +00:00
|
|
|
if errors.Is(err, gogit.ErrRepositoryNotExists) {
|
|
|
|
log.Printf("reading category: %s", dir.Name())
|
|
|
|
infos, err := d.IndexCategory(path, dir.Name())
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("reading category: %s", err)
|
|
|
|
}
|
|
|
|
if len(infos) > 0 {
|
|
|
|
categories[dir.Name()] = infos
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
} else if err != nil {
|
2023-11-05 08:03:43 +00:00
|
|
|
log.Println(err)
|
2022-12-18 06:13:50 +00:00
|
|
|
continue
|
2022-12-12 16:03:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
c, err := gr.LastCommit()
|
|
|
|
if err != nil {
|
|
|
|
d.Write500(w)
|
|
|
|
log.Println(err)
|
2022-12-17 07:15:21 +00:00
|
|
|
return
|
2022-12-12 16:03:09 +00:00
|
|
|
}
|
|
|
|
|
2022-12-17 16:03:04 +00:00
|
|
|
desc := getDescription(path)
|
2024-02-19 22:23:39 +00:00
|
|
|
name := strings.TrimSuffix(dir.Name(), ".git")
|
2022-12-14 12:08:48 +00:00
|
|
|
|
2024-02-19 22:23:39 +00:00
|
|
|
categories[""] = append(categories[""], info{
|
|
|
|
Name: name,
|
|
|
|
Path: name,
|
2022-12-14 12:08:48 +00:00
|
|
|
Desc: desc,
|
|
|
|
Idle: humanize.Time(c.Author.When),
|
2022-12-18 05:49:14 +00:00
|
|
|
d: c.Author.When,
|
2022-12-14 12:08:48 +00:00
|
|
|
})
|
2022-12-12 16:03:09 +00:00
|
|
|
}
|
|
|
|
|
2024-02-19 22:23:39 +00:00
|
|
|
for _, infos := range categories {
|
|
|
|
sort.Slice(infos, func(i, j int) bool {
|
|
|
|
return infos[j].d.Before(infos[i].d)
|
|
|
|
})
|
|
|
|
}
|
2022-12-18 05:49:14 +00:00
|
|
|
|
2022-12-17 07:15:21 +00:00
|
|
|
tpath := filepath.Join(d.c.Dirs.Templates, "*")
|
2022-12-12 16:03:09 +00:00
|
|
|
t := template.Must(template.ParseGlob(tpath))
|
|
|
|
|
|
|
|
data := make(map[string]interface{})
|
|
|
|
data["meta"] = d.c.Meta
|
2024-02-19 22:23:39 +00:00
|
|
|
data["categories"] = categories
|
2022-12-12 15:23:58 +00:00
|
|
|
|
2022-12-12 16:03:09 +00:00
|
|
|
if err := t.ExecuteTemplate(w, "index", data); err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
2022-12-12 15:23:58 +00:00
|
|
|
}
|
|
|
|
|
2024-02-19 22:23:39 +00:00
|
|
|
func (d *deps) IndexCategory(scanpath string, category string) ([]info, error) {
|
|
|
|
dirs, err := os.ReadDir(scanpath)
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("reading scan path: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
infos := []info{}
|
|
|
|
|
|
|
|
for _, dir := range dirs {
|
|
|
|
if d.isIgnored(dir.Name()) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
path := filepath.Join(scanpath, dir.Name())
|
|
|
|
gr, err := git.Open(path, "")
|
|
|
|
if errors.Is(err, gogit.ErrRepositoryNotExists) {
|
|
|
|
log.Println(path)
|
|
|
|
folder_infos, err := d.IndexCategory(path, category)
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
infos = append(infos, folder_infos...)
|
|
|
|
continue
|
|
|
|
} else if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
c, err := gr.LastCommit()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
desc := getDescription(path)
|
|
|
|
repodir := filepath.Join(scanpath, dir.Name())
|
|
|
|
repopath := strings.Split(repodir, category)
|
|
|
|
name := strings.TrimSuffix(repopath[len(repopath)-1], ".git")
|
|
|
|
name = strings.TrimPrefix(name, "/")
|
|
|
|
|
|
|
|
infos = append(infos, info{
|
|
|
|
Name: name,
|
|
|
|
Path: category + "/" + name,
|
|
|
|
Desc: desc,
|
|
|
|
Idle: humanize.Time(c.Author.When),
|
|
|
|
d: c.Author.When,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return infos, nil
|
|
|
|
}
|
|
|
|
|
2022-12-11 06:59:50 +00:00
|
|
|
func (d *deps) RepoIndex(w http.ResponseWriter, r *http.Request) {
|
|
|
|
name := flow.Param(r.Context(), "name")
|
2022-12-22 15:43:49 +00:00
|
|
|
if d.isIgnored(name) {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-11 06:59:50 +00:00
|
|
|
name = filepath.Clean(name)
|
2024-02-19 23:49:34 +00:00
|
|
|
path := d.c.Repo.ScanPath
|
|
|
|
category := flow.Param(r.Context(), "category")
|
|
|
|
if category != "" {
|
|
|
|
path = filepath.Join(path, category)
|
|
|
|
log.Println(category)
|
|
|
|
}
|
|
|
|
path = filepath.Join(path, name)
|
|
|
|
log.Println(path)
|
2022-12-22 15:43:49 +00:00
|
|
|
|
2022-12-11 15:47:04 +00:00
|
|
|
gr, err := git.Open(path, "")
|
2022-12-11 06:59:50 +00:00
|
|
|
if err != nil {
|
2024-02-19 23:49:34 +00:00
|
|
|
gr, err = git.Open(path+".git", "")
|
|
|
|
if err != nil {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-11 06:59:50 +00:00
|
|
|
}
|
|
|
|
|
2022-12-17 16:03:04 +00:00
|
|
|
commits, err := gr.Commits()
|
2022-12-11 06:59:50 +00:00
|
|
|
if err != nil {
|
2022-12-12 15:23:58 +00:00
|
|
|
d.Write500(w)
|
2022-12-11 06:59:50 +00:00
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-12-26 06:20:08 +00:00
|
|
|
var readmeContent template.HTML
|
2022-12-13 04:28:40 +00:00
|
|
|
for _, readme := range d.c.Repo.Readme {
|
2022-12-26 06:20:08 +00:00
|
|
|
ext := filepath.Ext(readme)
|
|
|
|
content, _ := gr.FileContent(readme)
|
|
|
|
if len(content) > 0 {
|
|
|
|
switch ext {
|
2022-12-26 06:34:09 +00:00
|
|
|
case ".md", ".mkd", ".markdown":
|
|
|
|
unsafe := blackfriday.Run(
|
|
|
|
[]byte(content),
|
|
|
|
blackfriday.WithExtensions(blackfriday.CommonExtensions),
|
|
|
|
)
|
2022-12-26 06:20:08 +00:00
|
|
|
html := bluemonday.UGCPolicy().SanitizeBytes(unsafe)
|
|
|
|
readmeContent = template.HTML(html)
|
|
|
|
default:
|
|
|
|
readmeContent = template.HTML(
|
|
|
|
fmt.Sprintf(`<pre>%s</pre>`, content),
|
|
|
|
)
|
|
|
|
}
|
2022-12-12 15:23:58 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if readmeContent == "" {
|
|
|
|
log.Printf("no readme found for %s", name)
|
|
|
|
}
|
|
|
|
|
2022-12-13 04:28:40 +00:00
|
|
|
mainBranch, err := gr.FindMainBranch(d.c.Repo.MainBranch)
|
|
|
|
if err != nil {
|
|
|
|
d.Write500(w)
|
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-12-17 16:03:04 +00:00
|
|
|
tpath := filepath.Join(d.c.Dirs.Templates, "*")
|
|
|
|
t := template.Must(template.ParseGlob(tpath))
|
|
|
|
|
2022-12-18 05:12:29 +00:00
|
|
|
if len(commits) >= 3 {
|
|
|
|
commits = commits[:3]
|
2022-12-17 16:03:04 +00:00
|
|
|
}
|
|
|
|
|
2022-12-11 15:47:04 +00:00
|
|
|
data := make(map[string]any)
|
|
|
|
data["name"] = name
|
2024-02-20 00:24:38 +00:00
|
|
|
if category != "" {
|
|
|
|
data["repo"] = filepath.Join(category, name)
|
|
|
|
} else {
|
|
|
|
data["repo"] = name
|
|
|
|
}
|
2022-12-13 04:28:40 +00:00
|
|
|
data["ref"] = mainBranch
|
2022-12-12 15:23:58 +00:00
|
|
|
data["readme"] = readmeContent
|
2022-12-17 16:03:04 +00:00
|
|
|
data["commits"] = commits
|
|
|
|
data["desc"] = getDescription(path)
|
2022-12-19 03:32:23 +00:00
|
|
|
data["servername"] = d.c.Server.Name
|
2023-11-05 08:27:04 +00:00
|
|
|
data["meta"] = d.c.Meta
|
2023-02-01 04:30:40 +00:00
|
|
|
data["gomod"] = isGoModule(gr)
|
2022-12-17 16:03:04 +00:00
|
|
|
|
|
|
|
if err := t.ExecuteTemplate(w, "repo", data); err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
2022-12-11 06:59:50 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-12-11 08:48:39 +00:00
|
|
|
func (d *deps) RepoTree(w http.ResponseWriter, r *http.Request) {
|
2022-12-11 05:52:47 +00:00
|
|
|
name := flow.Param(r.Context(), "name")
|
2022-12-22 15:43:49 +00:00
|
|
|
if d.isIgnored(name) {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-11 05:52:47 +00:00
|
|
|
treePath := flow.Param(r.Context(), "...")
|
2022-12-11 06:59:50 +00:00
|
|
|
ref := flow.Param(r.Context(), "ref")
|
2022-12-11 05:52:47 +00:00
|
|
|
|
|
|
|
name = filepath.Clean(name)
|
2024-02-19 23:49:34 +00:00
|
|
|
path := d.c.Repo.ScanPath
|
|
|
|
category := flow.Param(r.Context(), "category")
|
|
|
|
if category != "" {
|
|
|
|
path = filepath.Join(path, category)
|
|
|
|
}
|
|
|
|
path = filepath.Join(path, name)
|
2022-12-11 15:47:04 +00:00
|
|
|
gr, err := git.Open(path, ref)
|
2022-12-11 05:52:47 +00:00
|
|
|
if err != nil {
|
2024-02-19 23:49:34 +00:00
|
|
|
gr, err = git.Open(path+".git", ref)
|
|
|
|
if err != nil {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-11 05:52:47 +00:00
|
|
|
}
|
|
|
|
|
2022-12-11 15:47:04 +00:00
|
|
|
files, err := gr.FileTree(treePath)
|
2022-12-11 06:59:50 +00:00
|
|
|
if err != nil {
|
2022-12-12 15:23:58 +00:00
|
|
|
d.Write500(w)
|
2022-12-11 06:59:50 +00:00
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-12-11 15:47:04 +00:00
|
|
|
data := make(map[string]any)
|
|
|
|
data["name"] = name
|
2024-02-20 00:24:38 +00:00
|
|
|
if category != "" {
|
|
|
|
data["repo"] = filepath.Join(category, name)
|
|
|
|
} else {
|
|
|
|
data["repo"] = name
|
|
|
|
}
|
2022-12-11 15:47:04 +00:00
|
|
|
data["ref"] = ref
|
|
|
|
data["parent"] = treePath
|
2022-12-18 05:12:29 +00:00
|
|
|
data["desc"] = getDescription(path)
|
2023-02-18 08:46:43 +00:00
|
|
|
data["dotdot"] = filepath.Dir(treePath)
|
2022-12-11 05:52:47 +00:00
|
|
|
|
2022-12-11 15:47:04 +00:00
|
|
|
d.listFiles(files, data, w)
|
2022-12-11 06:59:50 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-12-11 08:48:39 +00:00
|
|
|
func (d *deps) FileContent(w http.ResponseWriter, r *http.Request) {
|
|
|
|
name := flow.Param(r.Context(), "name")
|
2022-12-22 15:43:49 +00:00
|
|
|
if d.isIgnored(name) {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-11 08:48:39 +00:00
|
|
|
treePath := flow.Param(r.Context(), "...")
|
|
|
|
ref := flow.Param(r.Context(), "ref")
|
2022-12-11 05:52:47 +00:00
|
|
|
|
2022-12-11 08:48:39 +00:00
|
|
|
name = filepath.Clean(name)
|
2024-02-19 23:49:34 +00:00
|
|
|
path := d.c.Repo.ScanPath
|
|
|
|
category := flow.Param(r.Context(), "category")
|
|
|
|
if category != "" {
|
|
|
|
path = filepath.Join(path, category)
|
|
|
|
}
|
|
|
|
path = filepath.Join(path, name)
|
2022-12-11 15:47:04 +00:00
|
|
|
gr, err := git.Open(path, ref)
|
2022-12-11 08:48:39 +00:00
|
|
|
if err != nil {
|
2024-02-19 23:49:34 +00:00
|
|
|
gr, err = git.Open(path+".git", ref)
|
|
|
|
if err != nil {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-11 08:48:39 +00:00
|
|
|
}
|
2022-12-11 05:52:47 +00:00
|
|
|
|
2022-12-11 15:47:04 +00:00
|
|
|
contents, err := gr.FileContent(treePath)
|
|
|
|
data := make(map[string]any)
|
|
|
|
data["name"] = name
|
2024-02-20 00:24:38 +00:00
|
|
|
if category != "" {
|
|
|
|
data["repo"] = filepath.Join(category, name)
|
|
|
|
} else {
|
|
|
|
data["repo"] = name
|
|
|
|
}
|
2022-12-11 15:47:04 +00:00
|
|
|
data["ref"] = ref
|
2022-12-18 05:12:29 +00:00
|
|
|
data["desc"] = getDescription(path)
|
2022-12-18 05:44:38 +00:00
|
|
|
data["path"] = treePath
|
2022-12-11 15:47:04 +00:00
|
|
|
|
|
|
|
d.showFile(contents, data, w)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func (d *deps) Log(w http.ResponseWriter, r *http.Request) {
|
|
|
|
name := flow.Param(r.Context(), "name")
|
2022-12-22 15:43:49 +00:00
|
|
|
if d.isIgnored(name) {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-11 15:47:04 +00:00
|
|
|
ref := flow.Param(r.Context(), "ref")
|
|
|
|
|
2024-02-19 23:49:34 +00:00
|
|
|
path := d.c.Repo.ScanPath
|
|
|
|
category := flow.Param(r.Context(), "category")
|
|
|
|
if category != "" {
|
|
|
|
path = filepath.Join(path, category)
|
|
|
|
}
|
|
|
|
path = filepath.Join(path, name)
|
2022-12-11 15:47:04 +00:00
|
|
|
gr, err := git.Open(path, ref)
|
|
|
|
if err != nil {
|
2024-02-19 23:49:34 +00:00
|
|
|
gr, err = git.Open(path+".git", ref)
|
|
|
|
if err != nil {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-11 15:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
commits, err := gr.Commits()
|
2022-12-11 08:48:39 +00:00
|
|
|
if err != nil {
|
2022-12-12 15:23:58 +00:00
|
|
|
d.Write500(w)
|
2022-12-11 05:52:47 +00:00
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
2022-12-11 08:48:39 +00:00
|
|
|
|
2022-12-17 07:15:21 +00:00
|
|
|
tpath := filepath.Join(d.c.Dirs.Templates, "*")
|
2022-12-11 15:47:04 +00:00
|
|
|
t := template.Must(template.ParseGlob(tpath))
|
|
|
|
|
|
|
|
data := make(map[string]interface{})
|
|
|
|
data["commits"] = commits
|
|
|
|
data["meta"] = d.c.Meta
|
|
|
|
data["name"] = name
|
2024-02-20 00:24:38 +00:00
|
|
|
if category != "" {
|
|
|
|
data["repo"] = filepath.Join(category, name)
|
|
|
|
} else {
|
|
|
|
data["repo"] = name
|
|
|
|
}
|
2022-12-11 15:47:04 +00:00
|
|
|
data["ref"] = ref
|
2022-12-18 05:12:29 +00:00
|
|
|
data["desc"] = getDescription(path)
|
2023-02-18 08:46:43 +00:00
|
|
|
data["log"] = true
|
2022-12-11 15:47:04 +00:00
|
|
|
|
|
|
|
if err := t.ExecuteTemplate(w, "log", data); err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
2022-12-11 05:52:47 +00:00
|
|
|
}
|
2022-12-12 11:47:49 +00:00
|
|
|
|
|
|
|
func (d *deps) Diff(w http.ResponseWriter, r *http.Request) {
|
|
|
|
name := flow.Param(r.Context(), "name")
|
2022-12-22 15:43:49 +00:00
|
|
|
if d.isIgnored(name) {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-12 11:47:49 +00:00
|
|
|
ref := flow.Param(r.Context(), "ref")
|
|
|
|
|
2024-02-19 23:49:34 +00:00
|
|
|
path := d.c.Repo.ScanPath
|
|
|
|
category := flow.Param(r.Context(), "category")
|
|
|
|
if category != "" {
|
|
|
|
path = filepath.Join(path, category)
|
|
|
|
}
|
|
|
|
path = filepath.Join(path, name)
|
2022-12-12 11:47:49 +00:00
|
|
|
gr, err := git.Open(path, ref)
|
|
|
|
if err != nil {
|
2024-02-19 23:49:34 +00:00
|
|
|
gr, err = git.Open(path+".git", ref)
|
|
|
|
if err != nil {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-12 11:47:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
diff, err := gr.Diff()
|
|
|
|
if err != nil {
|
2022-12-12 15:23:58 +00:00
|
|
|
d.Write500(w)
|
2022-12-12 11:47:49 +00:00
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-12-17 07:15:21 +00:00
|
|
|
tpath := filepath.Join(d.c.Dirs.Templates, "*")
|
2022-12-12 11:47:49 +00:00
|
|
|
t := template.Must(template.ParseGlob(tpath))
|
|
|
|
|
|
|
|
data := make(map[string]interface{})
|
|
|
|
|
|
|
|
data["commit"] = diff.Commit
|
|
|
|
data["stat"] = diff.Stat
|
|
|
|
data["diff"] = diff.Diff
|
|
|
|
data["meta"] = d.c.Meta
|
|
|
|
data["name"] = name
|
2024-02-20 00:24:38 +00:00
|
|
|
if category != "" {
|
|
|
|
data["repo"] = filepath.Join(category, name)
|
|
|
|
} else {
|
|
|
|
data["repo"] = name
|
|
|
|
}
|
2022-12-12 11:47:49 +00:00
|
|
|
data["ref"] = ref
|
2022-12-18 05:12:29 +00:00
|
|
|
data["desc"] = getDescription(path)
|
2022-12-12 11:47:49 +00:00
|
|
|
|
|
|
|
if err := t.ExecuteTemplate(w, "commit", data); err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2022-12-12 16:28:47 +00:00
|
|
|
|
|
|
|
func (d *deps) Refs(w http.ResponseWriter, r *http.Request) {
|
|
|
|
name := flow.Param(r.Context(), "name")
|
2022-12-22 15:43:49 +00:00
|
|
|
if d.isIgnored(name) {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-12 16:28:47 +00:00
|
|
|
|
2024-02-19 23:49:34 +00:00
|
|
|
path := d.c.Repo.ScanPath
|
|
|
|
category := flow.Param(r.Context(), "category")
|
|
|
|
if category != "" {
|
|
|
|
path = filepath.Join(path, category)
|
|
|
|
}
|
|
|
|
path = filepath.Join(path, name)
|
2022-12-12 16:28:47 +00:00
|
|
|
gr, err := git.Open(path, "")
|
|
|
|
if err != nil {
|
2024-02-19 23:49:34 +00:00
|
|
|
gr, err = git.Open(path+".git", "")
|
|
|
|
if err != nil {
|
|
|
|
d.Write404(w)
|
|
|
|
return
|
|
|
|
}
|
2022-12-12 16:28:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
tags, err := gr.Tags()
|
|
|
|
if err != nil {
|
|
|
|
// Non-fatal, we *should* have at least one branch to show.
|
|
|
|
log.Println(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
branches, err := gr.Branches()
|
|
|
|
if err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
d.Write500(w)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-12-17 07:15:21 +00:00
|
|
|
tpath := filepath.Join(d.c.Dirs.Templates, "*")
|
2022-12-12 16:28:47 +00:00
|
|
|
t := template.Must(template.ParseGlob(tpath))
|
|
|
|
|
|
|
|
data := make(map[string]interface{})
|
|
|
|
|
|
|
|
data["meta"] = d.c.Meta
|
|
|
|
data["name"] = name
|
2024-02-20 00:24:38 +00:00
|
|
|
if category != "" {
|
|
|
|
data["repo"] = filepath.Join(category, name)
|
|
|
|
} else {
|
|
|
|
data["repo"] = name
|
|
|
|
}
|
2022-12-12 16:28:47 +00:00
|
|
|
data["branches"] = branches
|
|
|
|
data["tags"] = tags
|
2022-12-18 05:12:29 +00:00
|
|
|
data["desc"] = getDescription(path)
|
2022-12-12 16:28:47 +00:00
|
|
|
|
|
|
|
if err := t.ExecuteTemplate(w, "refs", data); err != nil {
|
|
|
|
log.Println(err)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2022-12-17 07:15:21 +00:00
|
|
|
|
|
|
|
func (d *deps) ServeStatic(w http.ResponseWriter, r *http.Request) {
|
|
|
|
f := flow.Param(r.Context(), "file")
|
|
|
|
f = filepath.Clean(filepath.Join(d.c.Dirs.Static, f))
|
|
|
|
|
|
|
|
http.ServeFile(w, r, f)
|
|
|
|
}
|