mirror of
https://github.com/schollz/cowyo.git
synced 2023-08-10 21:13:00 +03:00
c04b4f2a68
Former-commit-id: 829790cd667b22fdebf335ed5eabfc2b8231d275 [formerly 56a83fa27db5527f6aecddd55d0e5a176fc90b01] [formerly e5d2c26518289f0dffedd16f4f9547e3da15a48f [formerly 9c57046a6f481c6addadc5ad3f8ccaad2ffa5ebf [formerly0228d53929
]]] Former-commit-id: 2c2961d3fd98262b58792638e964cd4ae5a1baa3 [formerly 45e0ca872d8731bc8ecad719bd725d7bfc2af4b6] Former-commit-id: add863c06877ae869be205ca4409c4ec5be8f467 Former-commit-id:76fcf04f45
212 lines
4.7 KiB
Go
212 lines
4.7 KiB
Go
package main
|
|
|
|
import (
|
|
"encoding/json"
|
|
"fmt"
|
|
"log"
|
|
"strings"
|
|
"time"
|
|
|
|
"github.com/boltdb/bolt"
|
|
"github.com/sergi/go-diff/diffmatchpatch"
|
|
)
|
|
|
|
var db *bolt.DB
|
|
var open bool
|
|
|
|
// Open to create the database and open
|
|
func Open(filename string) error {
|
|
var err error
|
|
config := &bolt.Options{Timeout: 30 * time.Second}
|
|
db, err = bolt.Open(filename, 0600, config)
|
|
if err != nil {
|
|
fmt.Println("Opening BoltDB timed out")
|
|
log.Fatal(err)
|
|
}
|
|
open = true
|
|
return nil
|
|
}
|
|
|
|
// Close database
|
|
func Close() {
|
|
open = false
|
|
db.Close()
|
|
}
|
|
|
|
// WikiData is data for storing in DB
|
|
type WikiData struct {
|
|
Title string
|
|
CurrentText string
|
|
Diffs []string
|
|
Timestamps []string
|
|
}
|
|
|
|
func hasPassword(title string) (bool, error) {
|
|
title = strings.ToLower(title)
|
|
if !open {
|
|
return false, fmt.Errorf("db must be opened before loading")
|
|
}
|
|
hasPassword := false
|
|
err := db.View(func(tx *bolt.Tx) error {
|
|
var err error
|
|
b := tx.Bucket([]byte("datas"))
|
|
if b == nil {
|
|
return fmt.Errorf("db must be opened before loading")
|
|
}
|
|
k := []byte(title)
|
|
val := b.Get(k)
|
|
if val == nil {
|
|
return nil
|
|
}
|
|
var p WikiData
|
|
err = p.decode(val)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
for _, line := range strings.Split(p.CurrentText, "\n") {
|
|
if strings.Contains(line, "<") == true && strings.Contains(line, ">") == true && strings.Contains(line, "user") == true && strings.Contains(line, "password") == true && strings.Contains(line, "public") == true {
|
|
hasPassword = true
|
|
}
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
fmt.Printf("Could not get WikiData: %s", err)
|
|
return false, err
|
|
}
|
|
return hasPassword, nil
|
|
}
|
|
|
|
func getCurrentText(title string, version int) (string, []versionsInfo, bool, time.Duration) {
|
|
title = strings.ToLower(title)
|
|
var vi []versionsInfo
|
|
totalTime := time.Now().Sub(time.Now())
|
|
isCurrent := true
|
|
currentText := ""
|
|
if !open {
|
|
return currentText, vi, isCurrent, totalTime
|
|
}
|
|
err := db.View(func(tx *bolt.Tx) error {
|
|
var err error
|
|
b := tx.Bucket([]byte("datas"))
|
|
if b == nil {
|
|
return fmt.Errorf("db must be opened before loading")
|
|
}
|
|
k := []byte(title)
|
|
val := b.Get(k)
|
|
if val == nil {
|
|
return nil
|
|
}
|
|
var p WikiData
|
|
err = p.decode(val)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
currentText = p.CurrentText
|
|
if version > -1 && version < len(p.Diffs) {
|
|
// get that version of text instead
|
|
currentText = rebuildTextsToDiffN(p, version)
|
|
isCurrent = false
|
|
}
|
|
vi, totalTime = getImportantVersions(p)
|
|
log.Println(totalTime)
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
fmt.Printf("Could not get WikiData: %s", err)
|
|
}
|
|
return currentText, vi, isCurrent, totalTime
|
|
}
|
|
|
|
func (p *WikiData) load(title string) error {
|
|
title = strings.ToLower(title)
|
|
if !open {
|
|
return fmt.Errorf("db must be opened before loading!")
|
|
}
|
|
err := db.View(func(tx *bolt.Tx) error {
|
|
var err error
|
|
b := tx.Bucket([]byte("datas"))
|
|
if b == nil {
|
|
return nil
|
|
}
|
|
k := []byte(title)
|
|
val := b.Get(k)
|
|
if val == nil {
|
|
// make new one
|
|
p.Title = title
|
|
p.CurrentText = ""
|
|
p.Diffs = []string{}
|
|
p.Timestamps = []string{}
|
|
return nil
|
|
}
|
|
err = p.decode(val)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
})
|
|
if err != nil {
|
|
fmt.Printf("Could not get WikiData: %s", err)
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (p *WikiData) save(newText string) error {
|
|
if !open {
|
|
return fmt.Errorf("db must be opened before saving")
|
|
}
|
|
err := db.Update(func(tx *bolt.Tx) error {
|
|
bucket, err := tx.CreateBucketIfNotExists([]byte("datas"))
|
|
if err != nil {
|
|
return fmt.Errorf("create bucket: %s", err)
|
|
}
|
|
// find diffs
|
|
dmp := diffmatchpatch.New()
|
|
diffs := dmp.DiffMain(p.CurrentText, newText, true)
|
|
delta := dmp.DiffToDelta(diffs)
|
|
p.CurrentText = newText
|
|
p.Timestamps = append(p.Timestamps, time.Now().Format(time.ANSIC))
|
|
p.Diffs = append(p.Diffs, delta)
|
|
enc, err := p.encode()
|
|
if err != nil {
|
|
return fmt.Errorf("could not encode WikiData: %s", err)
|
|
}
|
|
p.Title = strings.ToLower(p.Title)
|
|
err = bucket.Put([]byte(p.Title), enc)
|
|
if err != nil {
|
|
return fmt.Errorf("could add to bucket: %s", err)
|
|
}
|
|
return err
|
|
})
|
|
// // Add the new name to the programdata so its not randomly generated
|
|
// if err == nil && len(p.Timestamps) > 0 && len(p.CurrentText) > 0 {
|
|
// err2 := db.Update(func(tx *bolt.Tx) error {
|
|
// b := tx.Bucket([]byte("programdata"))
|
|
// id, _ := b.NextSequence()
|
|
// idInt := int(id)
|
|
// return b.Put(itob(idInt), []byte(p.Title))
|
|
// })
|
|
// if err2 != nil {
|
|
// return fmt.Errorf("could not add to programdata: %s", err)
|
|
// }
|
|
// }
|
|
return err
|
|
}
|
|
|
|
func (p *WikiData) encode() ([]byte, error) {
|
|
enc, err := json.Marshal(p)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return enc, nil
|
|
}
|
|
|
|
func (p *WikiData) decode(data []byte) error {
|
|
err := json.Unmarshal(data, &p)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|