build.lua

Sat, 11 Jul 2009 03:37:48 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 11 Jul 2009 03:37:48 +0100
changeset 10
58f3707e44d7
parent 8
6dc28a66f4d9
child 11
36dd235e09d2
permissions
-rwxr-xr-x

Strip trailing punctuation from short titles

1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
1 require "LuaTemplates.templates"
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
2 require "LuaTemplates.parsers"
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
3 require "lfs"
6
cf40d55f8122 Add util module and move first helper function into it
Matthew Wild <mwild1@gmail.com>
parents: 5
diff changeset
4 require "util"
1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6 -- Logging --
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 function make_msg(prefix, name) return function (fmt, ...) print(prefix, string.format(fmt, ...)); end end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 msg_info, msg_warn, msg_error = make_msg("II", "info"), make_msg("WW", "warn"), make_msg("EE", "error");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9 -- -- - -- --
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11 posts = {};
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
14 -- Read posts, interpret
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15 for post_filename in lfs.dir(posts_dir:gsub("/$", "")) do
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
16 -- Ignore dotfiles
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
17 if not post_filename:match("^%.") then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18 msg_info("Processing %s", post_filename);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
19 local post_file, err = io.open(posts_dir..post_filename);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
20 if post_file then
4
cebf96c3b522 Correctly parse file extension to determine post format
Matthew Wild <mwild1@gmail.com>
parents: 3
diff changeset
21 local post_format = post_filename:match("%.(%w+)$") or "text";
1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
22 local post = { filename = post_filename, path = posts_dir..post_filename, format = post_format };
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
23 if not parsers[post_format] then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
24 msg_warn("Post format '%s' not supported", post_format);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
25 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
26 local inside_header, line_num = nil, 0;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
27 for line in post_file:lines() do
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
28 line_num = line_num + 1;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
29 if line:match("^%-%-%-") then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
30 if not inside_header then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
31 inside_header = true;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
32 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
33 inside_header = false;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
34 break;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
35 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
36 elseif not inside_header then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
37 break;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
38 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
39 local k,v = line:match("^(%w+):%s?(.*)$");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
40 if k and v then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
41 post[k] = v;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
42 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
43 msg_warn("Couldn't parse header at line %d", line_num);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
44 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
45 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
46 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
47 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
48
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
49 local post_data, err = post_file:read("*a");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
50
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
51 -- Parse post_data according to extension, add to post list
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
52 --msg_info("Parsing %s...", post_filename) --:gsub("%.[^%.]+$", ""):match("[^/]+"));
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
53 post.content = templates.load(parsers[post_format](post_data)):render{ page = post };
6
cf40d55f8122 Add util module and move first helper function into it
Matthew Wild <mwild1@gmail.com>
parents: 5
diff changeset
54 post.shorttile = make_short_title(post.title);
1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
55 post.url = base_url..post.shorttitle.."/"
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
56 post.post = post
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
57 post.updated = post.updated or os.date("!%Y-%m-%dT%H:%M:%SZ", lfs.attributes(post.path).modification);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
58 if post.published then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
59 if not post.published:match("^%d%d%d%d%-%d%d%-%d%dT%d%d:%d%d%:%d%dZ$") then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
60 msg_error("Post has invalid published date");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
61 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
62 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
63 table.insert(posts, post);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
64 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
65 msg_error("Failed to open %s, %s", post_filename, err);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
66 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
67 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
68 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
69
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
70 local layouts = setmetatable({ default = templates.init(layouts_dir.."default.html"); },
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
71 { __index = function (t, k) rawset(t, k, templates.init(layouts_dir..k..".html")); return rawget(t, k); end });
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
72
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
73 table.sort(posts, function (a, b)
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
74 do return (a.updated or "") < (b.updated or ""); end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
75 if not a.updated then return true; end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
76 if not b.updated then return false; end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
77 local a_year, a_month, a_day = a.updated:match("(%d%d%d%d)%-(%d%d)%-(%d%d)");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
78 local b_year, b_month, b_day = b.updated:match("(%d%d%d%d)%-(%d%d)%-(%d%d)");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
79 if b_year >= a_year then return true; end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
80 if b_month >= a_month then return true; end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
81 if b_day >= a_day then return true; end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
82 return false;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
83 end);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
84
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
85 do
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
86 local shorttitles = {};
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
87 for _, post in ipairs(posts) do
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
88 while shorttitles[post.shorttitle] do
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
89 post.shorttitle = post.shorttitle:gsub("%~%d+$", "").."~"..((tonumber(post.shorttitle:match("%~(%d*)$")) or 0) + 1)
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
90 post.url = base_url..post.shorttitle.."/"
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
91 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
92 shorttitles[post.shorttitle] = post;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
93 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
94 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
95
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
96 msg_info("%s post%s processed", #posts, #posts ~= 1 and "s" or "");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
97
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
98 msg_info(" - - - ");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
99
5
951de9625338 Fix potential skipping of published posts if prior posts weren't published
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
100 local unpublished, removed_posts = 0, {};
1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
101 for n, post in ipairs(posts) do
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
102 if post.content and (not post.layout or layouts[post.layout]) then
2
80eb1f7784c4 Support for output_dir config option
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
103 lfs.mkdir(output_dir..post.shorttitle);
80eb1f7784c4 Support for output_dir config option
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
104 local outfile, err = io.open(output_dir..post.shorttitle.."/index.html", "w+");
1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
105 if outfile then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
106 local layout = layouts[post.layout or "default"];
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
107
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
108 -- Link to the previous and next published posts
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
109 local i = 1;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
110 repeat
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
111 post.next = posts[n+i];
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
112 i = i + 1;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
113 until (not post.next) or post.next.published;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
114 i = 1;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
115 repeat
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
116 post.previous = posts[n-i];
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
117 i = i + 1;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
118 until (not post.previous) or post.previous.published;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
119
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
120 post.id = n;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
121 outfile:write(layout:render(post));
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
122 outfile:close();
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
123 if not post.published then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
124 -- Not published yet, hide it
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
125 --msg_info("Hiding unpublished post");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
126 unpublished = unpublished + 1;
5
951de9625338 Fix potential skipping of published posts if prior posts weren't published
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
127 table.insert(removed_posts, n);
1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
128 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
129 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
130 msg_error("Failed to write HTML: %s", err);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
131 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
132 if post.published then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
133 msg_info("Published: %s", post.shorttitle);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
134 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
135 msg_info("Generated: %s", post.shorttitle);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
136 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
137 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
138 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
139
5
951de9625338 Fix potential skipping of published posts if prior posts weren't published
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
140 local removed = 0;
951de9625338 Fix potential skipping of published posts if prior posts weren't published
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
141 for _, n in ipairs(removed_posts) do
951de9625338 Fix potential skipping of published posts if prior posts weren't published
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
142 table.remove(posts, n-removed);
951de9625338 Fix potential skipping of published posts if prior posts weren't published
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
143 removed = removed + 1;
951de9625338 Fix potential skipping of published posts if prior posts weren't published
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
144 end
951de9625338 Fix potential skipping of published posts if prior posts weren't published
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
145
1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
146 -- Do main page
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
147 local main_tpl = templates.init(layouts_dir.."/main.html");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
148
3
f22a275a3a33 Fix for index.html to be saved in output_dir
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
149 main_tpl:saverender(output_dir.."index.html", { title = blog_title, posts = posts });
1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
150
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
151 msg_info("%s post%s published, %d post%s unpublished", #posts, #posts ~= 1 and "s" or "", unpublished, unpublished ~= 1 and "s" or "");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
152
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
153 msg_info(" - - - ");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
154
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
155 -- Do feed
2
80eb1f7784c4 Support for output_dir config option
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
156 local atom = io.open(output_dir.."feed/atom.xml.new", "w+");
1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
157 atom:write[[<?xml version="1.0" encoding="UTF-8"?>
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
158 <feed xmlns="http://www.w3.org/2005/Atom">
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
159 ]]
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
160 atom:write("\t<id>", base_url, "</id>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
161 atom:write("\t<title>", blog_title, "</title>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
162 atom:write("\t<subtitle>", blog_subtitle, "</subtitle>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
163 atom:write("\t<link href='", base_url, "feed/atom.xml' rel='self' />\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
164 atom:write("\t<link href='", base_url, "' />\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
165
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
166 atom:write("\t<updated>", os.date "!%Y-%m-%dT%H:%M:%SZ", "</updated>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
167
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
168 for n, post in ipairs(posts) do
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
169 if n > 10 then break; end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
170 if post.published then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
171 atom:write("<entry>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
172 atom:write("\t<author>\n\t\t<name>", post.author or default_author or "Unknown Author", "</name>\n\t</author>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
173 atom:write("\t<id>", post.url, "</id>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
174 atom:write("\t<title>", post.title, "</title>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
175 atom:write("\t<published>", post.published, "</published>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
176 atom:write("\t<updated>", post.updated, "</updated>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
177 atom:write("\t<link href='", post.url, "' />\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
178 atom:write("\t<content type='html'>\n", post.content:gsub("&", "&amp;"):gsub("<", "&lt;"), "\t</content>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
179 atom:write("</entry>\n");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
180 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
181 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
182 atom:write("</feed>");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
183 atom:close();
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
184 os.rename("feed/atom.xml.new", "feed/atom.xml");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
185
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
186 msg_info("ATOM feed written to feed/atom.xml");

mercurial