2 # Copyright (c) 2006, 2007 Manoj Srivastava <srivasta@debian.org>
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
19 package IkiWiki::Plugin::calendar;
27 my @now=localtime($time);
30 hook(type => "getsetup", id => "calendar", call => \&getsetup);
31 hook(type => "needsbuild", id => "calendar", call => \&needsbuild);
32 hook(type => "preprocess", id => "calendar", call => \&preprocess);
44 example => "archives",
45 description => "base of the archives hierarchy",
51 example => "page(posts/*) and !*/Discussion",
52 description => "PageSpec of pages to include in the archives; used by ikiwiki-calendar command",
53 link => 'ikiwiki/PageSpec',
59 sub is_leap_year (@) {
61 return ($params{year} % 4 == 0 && (($params{year} % 100 != 0) || $params{year} % 400 == 0));
66 my $days_in_month = (31,28,31,30,31,30,31,31,30,31,30,31)[$params{month}-1];
67 if ($params{month} == 2 && is_leap_year(%params)) {
70 return $days_in_month;
73 sub format_month (@) {
77 foreach my $p (pagespec_match_list($params{page},
78 "creation_year($params{year}) and creation_month($params{month}) and ($params{pages})",
79 # add presence dependencies to update
80 # month calendar when pages are added/removed
81 deptype => deptype("presence"))) {
82 my $mtime = $IkiWiki::pagectime{$p};
83 my @date = localtime($mtime);
85 my $month = $date[4] + 1;
86 my $year = $date[5] + 1900;
87 my $mtag = sprintf("%02d", $month);
89 # Only one posting per day is being linked to.
90 $linkcache{"$year/$mtag/$mday"} = $p;
93 my $pmonth = $params{month} - 1;
94 my $nmonth = $params{month} + 1;
95 my $pyear = $params{year};
96 my $nyear = $params{year};
98 # Adjust for January and December
99 if ($params{month} == 1) {
103 if ($params{month} == 12) {
109 $pmonth=sprintf("%02d", $pmonth);
110 $nmonth=sprintf("%02d", $nmonth);
114 # When did this month start?
115 my @monthstart = localtime(timelocal(0,0,0,1,$params{month}-1,$params{year}-1900));
119 if ($params{year} == $now[5]+1900 && $params{month} == $now[4]+1) {
120 $future_dom = $now[3]+1;
124 # Find out month names for this, next, and previous months
125 my $monthabbrev=strftime_utf8("%b", @monthstart);
126 my $monthname=strftime_utf8("%B", @monthstart);
127 my $pmonthname=strftime_utf8("%B", localtime(timelocal(0,0,0,1,$pmonth-1,$pyear-1900)));
128 my $nmonthname=strftime_utf8("%B", localtime(timelocal(0,0,0,1,$nmonth-1,$nyear-1900)));
130 my $archivebase = 'archives';
131 $archivebase = $config{archivebase} if defined $config{archivebase};
132 $archivebase = $params{archivebase} if defined $params{archivebase};
134 # Calculate URL's for monthly archives.
135 my ($url, $purl, $nurl)=("$monthname $params{year}",'','');
136 if (exists $pagesources{"$archivebase/$params{year}/$params{month}"}) {
137 $url = htmllink($params{page}, $params{destpage},
138 "$archivebase/$params{year}/".$params{month},
140 linktext => "$monthabbrev $params{year}",
141 title => $monthname);
143 add_depends($params{page}, "$archivebase/$params{year}/$params{month}",
144 deptype("presence"));
145 if (exists $pagesources{"$archivebase/$pyear/$pmonth"}) {
146 $purl = htmllink($params{page}, $params{destpage},
147 "$archivebase/$pyear/$pmonth",
149 linktext => "\←",
150 title => $pmonthname);
152 add_depends($params{page}, "$archivebase/$pyear/$pmonth",
153 deptype("presence"));
154 if (exists $pagesources{"$archivebase/$nyear/$nmonth"}) {
155 $nurl = htmllink($params{page}, $params{destpage},
156 "$archivebase/$nyear/$nmonth",
158 linktext => "\→",
159 title => $nmonthname);
161 add_depends($params{page}, "$archivebase/$nyear/$nmonth",
162 deptype("presence"));
164 # Start producing the month calendar
166 <table class="month-calendar">
168 <th class="month-calendar-arrow">$purl</th>
169 <th class="month-calendar-head" colspan="5">$url</th>
170 <th class="month-calendar-arrow">$nurl</th>
175 # Suppose we want to start the week with day $week_start_day
176 # If $monthstart[6] == 1
177 my $week_start_day = $params{week_start_day};
179 my $start_day = 1 + (7 - $monthstart[6] + $week_start_day) % 7;
182 for my $dow ($week_start_day..$week_start_day+6) {
183 my @day=localtime(timelocal(0,0,0,$start_day++,$params{month}-1,$params{year}-1900));
184 my $downame = strftime_utf8("%A", @day);
185 my $dowabbr = substr($downame, 0, 1);
186 $downame{$dow % 7}=$downame;
187 $dowabbr{$dow % 7}=$dowabbr;
188 $calendar.= qq{\t\t<th class="month-calendar-day-head $downame" title="$downame">$dowabbr</th>\n};
196 # we start with a week_start_day, and skip until we get to the first
197 for ($wday=$week_start_day; $wday != $monthstart[6]; $wday++, $wday %= 7) {
198 $calendar.=qq{\t<tr>\n} if $wday == $week_start_day;
199 $calendar.=qq{\t\t<td class="month-calendar-day-noday $downame{$wday}"> </td>\n};
202 # At this point, either the first is a week_start_day, in which case
203 # nothing has been printed, or else we are in the middle of a row.
204 for (my $day = 1; $day <= month_days(year => $params{year}, month => $params{month});
205 $day++, $wday++, $wday %= 7) {
206 # At this point, on a week_start_day, we close out a row,
207 # and start a new one -- unless it is week_start_day on the
208 # first, where we do not close a row -- since none was started.
209 if ($wday == $week_start_day) {
210 $calendar.=qq{\t</tr>\n} unless $day == 1;
211 $calendar.=qq{\t<tr>\n};
215 my $key="$params{year}/$params{month}/$day";
216 if (defined $linkcache{$key}) {
217 if ($day == $today) {
218 $tag='month-calendar-day-this-day';
221 $tag='month-calendar-day-link';
223 $calendar.=qq{\t\t<td class="$tag $downame{$wday}">};
224 $calendar.=htmllink($params{page}, $params{destpage},
228 title => pagetitle(IkiWiki::basename($linkcache{$key})));
229 $calendar.=qq{</td>\n};
232 if ($day == $today) {
233 $tag='month-calendar-day-this-day';
235 elsif ($day == $future_dom) {
236 $tag='month-calendar-day-future';
239 $tag='month-calendar-day-nolink';
241 $calendar.=qq{\t\t<td class="$tag $downame{$wday}">$day</td>\n};
245 # finish off the week
246 for (; $wday != $week_start_day; $wday++, $wday %= 7) {
247 $calendar.=qq{\t\t<td class="month-calendar-day-noday $downame{$wday}"> </td>\n};
257 sub format_year (@) {
261 foreach my $p (pagespec_match_list($params{page},
262 "creation_year($params{year}) and ($params{pages})",
263 # add presence dependencies to update
264 # year calendar's links to months when
265 # pages are added/removed
266 deptype => deptype("presence"))) {
267 my $mtime = $IkiWiki::pagectime{$p};
268 my @date = localtime($mtime);
269 my $month = $date[4] + 1;
271 $post_months[$month]++;
276 my $pyear = $params{year} - 1;
277 my $nyear = $params{year} + 1;
279 my $thisyear = $now[5]+1900;
280 my $future_month = 0;
281 $future_month = $now[4]+1 if $params{year} == $thisyear;
283 my $archivebase = 'archives';
284 $archivebase = $config{archivebase} if defined $config{archivebase};
285 $archivebase = $params{archivebase} if defined $params{archivebase};
287 # calculate URL's for previous and next years
288 my ($url, $purl, $nurl)=("$params{year}",'','');
289 if (exists $pagesources{"$archivebase/$params{year}"}) {
290 $url = htmllink($params{page}, $params{destpage},
291 "$archivebase/$params{year}",
293 linktext => $params{year},
294 title => $params{year});
296 add_depends($params{page}, "$archivebase/$params{year}", deptype("presence"));
297 if (exists $pagesources{"$archivebase/$pyear"}) {
298 $purl = htmllink($params{page}, $params{destpage},
299 "$archivebase/$pyear",
301 linktext => "\←",
304 add_depends($params{page}, "$archivebase/$pyear", deptype("presence"));
305 if (exists $pagesources{"$archivebase/$nyear"}) {
306 $nurl = htmllink($params{page}, $params{destpage},
307 "$archivebase/$nyear",
309 linktext => "\→",
312 add_depends($params{page}, "$archivebase/$nyear", deptype("presence"));
314 # Start producing the year calendar
315 my $m=$params{months_per_row}-2;
317 <table class="year-calendar">
319 <th class="year-calendar-arrow">$purl</th>
320 <th class="year-calendar-head" colspan="$m">$url</th>
321 <th class="year-calendar-arrow">$nurl</th>
324 <th class="year-calendar-subhead" colspan="$params{months_per_row}">Months</th>
328 for (my $month = 1; $month <= 12; $month++) {
329 my @day=localtime(timelocal(0,0,0,15,$month-1,$params{year}-1900));
331 my $monthname = strftime_utf8("%B", @day);
332 my $monthabbr = strftime_utf8("%b", @day);
333 $calendar.=qq{\t<tr>\n} if ($month % $params{months_per_row} == 1);
335 my $mtag=sprintf("%02d", $month);
336 if ($month == $params{month} && $thisyear == $params{year}) {
337 $tag = 'year-calendar-this-month';
339 elsif ($pagesources{"$archivebase/$params{year}/$mtag"}) {
340 $tag = 'year-calendar-month-link';
342 elsif ($future_month && $month >= $future_month) {
343 $tag = 'year-calendar-month-future';
346 $tag = 'year-calendar-month-nolink';
349 if ($pagesources{"$archivebase/$params{year}/$mtag"} &&
350 $post_months[$mtag]) {
351 $murl = htmllink($params{page}, $params{destpage},
352 "$archivebase/$params{year}/$mtag",
354 linktext => $monthabbr,
355 title => $monthname);
356 $calendar.=qq{\t<td class="$tag">};
358 $calendar.=qq{\t</td>\n};
361 $calendar.=qq{\t<td class="$tag">$monthabbr</td>\n};
363 add_depends($params{page}, "$archivebase/$params{year}/$mtag",
364 deptype("presence"));
366 $calendar.=qq{\t</tr>\n} if ($month % $params{months_per_row} == 0);
376 sub setnextchange ($$) {
380 if (! exists $pagestate{$page}{calendar}{nextchange} ||
381 $pagestate{$page}{calendar}{nextchange} > $timestamp) {
382 $pagestate{$page}{calendar}{nextchange}=$timestamp;
389 my $thisyear=1900 + $now[5];
390 my $thismonth=1 + $now[4];
392 $params{pages} = "*" unless defined $params{pages};
393 $params{type} = "month" unless defined $params{type};
394 $params{week_start_day} = 0 unless defined $params{week_start_day};
395 $params{months_per_row} = 3 unless defined $params{months_per_row};
396 $params{year} = $thisyear unless defined $params{year};
397 $params{month} = $thismonth unless defined $params{month};
400 if ($params{year} < 1) {
402 $params{year}=$thisyear+$params{year};
405 if ($params{month} < 1) {
407 my $monthoff=$params{month};
408 $params{month}=($thismonth+$monthoff) % 12;
409 $params{month}=12 if $params{month}==0;
410 my $yearoff=POSIX::ceil(($thismonth-$params{month}) / -12)
411 - int($monthoff / 12);
412 $params{year}-=$yearoff;
415 $params{month} = sprintf("%02d", $params{month});
417 if ($params{type} eq 'month' && $params{year} == $thisyear
418 && $params{month} == $thismonth) {
419 # calendar for current month, updates next midnight
420 setnextchange($params{destpage}, ($time
421 + (60 - $now[0]) # seconds
422 + (59 - $now[1]) * 60 # minutes
423 + (23 - $now[2]) * 60 * 60 # hours
426 elsif ($params{type} eq 'month' &&
427 (($params{year} == $thisyear && $params{month} > $thismonth) ||
428 $params{year} > $thisyear)) {
429 # calendar for upcoming month, updates 1st of that month
430 setnextchange($params{destpage},
431 timelocal(0, 0, 0, 1, $params{month}-1, $params{year}));
433 elsif (($params{type} eq 'year' && $params{year} == $thisyear) ||
435 # Calendar for current year updates 1st of next month.
436 # Any calendar relative to the current month also updates
438 if ($thismonth < 12) {
439 setnextchange($params{destpage},
440 timelocal(0, 0, 0, 1, $thismonth+1-1, $params{year}));
443 setnextchange($params{destpage},
444 timelocal(0, 0, 0, 1, 1-1, $params{year}+1));
447 elsif ($relativeyear) {
448 # Any calendar relative to the current year updates 1st
450 setnextchange($params{destpage},
451 timelocal(0, 0, 0, 1, 1-1, $thisyear+1));
453 elsif ($params{type} eq 'year' && $params{year} > $thisyear) {
454 # calendar for upcoming year, updates 1st of that year
455 setnextchange($params{destpage},
456 timelocal(0, 0, 0, 1, 1-1, $params{year}));
459 # calendar for past month or year, does not need
461 delete $pagestate{$params{destpage}}{calendar};
465 if ($params{type} eq 'month') {
466 $calendar=format_month(%params);
468 elsif ($params{type} eq 'year') {
469 $calendar=format_year(%params);
472 return "\n<div><div class=\"calendar\">$calendar</div></div>\n";
476 my $needsbuild=shift;
477 foreach my $page (keys %pagestate) {
478 if (exists $pagestate{$page}{calendar}{nextchange}) {
479 if ($pagestate{$page}{calendar}{nextchange} <= $time) {
480 # force a rebuild so the calendar shows
482 push @$needsbuild, $pagesources{$page};
484 if (exists $pagesources{$page} &&
485 grep { $_ eq $pagesources{$page} } @$needsbuild) {
486 # remove state, will be re-added if
487 # the calendar is still there during the
489 delete $pagestate{$page}{calendar};