-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
56 lines (44 loc) · 930 Bytes
/
main.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
package main
import (
"bufio"
"fmt"
"os"
"text/template"
"github.com/fjukstad/scratch"
)
func main() {
projects, err := GetProjects("ids")
if err != nil {
fmt.Println(err)
return
}
f, err := os.OpenFile("index.html", os.O_WRONLY|os.O_CREATE, 0600)
if err != nil {
panic(err)
}
t, err := template.ParseFiles("index.template")
t.Execute(f, projects)
fmt.Println("index.html written succesfully")
}
func GetProjects(filename string) ([]*scratch.Project, error) {
file, err := os.Open(filename)
if err != nil {
return nil, err
}
defer file.Close()
projects := []*scratch.Project{}
scanner := bufio.NewScanner(file)
for scanner.Scan() {
id := scanner.Text()
p, err := scratch.GetProject(id)
if err != nil {
fmt.Println("Could not get project ", id)
continue
}
projects = append(projects, p)
}
if err := scanner.Err(); err != nil {
return nil, err
}
return projects, nil
}