mirror of
https://github.com/osmarks/mycorrhiza.git
synced 2024-12-12 05:20:26 +00:00
53 lines
1.0 KiB
Go
53 lines
1.0 KiB
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"strconv"
|
|
)
|
|
|
|
type Hypha struct {
|
|
FullName string
|
|
Path string
|
|
ViewCount int `json:"views"`
|
|
Deleted bool `json:"deleted"`
|
|
Revisions map[string]*Revision `json:"revisions"`
|
|
ChildrenNames []string
|
|
parentName string
|
|
}
|
|
|
|
func (h *Hypha) AddChild(childName string) {
|
|
h.ChildrenNames = append(h.ChildrenNames, childName)
|
|
}
|
|
|
|
// Used with action=zen|view
|
|
func (h *Hypha) AsHtml(hyphae map[string]*Hypha, rev string) (string, error) {
|
|
if "0" == rev {
|
|
rev = h.NewestRevision()
|
|
}
|
|
r, ok := h.Revisions[rev]
|
|
if !ok {
|
|
return "", fmt.Errorf("Hypha %v has no such revision: %v", h.FullName, rev)
|
|
}
|
|
html, err := r.AsHtml(hyphae)
|
|
return html, err
|
|
}
|
|
|
|
func (h *Hypha) Name() string {
|
|
return h.FullName
|
|
}
|
|
|
|
func (h *Hypha) NewestRevision() string {
|
|
var largest int
|
|
for k, _ := range h.Revisions {
|
|
rev, _ := strconv.Atoi(k)
|
|
if rev > largest {
|
|
largest = rev
|
|
}
|
|
}
|
|
return strconv.Itoa(largest)
|
|
}
|
|
|
|
func (h *Hypha) ParentName() string {
|
|
return h.parentName
|
|
}
|