2017-03-22 05:46:05 +03:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"io/ioutil"
|
|
|
|
"os"
|
|
|
|
"path"
|
2017-03-22 19:59:48 +03:00
|
|
|
"regexp"
|
|
|
|
"strings"
|
2017-03-22 05:46:05 +03:00
|
|
|
|
|
|
|
"github.com/schollz/versionedtext"
|
|
|
|
)
|
|
|
|
|
2017-03-22 19:59:48 +03:00
|
|
|
// Page is the basic struct
|
2017-03-22 05:46:05 +03:00
|
|
|
type Page struct {
|
|
|
|
Name string
|
|
|
|
Text versionedtext.VersionedText
|
|
|
|
RenderedPage string
|
|
|
|
IsLocked bool
|
|
|
|
PassphraseToUnlock string
|
|
|
|
IsEncrypted bool
|
|
|
|
IsPrimedForSelfDestruct bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func Open(name string) (p *Page) {
|
2017-03-22 22:31:33 +03:00
|
|
|
name = strings.ToLower(name) // no case
|
2017-03-22 05:46:05 +03:00
|
|
|
p = new(Page)
|
|
|
|
p.Name = name
|
|
|
|
p.Text = versionedtext.NewVersionedText("")
|
|
|
|
p.Render()
|
|
|
|
bJSON, err := ioutil.ReadFile(path.Join(pathToData, encodeToBase32(name)+".json"))
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
err = json.Unmarshal(bJSON, &p)
|
|
|
|
if err != nil {
|
|
|
|
p = new(Page)
|
|
|
|
}
|
|
|
|
return p
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Page) Update(newText string) error {
|
|
|
|
p.Text.Update(newText)
|
|
|
|
p.Render()
|
|
|
|
return p.Save()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Page) Render() {
|
|
|
|
if p.IsEncrypted {
|
|
|
|
p.RenderedPage = "<code>" + p.Text.GetCurrent() + "</code>"
|
|
|
|
return
|
|
|
|
}
|
2017-03-22 19:59:48 +03:00
|
|
|
|
|
|
|
// Convert [[page]] to [page](/page/view)
|
|
|
|
r, _ := regexp.Compile("\\[\\[(.*?)\\]\\]")
|
|
|
|
currentText := p.Text.GetCurrent()
|
|
|
|
for _, s := range r.FindAllString(currentText, -1) {
|
|
|
|
currentText = strings.Replace(currentText, s, "["+s[2:len(s)-2]+"](/"+s[2:len(s)-2]+"/view)", 1)
|
|
|
|
}
|
|
|
|
p.Text.Update(currentText)
|
2017-03-22 05:46:05 +03:00
|
|
|
p.RenderedPage = MarkdownToHtml(p.Text.GetCurrent())
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Page) Save() error {
|
|
|
|
bJSON, err := json.MarshalIndent(p, "", " ")
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return ioutil.WriteFile(path.Join(pathToData, encodeToBase32(p.Name)+".json"), bJSON, 0755)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *Page) Erase() error {
|
|
|
|
return os.Remove(path.Join(pathToData, encodeToBase32(p.Name)+".json"))
|
|
|
|
}
|