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
|
/*
* This program is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see
* <http://www.gnu.org/licenses/>.
*
* (c) Vincenzo "KatolaZ" Nicosia 2017 -- <katolaz@freaknet.org>
*
*
* This file is part of "binnit", a minimal no-fuss pastebin-like
* server written in golang
*
*/
/*
*
* minimal Templating support for binit
*
*/
package main
import (
"os"
"io/ioutil"
"regexp"
"errors"
)
func prepare_paste_page(c *Config, paste_ID string) (string, error) {
s:= ""
// insert header
head_file := c.templ_dir + "/header.html"
f_head, err := os.Open(head_file)
defer f_head.Close()
if err == nil {
cont, err := ioutil.ReadFile(head_file)
if err == nil{
s += string(cont)
}
}
// insert content
cont_file := c.paste_dir + "/" + paste_ID
f_cont, err := os.Open(cont_file)
defer f_cont.Close()
if err == nil {
// Let's read the content of the paste
cont, err := ioutil.ReadFile(cont_file)
if err == nil {
paste_buf := string(cont)
// ...Let's read the template
templ_file := c.templ_dir + "/templ.html"
f_templ, err := os.Open(templ_file)
defer f_templ.Close()
cont, err := ioutil.ReadFile(templ_file)
if err == nil {
tmpl := string(cont)
// ...and replace {{CONTENT}} with the paste itself!
re,_ := regexp.Compile("{{CONTENT}}")
tmpl = string(re.ReplaceAll([]byte(tmpl), []byte(paste_buf)))
s += tmpl
} else {
return "", errors.New("Error opening template file")
}
} else {
return "", errors.New("Error opening paste")
}
}
// insert footer
foot_file := c.templ_dir + "/footer.html"
f_foot, err := os.Open(foot_file)
defer f_foot.Close()
if err == nil {
cont, err := ioutil.ReadFile(foot_file)
if err == nil{
s += string(cont)
}
}
return s, nil
}
|