-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathblackblog.go
187 lines (163 loc) · 4.18 KB
/
blackblog.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
182
183
184
185
186
187
//
// Blackblog
// Copyright 2012 Google Inc. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
package main
import (
"errors"
"flag"
"fmt"
"os"
"path"
"runtime"
"text/template"
"time"
)
var (
// Flags that allow overriding configuration defaults.
serverPort = flag.Int("port", 0, "Override the port on which the standalone HTTP server will run.")
outputDir = flag.String("output", "", "Override the output directory when rendering to static files.")
commandDocs = map[string]string{
cmdNewBlog: "Create a new blog with some sample data in the specified directory.",
cmdServer: "Run a standalone web server for the given blog.",
cmdStaticOutput: "Render the blog out to static HTML files.",
}
commandOrder = []string{
cmdNewBlog,
cmdServer,
cmdStaticOutput,
}
)
const (
cmdNewBlog = "newblog"
cmdServer = "serve"
cmdStaticOutput = "render"
)
func main() {
flag.Usage = usage
flag.Parse()
args := flag.Args()
if len(args) < 1 {
usage()
os.Exit(1)
}
// Load the blog configuration.
blogPath, _ := os.Getwd()
if len(args) >= 2 {
blogPath = args[1]
}
blog, err := ReadBlog(blogPath)
if err != nil && args[0] != cmdNewBlog {
fmt.Fprintln(os.Stderr, "Could not read blog configuration:", err)
os.Exit(2)
}
// Process flags to override configuration values.
if *serverPort != 0 {
blog.config.Port = *serverPort
}
if *outputDir != "" {
blog.config.OutputDir = *outputDir
}
// Execute the specified command.
switch args[0] {
case cmdNewBlog:
if len(args) < 2 {
fmt.Fprintln(os.Stderr, "Usage: blackblog newblog path/for/blog")
os.Exit(3)
}
if err := newBlog(args[1]); err != nil {
fmt.Fprintln(os.Stderr, "Error creating new blog:", err)
os.Exit(3)
}
case cmdServer:
if err := StartBlogServer(blog); err != nil {
fmt.Fprintln(os.Stderr, "Could not start blog server:", err)
os.Exit(3)
}
case cmdStaticOutput:
if err := WriteStaticBlog(blog); err != nil {
fmt.Fprintln(os.Stderr, err)
os.Exit(3)
}
}
}
func usage() {
fmt.Fprintf(os.Stderr, "Usage: %s command [path/to/blog]:\n\n", os.Args[0])
fmt.Fprintf(os.Stderr, " Commands:\n")
for _, cmdName := range commandOrder {
fmt.Fprintf(os.Stderr, " %s\t%s\n", cmdName, commandDocs[cmdName])
}
fmt.Fprintf(os.Stderr, "\n Flags:\n")
flag.PrintDefaults()
}
func newBlog(at string) error {
if err := os.Mkdir(at, 0755); err != nil {
return err
}
if err := os.Mkdir(path.Join(at, "posts"), 0755); err != nil {
return err
}
if err := os.Mkdir(path.Join(at, "out"), 0755); err != nil {
return err
}
_, thisFile, _, ok := runtime.Caller(0)
if !ok {
return errors.New("cannot find installation directory")
}
data := struct {
InstallDir string
Date time.Time
}{
InstallDir: path.Dir(thisFile),
Date: time.Now(),
}
config, err := template.New("config").Parse(defaultConfig)
if err != nil {
return err
}
post, err := template.New("post").Parse(defaultPost)
if err != nil {
return err
}
f, err := os.Create(path.Join(at, ConfigFileName))
if err == nil {
err = config.Execute(f, data)
}
f.Close()
if err != nil {
return err
}
f, err = os.Create(path.Join(at, "posts", "welcome.md"))
if err == nil {
err = post.Execute(f, data)
}
f.Close()
return err
}
var (
defaultConfig = `{
"Title": "A Black Blog",
"URL": "https://example.com/blog/",
"PostsDir": "./posts",
"TemplatesDir": "{{.InstallDir}}/templates",
"StaticFilesDir": "{{.InstallDir}}/templates/static",
"OutputDir": "./out",
"Port": 8066
}`
defaultPost = `~~ Title: Welcome to Blackblog
~~ Date: {{.Date.Format "January _2 2006"}}
~~ URL: welcome
This is the first and only post in your Blackblog. Feel free to delete it.`
)