]> git.phdru.name Git - phdru.name/phdru.name.git/blob - reindex_blog.py
Switch locale back to C to generate englsih dates.
[phdru.name/phdru.name.git] / reindex_blog.py
1 #! /usr/local/bin/python -O
2 # -*- coding: koi8-r -*-
3
4 __version__ = "$Revision$"[11:-2]
5 __revision__ = "$Id$"[5:-2]
6 __date__ = "$Date$"[7:-2]
7 __author__ = "Oleg BroytMann <phd@phd.pp.ru>"
8 __copyright__ = "Copyright (C) 2006 PhiloSoft Design"
9
10
11 import sys, os
12
13 blog_filename = sys.argv[1]
14 blog_root = sys.argv[2]
15
16 try:
17    import cPickle as pickle
18 except ImportError:
19    import pickle
20
21 from Cheetah.Template import Template
22
23
24 # Load old blog
25
26 try:
27    blog_file = open(blog_filename, "rb")
28 except IOError:
29    old_blog = {}
30 else:
31    old_blog = pickle.load(blog_file)
32    blog_file.close()
33
34
35 # blog is a dictionary mapping
36 # (year, month, day) => [list of (file, title, lead, tags)]
37
38 blog = {}
39 years = {}
40
41 # Walk the directory recursively
42 for dirpath, dirs, files in os.walk(blog_root):
43    d = os.path.basename(dirpath)
44    if not d.startswith("20") and not d.isdigit():
45       continue
46    for file in files:
47       # Ignore index.tmpl and *.html files; supose all other files are *.tmpl
48       if file == "index.tmpl" or file.endswith(".html"):
49          continue
50       fullpath = os.path.join(dirpath, file)
51       template = Template(file=fullpath)
52       title_parts = template.Title.split()
53       title = ' '.join(title_parts[6:])
54       lead = getattr(template, "Lead", None)
55
56       tags = getattr(template, "Tag", None)
57       if isinstance(tags, basestring):
58          tags = (tags,)
59
60       if title:
61          key = year, month, day = tuple(dirpath[len(blog_root):].split(os.sep)[1:])
62          if key in blog:
63             days = blog[key]
64          else:
65             days = blog[key] = []
66          days.append((file, title, lead, tags))
67
68          if year in years:
69             months = years[year]
70          else:
71             months = years[year] = {}
72
73          if month in months:
74             days = months[month]
75          else:
76             days = months[month] = []
77
78          if day not in days: days.append(day)
79
80
81 # Need to save the blog?
82 if blog <> old_blog:
83    blog_file = open(blog_filename, "wb")
84    pickle.dump(blog, blog_file, pickle.HIGHEST_PROTOCOL)
85    blog_file.close()
86
87
88 # Localized month names
89
90 import locale
91 locale.setlocale(locale.LC_ALL, '')
92 from calendar import _localized_day, _localized_month
93
94 locale.setlocale(locale.LC_TIME, 'C')
95 months_names_en = list(_localized_month('%B'))
96 months_abbrs_en = list(_localized_month('%b'))
97
98 locale.setlocale(locale.LC_TIME, '')
99 months_names_ru = [month.lower() for month in _localized_month('%B')]
100
101 months_names_ru0 = ['', "январь", "февраль", "март", "апрель", "май", "июнь",
102    "июль", "август", "сентябрь", "октябрь", "ноябрь", "декабрь"
103 ]
104
105 from news import write_if_changed
106
107
108 def write_template(level, year, month, day, titles, tags=None):
109    path = [blog_root]
110    if level >= 1:
111       path.append(year)
112    if level >= 2:
113       path.append(month)
114    if level == 3:
115       path.append(day)
116    path.append("index.tmpl")
117    index_name = os.path.join(*path)
118
119    new_text = ["""\
120 ## THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
121 #extends phd_pp_ru
122 #implements respond
123 """]
124
125    if level == 0:
126       new_text.append("""\
127 #attr $Title = "Oleg BroytMann's blog"
128 #attr $Description = "BroytMann Russian Blog Index Document"
129 #attr $Copyright = %(cyear)s
130 ##
131 #def body_html
132 <H1>Журнал</H1>
133 """ % {"cyear": year or 2005})
134
135    elif level == 1:
136       new_text.append("""\
137 #attr $Title = "Oleg BroytMann's blog: %(year)s"
138 #attr $Description = "BroytMann Russian Blog %(year)s Index Document"
139 #attr $Copyright = %(cyear)s
140 ##
141 #def body_html
142 <H1>Журнал: %(year)s</H1>
143 """ % {"year": year, "cyear": year or 2005})
144
145    elif level == 2:
146       imonth = int(month)
147       new_text.append("""\
148 #attr $Title = "Oleg BroytMann's blog: %(month_abbr_en)s %(year)s"
149 #attr $Description = "BroytMann Russian Blog %(month_name_en)s %(year)s Index Document"
150 #attr $Copyright = %(cyear)s
151 ##
152 #def body_html
153 <H1>Журнал: %(month_name_ru0)s %(year)s</H1>
154 """ % {
155       "year": year, "cyear": year or 2005,
156       "month_abbr_en": months_abbrs_en[imonth], "month_name_en": months_names_en[imonth],
157       "month_name_ru0": months_names_ru0[imonth],
158    })
159
160    elif level == 3:
161       iday = int(day)
162       imonth = int(month)
163
164       new_text.append("""\
165 #attr $Next = "%s"
166 """ % titles[0][3])
167
168
169       if len(titles) == 1:
170          new_text.append("""\
171 #attr $refresh = "0; URL=%s"
172 """ % titles[0][3])
173
174       new_text.append("""\
175 #attr $Title = "Oleg BroytMann's blog: %(day)d %(month_abbr_en)s %(year)s"
176 #attr $Description = "BroytMann Russian Blog %(day)d %(month_name_en)s %(year)s Index Document"
177 #attr $Copyright = %(cyear)s
178 ##
179 #def body_html
180 <H1>Журнал: %(day)d %(month_name_ru0)s %(year)s</H1>
181 """ % {
182       "year": year, "cyear": year or 2005,
183       "month_abbr_en": months_abbrs_en[imonth], "month_name_en": months_names_en[imonth],
184       "month_name_ru0": months_names_ru0[imonth],
185       "day": iday
186    })
187
188    save_titles = titles[:]
189    titles.reverse()
190
191    save_day = None
192    for year, month, day, file, title, lead in titles:
193       href = []
194       if level == 0:
195          href.append(year)
196       if level <= 1:
197          href.append(month)
198       if level <= 2:
199          href.append(day)
200       href.append(file)
201       href = '/'.join(href)
202       if day[0] == '0': day = day[1:]
203       if save_day <> day:
204          if level == 0:
205             new_text.append('\n<h2>%s %s %s</h2>' % (day, months_names_ru[int(month)], year))
206          else:
207             new_text.append('\n<h2>%s %s</h2>' % (day, months_names_ru[int(month)]))
208          save_day = day
209       if lead:
210          lead = lead + ' '
211       else:
212          lead = ''
213       new_text.append('''
214 <p class="head">
215    %s<a href="%s">%s</a>.
216 </p>
217 ''' % (lead, href, title))
218
219    if level == 0:
220       years = {}
221       for year, month, day, file, title, lead in save_titles:
222          years[year] = True
223       new_text.append('''
224 <hr>
225
226 <p class="noindent"><a href="tags/">Теги</a>:
227 ''')
228       first_tag = True
229       for count, tag, links in all_tags:
230          if first_tag:
231             first_tag = False
232          else:
233             new_text.append(' - ')
234          new_text.append("""<a href="tags/%s.html">%s (%d)</a>""" % (tag, tag, count))
235       new_text.append('''
236 </p>
237 ''')
238
239       new_text.append('''
240 <p class="noindent">По годам:
241 ''')
242       first_year = True
243       for year in sorted(years.keys()):
244          if first_year:
245             first_year = False
246          else:
247             new_text.append(' - ')
248          new_text.append('<a href="%s/">%s</a>' % (year, year))
249       new_text.append('''
250 </p>
251 ''')
252
253    new_text.append("""\
254 #end def
255 $phd_pp_ru.respond(self)
256 """)
257
258    write_if_changed(index_name, ''.join(new_text))
259
260
261 all_tags = {}
262 all_titles = []
263 all_titles_tags = []
264
265 for year in sorted(years.keys()):
266    year_titles = []
267    months = years[year]
268    for month in sorted(months.keys()):
269       month_titles = []
270       for day in sorted(months[month]):
271          day_titles = []
272          key = year, month, day
273          if key in blog:
274             for file, title, lead, tags in blog[key]:
275                if file.endswith(".tmpl"): file = file[:-len("tmpl")] + "html"
276                value = (year, month, day, file, title, lead)
277                all_titles_tags.append((year, month, day, file, title, lead, tags))
278                all_titles.append(value)
279                year_titles.append(value)
280                month_titles.append(value)
281                day_titles.append(value)
282                for tag in tags:
283                   if tag in all_tags:
284                      tag_links = all_tags[tag]
285                   else:
286                      tag_links = all_tags[tag] = []
287                   tag_links.append(value)
288          write_template(3, year, month, day, day_titles)
289       write_template(2, year, month, day, month_titles)
290    write_template(1, year, month, day, year_titles)
291
292 all_tags = [(len(links), tag, links) for (tag, links) in all_tags.items()]
293 all_tags.sort()
294
295 write_template(0, year, month, day, all_titles[-20:], all_tags)
296
297 new_text = ["""\
298 ## THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
299 #extends phd_pp_ru
300 #implements respond
301 #attr $Title = "Oleg BroytMann's blog: tags"
302 #attr $Description = "BroytMann Russian Blog Tags Index Document"
303 #attr $Copyright = 2006
304 ##
305 #def body_html
306 <H1>Теги</H1>
307
308 <p class="head">
309 <dl>
310 """]
311
312 for count, tag, links in all_tags:
313    new_text.append("""\
314    <dt><a href="%s.html">%s (%d)</a></dt>
315 """ % (tag, tag, count))
316
317    tag_text = ["""\
318 ## THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
319 #extends phd_pp_ru
320 #implements respond
321 #attr $Title = "Oleg BroytMann's blog: tag %s"
322 #attr $Description = "BroytMann Russian Blog Tag %s Index Document"
323 #attr $Copyright = 2006
324 ##
325 #def body_html
326 <H1>%s</H1>
327
328 <p class="head">
329 <ul>
330 """ % (tag, tag, tag)]
331
332    count = 0
333    for year, month, day, filename, title, lead in reversed(links):
334       if lead:
335          lead = lead + ' '
336       else:
337          lead = ''
338       link = "../%s/%s/%s/%s" % (year, month, day, filename)
339       item_text = """<li><a href="%s">%s/%s/%s: %s%s</a></li>""" % (link, year, month, day, lead, title)
340
341       count += 1
342       if count <= 5:
343          new_text.append("      <dd>%s</dd>\n" % item_text)
344
345       tag_text.append("   %s\n" % item_text)
346
347    tag_text.append("""\
348 </ul>
349 </p>
350 #end def
351 $phd_pp_ru.respond(self)
352 """)
353    write_if_changed(os.path.join(blog_root, "tags", tag+".tmpl"), ''.join(tag_text))
354
355 new_text.append("""\
356 </dl>
357 </p>
358 #end def
359 $phd_pp_ru.respond(self)
360 """)
361 write_if_changed(os.path.join(blog_root, "tags", "index.tmpl"), ''.join(new_text))
362
363
364 from atom_10 import atom_10
365 from rss_20 import rss_20
366 from news import NewsItem
367
368 baseURL = "http://phd.pp.ru/Russian/blog/"
369
370 items = []
371 for item in tuple(reversed(all_titles_tags))[:10]:
372    year, month, day, file, title, lead, tags = item
373    if lead:
374       lead = lead + ' '
375    else:
376       lead = ''
377    item = NewsItem(
378       "%s-%s-%s" % (year, month, day),
379       "%s%s" % (lead, title),
380       "%s/%s/%s/%s" % (year, month, day, file)
381    )
382    items.append(item)
383    item.baseURL = baseURL
384    item.categoryList = tags
385
386 namespace = {
387    "title": "Oleg Broytmann's blog",
388    "baseURL": baseURL,
389    "indexFile": "",
390    "description": "",
391    "lang": "ru",
392    "author": "Oleg Broytmann",
393    "email": "phd@phd.pp.ru",
394    "posts": items,
395 }
396
397 # For english dates
398 locale.setlocale(locale.LC_TIME, 'C')
399
400 atom_tmpl = str(atom_10(searchList=[namespace]))
401 write_if_changed(os.path.join(blog_root, "atom_10.xml"), atom_tmpl)
402 rss_tmpl = str(rss_20(searchList=[namespace]))
403 write_if_changed(os.path.join(blog_root, "rss_20.xml"), rss_tmpl)