-
Notifications
You must be signed in to change notification settings - Fork 0
/
file.go
181 lines (168 loc) · 3.61 KB
/
file.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
package main
import (
"bufio"
"errors"
"fmt"
"io/fs"
"io/ioutil"
"os"
"path/filepath"
"strings"
"time"
)
func getTodayFilename() string {
today := time.Now()
return fmt.Sprintf("%04d%02d%02d%s",
today.Year(),
today.Month(),
today.Day(),
notesExtension)
}
func createNotesFile(path, name string) error {
filename := filepath.Join(path, getTodayFilename())
f, err := os.Open(filename)
defer f.Close()
if errors.Is(err, os.ErrNotExist) {
notesHeader, err := getNotesHeader(path)
if err != nil {
return err
}
notesFooter, err := getCarryoverNotes(path)
if err != nil {
return err
}
notes := string(notesHeader) + "\n\n\n\n\n" + notesFooter
os.WriteFile(filename, []byte(notes), 0o766)
} else if err != nil {
return err
}
return nil
}
func getCarryoverNotes(path string) (string, error) {
names, err := getLastNFilenames(path, 1)
if err != nil {
return "", err
}
f, err := os.Open(names[0])
if err != nil {
return "", err
}
defer f.Close()
scanner := bufio.NewScanner(f)
carryover := ""
start := false
for scanner.Scan() {
line := scanner.Text()
if strings.Contains(line, "#### ‽‽‽‽") {
start = true
}
if !start {
continue
}
if strings.HasPrefix(line, "- [x] ") {
continue
}
if strings.HasPrefix(line, "- [-] ") {
continue
}
carryover += line + "\n"
}
return carryover, nil
}
// TODO remove
func getLastFilename(path string) (string, error) {
files, err := ioutil.ReadDir(path)
if err != nil {
return "", err
}
lastFile := files[len(files)-1].Name()
if lastFile == getTodayFilename() {
lastFile = files[len(files)-2].Name()
}
return lastFile, nil
}
// TODO move this to parser
func getLastTaskList(path string) (string, error) {
names, err := getLastNFilenames(path, 2)
if err != nil {
return "", err
}
f, err := os.Open(names[1])
if err != nil {
return "", err
}
defer f.Close()
scanner := bufio.NewScanner(f)
taskList := ""
for scanner.Scan() {
line := scanner.Text()
if strings.Contains(line, "- [ ]") {
taskList = taskList + "\n" + line
}
if strings.HasPrefix(line, "##") {
return taskList, nil
}
}
return "", nil
}
func getLastNFiles(path string, n int) ([]fs.FileInfo, error) {
files, err := ioutil.ReadDir(path)
if err != nil {
return nil, err
}
// TODO bug, this is backwards
if len(files) <= n {
return files, nil
}
var lastNFiles []fs.FileInfo
for i := 1; i <= n; i++ {
lastNFiles = append(lastNFiles, files[len(files)-i])
}
return lastNFiles, nil
}
func getLastNFilenames(path string, n int) ([]string, error) {
var filenames []string
files, err := getLastNFiles(path, n)
if err != nil {
return nil, err
}
for _, file := range files {
filenames = append(filenames, filepath.Join(path, file.Name()))
}
return filenames, nil
}
// TODO is this defunct?
func getLastNotes(path, term string) (string, error) {
files, err := getLastNFiles(path, 5)
if err != nil {
return "", err
}
notes := ""
for i := 2; i < len(files); i++ {
file := files[len(files)-i]
f, err := os.Open(filepath.Join(path, file.Name()))
if err != nil {
return "", err
}
defer f.Close()
scanner := bufio.NewScanner(f)
collectNotes := false
for scanner.Scan() {
line := scanner.Text()
// this weird backwards shit is because we have
// to first find the correct category line, then
// collect the notes until the next category line
if collectNotes {
if strings.HasPrefix(line, "## ") {
collectNotes = false
continue
}
notes += line + "\n"
}
if strings.HasPrefix(line, "## ") && strings.Contains(line, term) {
collectNotes = true
}
}
}
return notes, nil
}