Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Łukasz Nowak
caddy
Commits
ba613a15
Commit
ba613a15
authored
May 07, 2015
by
Abiola Ibrahim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
markdown: template integration done. awaiting documentation and test
parent
0bfdb50a
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
93 additions
and
10 deletions
+93
-10
config/setup/markdown.go
config/setup/markdown.go
+3
-1
middleware/markdown/markdown.go
middleware/markdown/markdown.go
+35
-3
middleware/markdown/process.go
middleware/markdown/process.go
+55
-6
No files found.
config/setup/markdown.go
View file @
ba613a15
...
...
@@ -2,11 +2,12 @@ package setup
import
(
"net/http"
"path"
"path/filepath"
"github.com/mholt/caddy/middleware"
"github.com/mholt/caddy/middleware/markdown"
"github.com/russross/blackfriday"
"path/filepath"
)
// Markdown configures a new Markdown middleware instance.
...
...
@@ -37,6 +38,7 @@ func markdownParse(c *Controller) ([]markdown.Config, error) {
Renderer
:
blackfriday
.
HtmlRenderer
(
0
,
""
,
""
),
Templates
:
make
(
map
[
string
]
string
),
StaticFiles
:
make
(
map
[
string
]
string
),
StaticDir
:
path
.
Join
(
c
.
Root
,
markdown
.
StaticDir
),
}
// Get the path scope
...
...
middleware/markdown/markdown.go
View file @
ba613a15
...
...
@@ -31,6 +31,16 @@ type Markdown struct {
IndexFiles
[]
string
}
// Helper function to check if a file is an index file
func
(
m
Markdown
)
IsIndexFile
(
file
string
)
bool
{
for
_
,
f
:=
range
m
.
IndexFiles
{
if
f
==
file
{
return
true
}
}
return
false
}
// Config stores markdown middleware configurations.
type
Config
struct
{
// Markdown renderer
...
...
@@ -53,6 +63,9 @@ type Config struct {
// Static files
StaticFiles
map
[
string
]
string
// Static files directory
StaticDir
string
}
// ServeHTTP implements the http.Handler interface.
...
...
@@ -77,18 +90,37 @@ func (md Markdown) ServeHTTP(w http.ResponseWriter, r *http.Request) (int, error
return
http
.
StatusNotFound
,
nil
}
fs
,
err
:=
f
.
Stat
()
if
err
!=
nil
{
return
http
.
StatusNotFound
,
nil
}
// if static site is generated, attempt to use it
if
filepath
,
ok
:=
m
.
StaticFiles
[
fpath
];
ok
{
if
fs1
,
err
:=
os
.
Stat
(
filepath
);
err
==
nil
{
// if markdown has not been modified
// since static page generation,
// serve the static page
if
fs
.
ModTime
()
.
UnixNano
()
<
fs1
.
ModTime
()
.
UnixNano
()
{
if
html
,
err
:=
ioutil
.
ReadFile
(
filepath
);
err
==
nil
{
w
.
Write
(
html
)
return
http
.
StatusOK
,
nil
}
}
}
}
body
,
err
:=
ioutil
.
ReadAll
(
f
)
if
err
!=
nil
{
return
http
.
StatusInternalServerError
,
err
}
html
,
err
:=
Process
(
md
,
fpath
,
body
)
html
,
err
:=
md
.
process
(
m
,
fpath
,
body
)
if
err
!=
nil
{
return
http
.
StatusInternalServerError
,
err
}
w
.
Write
([]
byte
(
html
))
w
.
Write
(
html
)
return
http
.
StatusOK
,
nil
}
}
...
...
middleware/markdown/process.go
View file @
ba613a15
...
...
@@ -9,12 +9,19 @@ import (
"text/template"
"github.com/russross/blackfriday"
"log"
"os"
"strings"
)
// Process the contents of a page.
const
(
DefaultTemplate
=
"defaultTemplate"
StaticDir
=
".caddy_static"
)
// process the contents of a page.
// It parses the metadata if any and uses the template if found
func
P
rocess
(
c
Config
,
fpath
string
,
b
[]
byte
)
([]
byte
,
error
)
{
func
(
md
Markdown
)
p
rocess
(
c
Config
,
fpath
string
,
b
[]
byte
)
([]
byte
,
error
)
{
metadata
,
markdown
,
err
:=
extractMetadata
(
b
)
if
err
!=
nil
{
return
nil
,
err
...
...
@@ -42,7 +49,7 @@ func Process(c Config, fpath string, b []byte) ([]byte, error) {
// set it as body for template
metadata
.
Variables
[
"body"
]
=
string
(
markdown
)
return
processTemplate
(
c
,
fpath
,
tmpl
,
metadata
)
return
md
.
processTemplate
(
c
,
fpath
,
tmpl
,
metadata
)
}
// extractMetadata extracts metadata content from a page.
...
...
@@ -104,7 +111,7 @@ func findParser(line []byte) MetadataParser {
return
nil
}
func
processTemplate
(
c
Config
,
fpath
string
,
tmpl
[]
byte
,
metadata
Metadata
)
([]
byte
,
error
)
{
func
(
md
Markdown
)
processTemplate
(
c
Config
,
fpath
string
,
tmpl
[]
byte
,
metadata
Metadata
)
([]
byte
,
error
)
{
// if template is specified
// replace parse the template
if
tmpl
!=
nil
{
...
...
@@ -119,6 +126,14 @@ func processTemplate(c Config, fpath string, tmpl []byte, metadata Metadata) ([]
if
err
=
t
.
Execute
(
b
,
metadata
.
Variables
);
err
!=
nil
{
return
nil
,
err
}
// generate static page
if
err
=
md
.
generatePage
(
c
,
fpath
,
b
.
Bytes
());
err
!=
nil
{
// if static page generation fails,
// nothing fatal, only log the error.
log
.
Println
(
err
)
}
return
b
.
Bytes
(),
nil
}
...
...
@@ -154,6 +169,42 @@ func defaultTemplate(c Config, metadata Metadata, fpath string) []byte {
return
html
}
func
(
md
Markdown
)
generatePage
(
c
Config
,
fpath
string
,
content
[]
byte
)
error
{
// should not happen
// must be set on init
if
c
.
StaticDir
==
""
{
return
fmt
.
Errorf
(
"Static directory not set"
)
}
// if static directory is not existing, create it
if
_
,
err
:=
os
.
Stat
(
c
.
StaticDir
);
err
!=
nil
{
err
:=
os
.
MkdirAll
(
c
.
StaticDir
,
os
.
FileMode
(
0755
))
if
err
!=
nil
{
return
err
}
}
filePath
:=
filepath
.
Join
(
c
.
StaticDir
,
fpath
)
// If it is index file, use the directory instead
if
md
.
IsIndexFile
(
filepath
.
Base
(
fpath
))
{
filePath
,
_
=
filepath
.
Split
(
filePath
)
}
if
err
:=
os
.
MkdirAll
(
filePath
,
os
.
FileMode
(
0755
));
err
!=
nil
{
return
err
}
// generate index.html file in the directory
filePath
=
filepath
.
Join
(
filePath
,
"index.html"
)
err
:=
ioutil
.
WriteFile
(
filePath
,
content
,
os
.
FileMode
(
0755
))
if
err
!=
nil
{
return
err
}
c
.
StaticFiles
[
fpath
]
=
filePath
return
nil
}
const
(
htmlTemplate
=
`<!DOCTYPE html>
<html>
...
...
@@ -169,6 +220,4 @@ const (
</html>`
cssTemplate
=
`<link rel="stylesheet" href="{{url}}">`
jsTemplate
=
`<script src="{{url}}"></script>`
DefaultTemplate
=
"defaultTemplate"
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment