build.lua

Mon, 18 May 2009 15:20:52 +0100

author
Matthew Wild <mwild1@gmail.com>
date
Mon, 18 May 2009 15:20:52 +0100
changeset 1
74deddff1202
child 2
80eb1f7784c4
permissions
-rw-r--r--

Add build.lua now that all Prosody-specific things are out of it

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"
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
4
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
5 -- Config --
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 dofile(arg[1] or ".blogrc")
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
8
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
9 posts_dir = posts_dir or "_posts/"
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
10 layouts_dir = layouts_dir or "_layouts/"
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
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
13 -- Logging --
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
14 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
15 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
16 -- -- - -- --
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
17
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
18 -- Append '/' to end of posts_dir if necessary
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
19 posts_dir = posts_dir:gsub("([^/])$", "%1/")
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
20
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
21 -- Append '/' to end of base_url if necessary
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
22 base_url = base_url:gsub("([^/])$", "%1/")
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
23
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
24 posts = {};
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
25
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
26
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
27 -- 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
28 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
29 -- Ignore dotfiles
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 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
31 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
32 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
33 if post_file then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
34 local post_format = post_filename:match("%.(%w+)") or "text";
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
35 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
36 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
37 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
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 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
40 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
41 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
42 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
43 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
44 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
45 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
46 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
47 break;
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 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
50 break;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
51 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
52 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
53 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
54 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
55 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
56 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
57 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
58 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
59 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
60 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
61
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
62 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
63
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
64 -- 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
65 --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
66 post.content = templates.load(parsers[post_format](post_data)):render{ page = post };
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
67 post.shorttitle = post.title:gsub("%W+", "-"):lower():sub(1,45)
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
68 if #post.title:gsub("%W+", "-") > 45 then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
69 post.shorttitle = post.shorttitle:gsub("%-%w+$", "");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
70 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
71 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
72 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
73 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
74 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
75 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
76 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
77 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
78 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
79 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
80 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
81 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
82 end
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 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 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
87 { __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
88
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
89 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
90 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
91 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
92 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
93 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
94 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
95 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
96 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
97 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
98 return false;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
99 end);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
100
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
101 do
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
102 local shorttitles = {};
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
103 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
104 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
105 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
106 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
107 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
108 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
109 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
110 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
111
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
112 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
113
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
114 msg_info(" - - - ");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
115
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
116 local unpublished = 0;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
117 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
118 if post.content and (not post.layout or layouts[post.layout]) then
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
119 lfs.mkdir(post.shorttitle);
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
120 local outfile, err = io.open(post.shorttitle.."/index.html", "w+");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
121 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
122 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
123
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
124 -- 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
125 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
126 repeat
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
127 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
128 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
129 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
130 i = 1;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
131 repeat
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
132 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
133 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
134 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
135
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
136 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
137 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
138 outfile:close();
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
139 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
140 -- 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
141 --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
142 unpublished = unpublished + 1;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
143 posts[n] = nil;
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
144 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
145 else
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
146 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
147 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
148 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
149 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
150 else
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("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
152 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
153 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
154 end
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 main page
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
157 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
158
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
159 main_tpl:saverender("index.html", { title = blog_title, posts = posts });
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 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
162
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
163 msg_info(" - - - ");
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
164
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
165 -- Do feed
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
166 local atom = io.open("feed/atom.xml.new", "w+");
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[[<?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
168 <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
169 ]]
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
170 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
171 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
172 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
173 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
174 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
175
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>", 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
177
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
178 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
179 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
180 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
181 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
182 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
183 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
184 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
185 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
186 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
187 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
188 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
189 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
190 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
191 end
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
192 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
193 atom:close();
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
194 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
195
74deddff1202 Add build.lua now that all Prosody-specific things are out of it
Matthew Wild <mwild1@gmail.com>
parents:
diff changeset
196 msg_info("ATOM feed written to feed/atom.xml");

mercurial