build.lua

Sat, 10 Nov 2012 04:02:30 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Sat, 10 Nov 2012 04:02:30 +0000
changeset 18
a96836139ff9
parent 16
f5afa9d3d3c5
permissions
-rwxr-xr-x

parsers.markdown: Make module callable, to allow parsing text as a module

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 "lfs"
12
4c759312950b Update to modularise a little, and prepare for a system-wide installation support
Matthew Wild <mwild1@gmail.com>
parents: 11
diff changeset
2
4c759312950b Update to modularise a little, and prepare for a system-wide installation support
Matthew Wild <mwild1@gmail.com>
parents: 11
diff changeset
3 require "jorvick.templates"
4c759312950b Update to modularise a little, and prepare for a system-wide installation support
Matthew Wild <mwild1@gmail.com>
parents: 11
diff changeset
4 require "jorvick.parsers"
4c759312950b Update to modularise a little, and prepare for a system-wide installation support
Matthew Wild <mwild1@gmail.com>
parents: 11
diff changeset
5 require "jorvick.util"
1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
6
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
7 -- Logging --
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8 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
9 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
10 -- -- - -- --
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
11
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
12 posts = {};
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
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
15 -- 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
16 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
17 -- Ignore dotfiles
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18 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
19 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
20 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
21 if post_file then
4
cebf96c3b522 Correctly parse file extension to determine post format
Matthew Wild <mwild1@gmail.com>
parents: 3
diff changeset
22 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
23 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
24 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
25 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
26 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
27 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
28 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
29 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
30 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
31 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
32 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
33 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
34 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
35 break;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
36 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
37 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
38 break;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
39 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
40 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
41 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
42 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
43 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
44 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
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 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
49
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
50 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
51
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
52 -- 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
53 --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
54 post.content = templates.load(parsers[post_format](post_data)):render{ page = post };
11
36dd235e09d2 Fix typo in build.lua
Matthew Wild <mwild1@gmail.com>
parents: 8
diff changeset
55 post.shorttitle = 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
56 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
57 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
58 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
59 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
60 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
61 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
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 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
64 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
65 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
66 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
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 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
70
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
71 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
72 { __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
73
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
74 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
75 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
76 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
77 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
78 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
79 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
80 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
81 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
82 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
83 return false;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
84 end);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
85
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
86 do
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
87 local shorttitles = {};
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
88 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
89 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
90 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
91 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
92 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
93 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
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 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
96
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
97 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
98
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
99 msg_info(" - - - ");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
100
5
951de9625338 Fix potential skipping of published posts if prior posts weren't published
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
101 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
102 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
103 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
104 lfs.mkdir(output_dir..post.shorttitle);
80eb1f7784c4 Support for output_dir config option
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
105 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
106 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
107 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
108
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
109 -- 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
110 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
111 repeat
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
112 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
113 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
114 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
115 i = 1;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
116 repeat
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
117 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
118 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
119 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
120
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
121 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
122 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
123 outfile:close();
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
124 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
125 -- 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
126 --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
127 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
128 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
129 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
130 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
131 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
132 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
133 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
134 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
135 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
136 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
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 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
140
5
951de9625338 Fix potential skipping of published posts if prior posts weren't published
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
141 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
142 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
143 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
144 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
145 end
951de9625338 Fix potential skipping of published posts if prior posts weren't published
Matthew Wild <mwild1@gmail.com>
parents: 4
diff changeset
146
1
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
147 -- 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
148 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
149
3
f22a275a3a33 Fix for index.html to be saved in output_dir
Matthew Wild <mwild1@gmail.com>
parents: 2
diff changeset
150 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
151
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
152 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
153
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
154 msg_info(" - - - ");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
155
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
156 -- Do feed
2
80eb1f7784c4 Support for output_dir config option
Matthew Wild <mwild1@gmail.com>
parents: 1
diff changeset
157 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
158 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
159 <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
160 ]]
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<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
162 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
163 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
164 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
165 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
166
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
167 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
168
16
f5afa9d3d3c5 build.lua: Write the latest 10 entries to the feed, not the earliest 10 entries :)
Matthew Wild <mwild1@gmail.com>
parents: 12
diff changeset
169 for n = #posts,#posts-10,-1 do
f5afa9d3d3c5 build.lua: Write the latest 10 entries to the feed, not the earliest 10 entries :)
Matthew Wild <mwild1@gmail.com>
parents: 12
diff changeset
170 local post = 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
171 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
172 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
173 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
174 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
175 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
176 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
177 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
178 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
179 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
180 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
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 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
183 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
184 atom:close();
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
185 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
186
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
187 msg_info("ATOM feed written to feed/atom.xml");

mercurial