paul@446 | 1 | #!/usr/bin/env python |
paul@446 | 2 | |
paul@446 | 3 | """ |
paul@446 | 4 | A Web interface to an event calendar. |
paul@446 | 5 | |
paul@446 | 6 | Copyright (C) 2014, 2015 Paul Boddie <paul@boddie.org.uk> |
paul@446 | 7 | |
paul@446 | 8 | This program is free software; you can redistribute it and/or modify it under |
paul@446 | 9 | the terms of the GNU General Public License as published by the Free Software |
paul@446 | 10 | Foundation; either version 3 of the License, or (at your option) any later |
paul@446 | 11 | version. |
paul@446 | 12 | |
paul@446 | 13 | This program is distributed in the hope that it will be useful, but WITHOUT |
paul@446 | 14 | ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
paul@446 | 15 | FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
paul@446 | 16 | details. |
paul@446 | 17 | |
paul@446 | 18 | You should have received a copy of the GNU General Public License along with |
paul@446 | 19 | this program. If not, see <http://www.gnu.org/licenses/>. |
paul@446 | 20 | """ |
paul@446 | 21 | |
paul@446 | 22 | from datetime import datetime |
paul@446 | 23 | from imiptools.data import get_address, get_uri, uri_values |
paul@446 | 24 | from imiptools.dates import format_datetime, get_datetime, \ |
paul@446 | 25 | get_datetime_item, get_end_of_day, get_start_of_day, \ |
paul@446 | 26 | get_start_of_next_day, get_timestamp, ends_on_same_day, \ |
paul@446 | 27 | to_timezone |
paul@446 | 28 | from imiptools.period import add_day_start_points, add_empty_days, add_slots, \ |
paul@458 | 29 | convert_periods, get_scale, get_slots, get_spans, \ |
paul@458 | 30 | partition_by_day, Point |
paul@446 | 31 | from imipweb.resource import Resource |
paul@446 | 32 | |
paul@446 | 33 | class CalendarPage(Resource): |
paul@446 | 34 | |
paul@446 | 35 | "A request handler for the calendar page." |
paul@446 | 36 | |
paul@446 | 37 | # Request logic methods. |
paul@446 | 38 | |
paul@446 | 39 | def handle_newevent(self): |
paul@446 | 40 | |
paul@446 | 41 | """ |
paul@446 | 42 | Handle any new event operation, creating a new event and redirecting to |
paul@446 | 43 | the event page for further activity. |
paul@446 | 44 | """ |
paul@446 | 45 | |
paul@446 | 46 | # Handle a submitted form. |
paul@446 | 47 | |
paul@446 | 48 | args = self.env.get_args() |
paul@446 | 49 | |
paul@446 | 50 | if not args.has_key("newevent"): |
paul@446 | 51 | return |
paul@446 | 52 | |
paul@446 | 53 | # Create a new event using the available information. |
paul@446 | 54 | |
paul@446 | 55 | slots = args.get("slot", []) |
paul@446 | 56 | participants = args.get("participants", []) |
paul@446 | 57 | |
paul@446 | 58 | if not slots: |
paul@446 | 59 | return |
paul@446 | 60 | |
paul@446 | 61 | # Obtain the user's timezone. |
paul@446 | 62 | |
paul@446 | 63 | tzid = self.get_tzid() |
paul@446 | 64 | |
paul@446 | 65 | # Coalesce the selected slots. |
paul@446 | 66 | |
paul@446 | 67 | slots.sort() |
paul@446 | 68 | coalesced = [] |
paul@446 | 69 | last = None |
paul@446 | 70 | |
paul@446 | 71 | for slot in slots: |
paul@446 | 72 | start, end = slot.split("-") |
paul@446 | 73 | start = get_datetime(start, {"TZID" : tzid}) |
paul@446 | 74 | end = end and get_datetime(end, {"TZID" : tzid}) or get_start_of_next_day(start, tzid) |
paul@446 | 75 | |
paul@446 | 76 | if last: |
paul@446 | 77 | last_start, last_end = last |
paul@446 | 78 | |
paul@446 | 79 | # Merge adjacent dates and datetimes. |
paul@446 | 80 | |
paul@446 | 81 | if start == last_end or \ |
paul@446 | 82 | not isinstance(start, datetime) and \ |
paul@446 | 83 | get_start_of_day(last_end, tzid) == get_start_of_day(start, tzid): |
paul@446 | 84 | |
paul@446 | 85 | last = last_start, end |
paul@446 | 86 | continue |
paul@446 | 87 | |
paul@446 | 88 | # Handle datetimes within dates. |
paul@446 | 89 | # Datetime periods are within single days and are therefore |
paul@446 | 90 | # discarded. |
paul@446 | 91 | |
paul@446 | 92 | elif not isinstance(last_start, datetime) and \ |
paul@446 | 93 | get_start_of_day(start, tzid) == get_start_of_day(last_start, tzid): |
paul@446 | 94 | |
paul@446 | 95 | continue |
paul@446 | 96 | |
paul@446 | 97 | # Add separate dates and datetimes. |
paul@446 | 98 | |
paul@446 | 99 | else: |
paul@446 | 100 | coalesced.append(last) |
paul@446 | 101 | |
paul@446 | 102 | last = start, end |
paul@446 | 103 | |
paul@446 | 104 | if last: |
paul@446 | 105 | coalesced.append(last) |
paul@446 | 106 | |
paul@446 | 107 | # Invent a unique identifier. |
paul@446 | 108 | |
paul@446 | 109 | utcnow = get_timestamp() |
paul@446 | 110 | uid = "imip-agent-%s-%s" % (utcnow, get_address(self.user)) |
paul@446 | 111 | |
paul@446 | 112 | # Create a calendar object and store it as a request. |
paul@446 | 113 | |
paul@446 | 114 | record = [] |
paul@446 | 115 | rwrite = record.append |
paul@446 | 116 | |
paul@446 | 117 | # Define a single occurrence if only one coalesced slot exists. |
paul@446 | 118 | |
paul@446 | 119 | start, end = coalesced[0] |
paul@446 | 120 | start_value, start_attr = get_datetime_item(start, tzid) |
paul@446 | 121 | end_value, end_attr = get_datetime_item(end, tzid) |
paul@446 | 122 | |
paul@446 | 123 | rwrite(("UID", {}, uid)) |
paul@446 | 124 | rwrite(("SUMMARY", {}, "New event at %s" % utcnow)) |
paul@446 | 125 | rwrite(("DTSTAMP", {}, utcnow)) |
paul@446 | 126 | rwrite(("DTSTART", start_attr, start_value)) |
paul@446 | 127 | rwrite(("DTEND", end_attr, end_value)) |
paul@446 | 128 | rwrite(("ORGANIZER", {}, self.user)) |
paul@446 | 129 | |
paul@446 | 130 | participants = uri_values(filter(None, participants)) |
paul@446 | 131 | |
paul@446 | 132 | for participant in participants: |
paul@446 | 133 | rwrite(("ATTENDEE", {"RSVP" : "TRUE", "PARTSTAT" : "NEEDS-ACTION"}, participant)) |
paul@446 | 134 | |
paul@446 | 135 | if self.user not in participants: |
paul@446 | 136 | rwrite(("ATTENDEE", {"PARTSTAT" : "ACCEPTED"}, self.user)) |
paul@446 | 137 | |
paul@446 | 138 | # Define additional occurrences if many slots are defined. |
paul@446 | 139 | |
paul@446 | 140 | rdates = [] |
paul@446 | 141 | |
paul@446 | 142 | for start, end in coalesced[1:]: |
paul@446 | 143 | start_value, start_attr = get_datetime_item(start, tzid) |
paul@446 | 144 | end_value, end_attr = get_datetime_item(end, tzid) |
paul@446 | 145 | rdates.append("%s/%s" % (start_value, end_value)) |
paul@446 | 146 | |
paul@446 | 147 | if rdates: |
paul@446 | 148 | rwrite(("RDATE", {"VALUE" : "PERIOD", "TZID" : tzid}, rdates)) |
paul@446 | 149 | |
paul@446 | 150 | node = ("VEVENT", {}, record) |
paul@446 | 151 | |
paul@446 | 152 | self.store.set_event(self.user, uid, None, node=node) |
paul@446 | 153 | self.store.queue_request(self.user, uid) |
paul@446 | 154 | |
paul@446 | 155 | # Redirect to the object (or the first of the objects), where instead of |
paul@446 | 156 | # attendee controls, there will be organiser controls. |
paul@446 | 157 | |
paul@446 | 158 | self.redirect(self.link_to(uid)) |
paul@446 | 159 | |
paul@446 | 160 | # Page fragment methods. |
paul@446 | 161 | |
paul@446 | 162 | def show_requests_on_page(self): |
paul@446 | 163 | |
paul@446 | 164 | "Show requests for the current user." |
paul@446 | 165 | |
paul@446 | 166 | page = self.page |
paul@446 | 167 | |
paul@446 | 168 | # NOTE: This list could be more informative, but it is envisaged that |
paul@446 | 169 | # NOTE: the requests would be visited directly anyway. |
paul@446 | 170 | |
paul@446 | 171 | requests = self._get_requests() |
paul@446 | 172 | |
paul@446 | 173 | page.div(id="pending-requests") |
paul@446 | 174 | |
paul@446 | 175 | if requests: |
paul@446 | 176 | page.p("Pending requests:") |
paul@446 | 177 | |
paul@446 | 178 | page.ul() |
paul@446 | 179 | |
paul@446 | 180 | for uid, recurrenceid in requests: |
paul@446 | 181 | obj = self._get_object(uid, recurrenceid) |
paul@446 | 182 | if obj: |
paul@446 | 183 | page.li() |
paul@446 | 184 | page.a(obj.get_value("SUMMARY"), href="#request-%s-%s" % (uid, recurrenceid or "")) |
paul@446 | 185 | page.li.close() |
paul@446 | 186 | |
paul@446 | 187 | page.ul.close() |
paul@446 | 188 | |
paul@446 | 189 | else: |
paul@446 | 190 | page.p("There are no pending requests.") |
paul@446 | 191 | |
paul@446 | 192 | page.div.close() |
paul@446 | 193 | |
paul@446 | 194 | def show_participants_on_page(self): |
paul@446 | 195 | |
paul@446 | 196 | "Show participants for scheduling purposes." |
paul@446 | 197 | |
paul@446 | 198 | page = self.page |
paul@446 | 199 | args = self.env.get_args() |
paul@446 | 200 | participants = args.get("participants", []) |
paul@446 | 201 | |
paul@446 | 202 | try: |
paul@446 | 203 | for name, value in args.items(): |
paul@446 | 204 | if name.startswith("remove-participant-"): |
paul@446 | 205 | i = int(name[len("remove-participant-"):]) |
paul@446 | 206 | del participants[i] |
paul@446 | 207 | break |
paul@446 | 208 | except ValueError: |
paul@446 | 209 | pass |
paul@446 | 210 | |
paul@446 | 211 | # Trim empty participants. |
paul@446 | 212 | |
paul@446 | 213 | while participants and not participants[-1].strip(): |
paul@446 | 214 | participants.pop() |
paul@446 | 215 | |
paul@446 | 216 | # Show any specified participants together with controls to remove and |
paul@446 | 217 | # add participants. |
paul@446 | 218 | |
paul@446 | 219 | page.div(id="participants") |
paul@446 | 220 | |
paul@446 | 221 | page.p("Participants for scheduling:") |
paul@446 | 222 | |
paul@446 | 223 | for i, participant in enumerate(participants): |
paul@446 | 224 | page.p() |
paul@446 | 225 | page.input(name="participants", type="text", value=participant) |
paul@446 | 226 | page.input(name="remove-participant-%d" % i, type="submit", value="Remove") |
paul@446 | 227 | page.p.close() |
paul@446 | 228 | |
paul@446 | 229 | page.p() |
paul@446 | 230 | page.input(name="participants", type="text") |
paul@446 | 231 | page.input(name="add-participant", type="submit", value="Add") |
paul@446 | 232 | page.p.close() |
paul@446 | 233 | |
paul@446 | 234 | page.div.close() |
paul@446 | 235 | |
paul@446 | 236 | return participants |
paul@446 | 237 | |
paul@446 | 238 | # Full page output methods. |
paul@446 | 239 | |
paul@446 | 240 | def show(self): |
paul@446 | 241 | |
paul@446 | 242 | "Show the calendar for the current user." |
paul@446 | 243 | |
paul@446 | 244 | handled = self.handle_newevent() |
paul@446 | 245 | |
paul@446 | 246 | self.new_page(title="Calendar") |
paul@446 | 247 | page = self.page |
paul@446 | 248 | |
paul@446 | 249 | # Form controls are used in various places on the calendar page. |
paul@446 | 250 | |
paul@446 | 251 | page.form(method="POST") |
paul@446 | 252 | |
paul@446 | 253 | self.show_requests_on_page() |
paul@446 | 254 | participants = self.show_participants_on_page() |
paul@446 | 255 | |
paul@446 | 256 | # Show a button for scheduling a new event. |
paul@446 | 257 | |
paul@446 | 258 | page.p(class_="controls") |
paul@446 | 259 | page.input(name="newevent", type="submit", value="New event", id="newevent", accesskey="N") |
paul@446 | 260 | page.p.close() |
paul@446 | 261 | |
paul@446 | 262 | # Show controls for hiding empty days and busy slots. |
paul@446 | 263 | # The positioning of the control, paragraph and table are important here. |
paul@446 | 264 | |
paul@446 | 265 | page.input(name="showdays", type="checkbox", value="show", id="showdays", accesskey="D") |
paul@446 | 266 | page.input(name="hidebusy", type="checkbox", value="hide", id="hidebusy", accesskey="B") |
paul@446 | 267 | |
paul@446 | 268 | page.p(class_="controls") |
paul@446 | 269 | page.label("Hide busy time periods", for_="hidebusy", class_="hidebusy enable") |
paul@446 | 270 | page.label("Show busy time periods", for_="hidebusy", class_="hidebusy disable") |
paul@446 | 271 | page.label("Show empty days", for_="showdays", class_="showdays disable") |
paul@446 | 272 | page.label("Hide empty days", for_="showdays", class_="showdays enable") |
paul@446 | 273 | page.input(name="reset", type="submit", value="Clear selections", id="reset") |
paul@446 | 274 | page.label("Clear selections", for_="reset", class_="reset") |
paul@446 | 275 | page.p.close() |
paul@446 | 276 | |
paul@446 | 277 | freebusy = self.store.get_freebusy(self.user) |
paul@446 | 278 | |
paul@446 | 279 | if not freebusy: |
paul@446 | 280 | page.p("No events scheduled.") |
paul@446 | 281 | return |
paul@446 | 282 | |
paul@446 | 283 | # Obtain the user's timezone. |
paul@446 | 284 | |
paul@446 | 285 | tzid = self.get_tzid() |
paul@446 | 286 | |
paul@446 | 287 | # Day view: start at the earliest known day and produce days until the |
paul@446 | 288 | # latest known day, perhaps with expandable sections of empty days. |
paul@446 | 289 | |
paul@446 | 290 | # Month view: start at the earliest known month and produce months until |
paul@446 | 291 | # the latest known month, perhaps with expandable sections of empty |
paul@446 | 292 | # months. |
paul@446 | 293 | |
paul@446 | 294 | # Details of users to invite to new events could be superimposed on the |
paul@446 | 295 | # calendar. |
paul@446 | 296 | |
paul@446 | 297 | # Requests are listed and linked to their tentative positions in the |
paul@446 | 298 | # calendar. Other participants are also shown. |
paul@446 | 299 | |
paul@446 | 300 | request_summary = self._get_request_summary() |
paul@446 | 301 | |
paul@446 | 302 | period_groups = [request_summary, freebusy] |
paul@446 | 303 | period_group_types = ["request", "freebusy"] |
paul@446 | 304 | period_group_sources = ["Pending requests", "Your schedule"] |
paul@446 | 305 | |
paul@446 | 306 | for i, participant in enumerate(participants): |
paul@446 | 307 | period_groups.append(self.store.get_freebusy_for_other(self.user, get_uri(participant))) |
paul@446 | 308 | period_group_types.append("freebusy-part%d" % i) |
paul@446 | 309 | period_group_sources.append(participant) |
paul@446 | 310 | |
paul@446 | 311 | groups = [] |
paul@446 | 312 | group_columns = [] |
paul@446 | 313 | group_types = period_group_types |
paul@446 | 314 | group_sources = period_group_sources |
paul@446 | 315 | all_points = set() |
paul@446 | 316 | |
paul@446 | 317 | # Obtain time point information for each group of periods. |
paul@446 | 318 | |
paul@446 | 319 | for periods in period_groups: |
paul@458 | 320 | convert_periods(periods, tzid) |
paul@446 | 321 | |
paul@446 | 322 | # Get the time scale with start and end points. |
paul@446 | 323 | |
paul@446 | 324 | scale = get_scale(periods) |
paul@446 | 325 | |
paul@446 | 326 | # Get the time slots for the periods. |
paul@456 | 327 | # Time slots are collections of Point objects with lists of active |
paul@456 | 328 | # periods. |
paul@446 | 329 | |
paul@446 | 330 | slots = get_slots(scale) |
paul@446 | 331 | |
paul@446 | 332 | # Add start of day time points for multi-day periods. |
paul@446 | 333 | |
paul@446 | 334 | add_day_start_points(slots, tzid) |
paul@446 | 335 | |
paul@446 | 336 | # Record the slots and all time points employed. |
paul@446 | 337 | |
paul@446 | 338 | groups.append(slots) |
paul@456 | 339 | all_points.update([point for point, active in slots]) |
paul@446 | 340 | |
paul@446 | 341 | # Partition the groups into days. |
paul@446 | 342 | |
paul@446 | 343 | days = {} |
paul@446 | 344 | partitioned_groups = [] |
paul@446 | 345 | partitioned_group_types = [] |
paul@446 | 346 | partitioned_group_sources = [] |
paul@446 | 347 | |
paul@446 | 348 | for slots, group_type, group_source in zip(groups, group_types, group_sources): |
paul@446 | 349 | |
paul@446 | 350 | # Propagate time points to all groups of time slots. |
paul@446 | 351 | |
paul@446 | 352 | add_slots(slots, all_points) |
paul@446 | 353 | |
paul@446 | 354 | # Count the number of columns employed by the group. |
paul@446 | 355 | |
paul@446 | 356 | columns = 0 |
paul@446 | 357 | |
paul@446 | 358 | # Partition the time slots by day. |
paul@446 | 359 | |
paul@446 | 360 | partitioned = {} |
paul@446 | 361 | |
paul@446 | 362 | for day, day_slots in partition_by_day(slots).items(): |
paul@446 | 363 | |
paul@446 | 364 | # Construct a list of time intervals within the day. |
paul@446 | 365 | |
paul@446 | 366 | intervals = [] |
paul@449 | 367 | |
paul@449 | 368 | # Convert each partition to a mapping from points to active |
paul@449 | 369 | # periods. |
paul@449 | 370 | |
paul@449 | 371 | partitioned[day] = day_points = {} |
paul@449 | 372 | |
paul@446 | 373 | last = None |
paul@446 | 374 | |
paul@455 | 375 | for point, active in day_slots: |
paul@446 | 376 | columns = max(columns, len(active)) |
paul@455 | 377 | day_points[point] = active |
paul@451 | 378 | |
paul@446 | 379 | if last: |
paul@446 | 380 | intervals.append((last, point)) |
paul@449 | 381 | |
paul@455 | 382 | last = point |
paul@446 | 383 | |
paul@446 | 384 | if last: |
paul@446 | 385 | intervals.append((last, None)) |
paul@446 | 386 | |
paul@446 | 387 | if not days.has_key(day): |
paul@446 | 388 | days[day] = set() |
paul@446 | 389 | |
paul@446 | 390 | # Record the divisions or intervals within each day. |
paul@446 | 391 | |
paul@446 | 392 | days[day].update(intervals) |
paul@446 | 393 | |
paul@446 | 394 | # Only include the requests column if it provides objects. |
paul@446 | 395 | |
paul@446 | 396 | if group_type != "request" or columns: |
paul@446 | 397 | group_columns.append(columns) |
paul@446 | 398 | partitioned_groups.append(partitioned) |
paul@446 | 399 | partitioned_group_types.append(group_type) |
paul@446 | 400 | partitioned_group_sources.append(group_source) |
paul@446 | 401 | |
paul@446 | 402 | # Add empty days. |
paul@446 | 403 | |
paul@446 | 404 | add_empty_days(days, tzid) |
paul@446 | 405 | |
paul@446 | 406 | # Show the controls permitting day selection. |
paul@446 | 407 | |
paul@446 | 408 | self.show_calendar_day_controls(days) |
paul@446 | 409 | |
paul@446 | 410 | # Show the calendar itself. |
paul@446 | 411 | |
paul@446 | 412 | page.table(cellspacing=5, cellpadding=5, class_="calendar") |
paul@446 | 413 | self.show_calendar_participant_headings(partitioned_group_types, partitioned_group_sources, group_columns) |
paul@446 | 414 | self.show_calendar_days(days, partitioned_groups, partitioned_group_types, group_columns) |
paul@446 | 415 | page.table.close() |
paul@446 | 416 | |
paul@446 | 417 | # End the form region. |
paul@446 | 418 | |
paul@446 | 419 | page.form.close() |
paul@446 | 420 | |
paul@446 | 421 | # More page fragment methods. |
paul@446 | 422 | |
paul@446 | 423 | def show_calendar_day_controls(self, days): |
paul@446 | 424 | |
paul@446 | 425 | "Show controls for the given 'days' in the calendar." |
paul@446 | 426 | |
paul@446 | 427 | page = self.page |
paul@446 | 428 | slots = self.env.get_args().get("slot", []) |
paul@446 | 429 | |
paul@446 | 430 | for day in days: |
paul@446 | 431 | value, identifier = self._day_value_and_identifier(day) |
paul@446 | 432 | self._slot_selector(value, identifier, slots) |
paul@446 | 433 | |
paul@446 | 434 | # Generate a dynamic stylesheet to allow day selections to colour |
paul@446 | 435 | # specific days. |
paul@446 | 436 | # NOTE: The style details need to be coordinated with the static |
paul@446 | 437 | # NOTE: stylesheet. |
paul@446 | 438 | |
paul@446 | 439 | page.style(type="text/css") |
paul@446 | 440 | |
paul@446 | 441 | for day in days: |
paul@446 | 442 | daystr = format_datetime(day) |
paul@446 | 443 | page.add("""\ |
paul@446 | 444 | input.newevent.selector#day-%s-:checked ~ table label.day.day-%s, |
paul@446 | 445 | input.newevent.selector#day-%s-:checked ~ table label.timepoint.day-%s { |
paul@446 | 446 | background-color: #5f4; |
paul@446 | 447 | text-decoration: underline; |
paul@446 | 448 | } |
paul@446 | 449 | """ % (daystr, daystr, daystr, daystr)) |
paul@446 | 450 | |
paul@446 | 451 | page.style.close() |
paul@446 | 452 | |
paul@446 | 453 | def show_calendar_participant_headings(self, group_types, group_sources, group_columns): |
paul@446 | 454 | |
paul@446 | 455 | """ |
paul@446 | 456 | Show headings for the participants and other scheduling contributors, |
paul@446 | 457 | defined by 'group_types', 'group_sources' and 'group_columns'. |
paul@446 | 458 | """ |
paul@446 | 459 | |
paul@446 | 460 | page = self.page |
paul@446 | 461 | |
paul@446 | 462 | page.colgroup(span=1, id="columns-timeslot") |
paul@446 | 463 | |
paul@446 | 464 | for group_type, columns in zip(group_types, group_columns): |
paul@446 | 465 | page.colgroup(span=max(columns, 1), id="columns-%s" % group_type) |
paul@446 | 466 | |
paul@446 | 467 | page.thead() |
paul@446 | 468 | page.tr() |
paul@446 | 469 | page.th("", class_="emptyheading") |
paul@446 | 470 | |
paul@446 | 471 | for group_type, source, columns in zip(group_types, group_sources, group_columns): |
paul@446 | 472 | page.th(source, |
paul@446 | 473 | class_=(group_type == "request" and "requestheading" or "participantheading"), |
paul@446 | 474 | colspan=max(columns, 1)) |
paul@446 | 475 | |
paul@446 | 476 | page.tr.close() |
paul@446 | 477 | page.thead.close() |
paul@446 | 478 | |
paul@446 | 479 | def show_calendar_days(self, days, partitioned_groups, partitioned_group_types, group_columns): |
paul@446 | 480 | |
paul@446 | 481 | """ |
paul@446 | 482 | Show calendar days, defined by a collection of 'days', the contributing |
paul@446 | 483 | period information as 'partitioned_groups' (partitioned by day), the |
paul@446 | 484 | 'partitioned_group_types' indicating the kind of contribution involved, |
paul@446 | 485 | and the 'group_columns' defining the number of columns in each group. |
paul@446 | 486 | """ |
paul@446 | 487 | |
paul@446 | 488 | page = self.page |
paul@446 | 489 | |
paul@446 | 490 | # Determine the number of columns required. Where participants provide |
paul@446 | 491 | # no columns for events, one still needs to be provided for the |
paul@446 | 492 | # participant itself. |
paul@446 | 493 | |
paul@446 | 494 | all_columns = sum([max(columns, 1) for columns in group_columns]) |
paul@446 | 495 | |
paul@446 | 496 | # Determine the days providing time slots. |
paul@446 | 497 | |
paul@446 | 498 | all_days = days.items() |
paul@446 | 499 | all_days.sort() |
paul@446 | 500 | |
paul@446 | 501 | # Produce a heading and time points for each day. |
paul@446 | 502 | |
paul@446 | 503 | for day, intervals in all_days: |
paul@446 | 504 | groups_for_day = [partitioned.get(day) for partitioned in partitioned_groups] |
paul@446 | 505 | is_empty = True |
paul@446 | 506 | |
paul@446 | 507 | for slots in groups_for_day: |
paul@446 | 508 | if not slots: |
paul@446 | 509 | continue |
paul@446 | 510 | |
paul@446 | 511 | for active in slots.values(): |
paul@446 | 512 | if active: |
paul@446 | 513 | is_empty = False |
paul@446 | 514 | break |
paul@446 | 515 | |
paul@446 | 516 | page.thead(class_="separator%s" % (is_empty and " empty" or "")) |
paul@446 | 517 | page.tr() |
paul@446 | 518 | page.th(class_="dayheading container", colspan=all_columns+1) |
paul@446 | 519 | self._day_heading(day) |
paul@446 | 520 | page.th.close() |
paul@446 | 521 | page.tr.close() |
paul@446 | 522 | page.thead.close() |
paul@446 | 523 | |
paul@446 | 524 | page.tbody(class_="points%s" % (is_empty and " empty" or "")) |
paul@446 | 525 | self.show_calendar_points(intervals, groups_for_day, partitioned_group_types, group_columns) |
paul@446 | 526 | page.tbody.close() |
paul@446 | 527 | |
paul@446 | 528 | def show_calendar_points(self, intervals, groups, group_types, group_columns): |
paul@446 | 529 | |
paul@446 | 530 | """ |
paul@446 | 531 | Show the time 'intervals' along with period information from the given |
paul@446 | 532 | 'groups', having the indicated 'group_types', each with the number of |
paul@446 | 533 | columns given by 'group_columns'. |
paul@446 | 534 | """ |
paul@446 | 535 | |
paul@446 | 536 | page = self.page |
paul@446 | 537 | |
paul@446 | 538 | # Obtain the user's timezone. |
paul@446 | 539 | |
paul@446 | 540 | tzid = self.get_tzid() |
paul@446 | 541 | |
paul@446 | 542 | # Produce a row for each interval. |
paul@446 | 543 | |
paul@446 | 544 | intervals = list(intervals) |
paul@446 | 545 | intervals.sort() |
paul@446 | 546 | |
paul@455 | 547 | for point, endpoint in intervals: |
paul@455 | 548 | continuation = point.point == get_start_of_day(point.point, tzid) |
paul@446 | 549 | |
paul@446 | 550 | # Some rows contain no period details and are marked as such. |
paul@446 | 551 | |
paul@448 | 552 | have_active = False |
paul@448 | 553 | have_active_request = False |
paul@448 | 554 | |
paul@448 | 555 | for slots, group_type in zip(groups, group_types): |
paul@455 | 556 | if slots and slots.get(point): |
paul@448 | 557 | if group_type == "request": |
paul@448 | 558 | have_active_request = True |
paul@448 | 559 | else: |
paul@448 | 560 | have_active = True |
paul@446 | 561 | |
paul@450 | 562 | # Emit properties of the time interval, where post-instant intervals |
paul@450 | 563 | # are also treated as busy. |
paul@450 | 564 | |
paul@446 | 565 | css = " ".join([ |
paul@446 | 566 | "slot", |
paul@455 | 567 | (have_active or point.indicator == Point.REPEATED) and "busy" or \ |
paul@455 | 568 | have_active_request and "suggested" or "empty", |
paul@446 | 569 | continuation and "daystart" or "" |
paul@446 | 570 | ]) |
paul@446 | 571 | |
paul@446 | 572 | page.tr(class_=css) |
paul@455 | 573 | if point.indicator == Point.PRINCIPAL: |
paul@453 | 574 | page.th(class_="timeslot") |
paul@449 | 575 | self._time_point(point, endpoint) |
paul@453 | 576 | else: |
paul@453 | 577 | page.th() |
paul@446 | 578 | page.th.close() |
paul@446 | 579 | |
paul@446 | 580 | # Obtain slots for the time point from each group. |
paul@446 | 581 | |
paul@446 | 582 | for columns, slots, group_type in zip(group_columns, groups, group_types): |
paul@455 | 583 | active = slots and slots.get(point) |
paul@446 | 584 | |
paul@446 | 585 | # Where no periods exist for the given time interval, generate |
paul@446 | 586 | # an empty cell. Where a participant provides no periods at all, |
paul@446 | 587 | # the colspan is adjusted to be 1, not 0. |
paul@446 | 588 | |
paul@446 | 589 | if not active: |
paul@455 | 590 | self._empty_slot(point, endpoint, max(columns, 1)) |
paul@446 | 591 | continue |
paul@446 | 592 | |
paul@446 | 593 | slots = slots.items() |
paul@446 | 594 | slots.sort() |
paul@446 | 595 | spans = get_spans(slots) |
paul@446 | 596 | |
paul@446 | 597 | empty = 0 |
paul@446 | 598 | |
paul@446 | 599 | # Show a column for each active period. |
paul@446 | 600 | |
paul@458 | 601 | for p in active: |
paul@458 | 602 | |
paul@458 | 603 | # The period can be None, meaning an empty column. |
paul@458 | 604 | |
paul@458 | 605 | if p: |
paul@446 | 606 | |
paul@446 | 607 | # Flush empty slots preceding this one. |
paul@446 | 608 | |
paul@446 | 609 | if empty: |
paul@455 | 610 | self._empty_slot(point, endpoint, empty) |
paul@446 | 611 | empty = 0 |
paul@446 | 612 | |
paul@458 | 613 | key = p.get_key() |
paul@446 | 614 | span = spans[key] |
paul@446 | 615 | |
paul@446 | 616 | # Produce a table cell only at the start of the period |
paul@446 | 617 | # or when continued at the start of a day. |
paul@453 | 618 | # Points defining the ends of instant events should |
paul@453 | 619 | # never define the start of new events. |
paul@446 | 620 | |
paul@458 | 621 | if point.indicator == Point.PRINCIPAL and (point.point == p.start or continuation): |
paul@446 | 622 | |
paul@458 | 623 | has_continued = continuation and point.point != p.start |
paul@458 | 624 | will_continue = not ends_on_same_day(point.point, p.end, tzid) |
paul@458 | 625 | is_organiser = p.organiser == self.user |
paul@446 | 626 | |
paul@446 | 627 | css = " ".join([ |
paul@446 | 628 | "event", |
paul@446 | 629 | has_continued and "continued" or "", |
paul@446 | 630 | will_continue and "continues" or "", |
paul@486 | 631 | p.transp == "ORG" and "only-organising" or is_organiser and "organising" or "attending" |
paul@446 | 632 | ]) |
paul@446 | 633 | |
paul@446 | 634 | # Only anchor the first cell of events. |
paul@446 | 635 | # Need to only anchor the first period for a recurring |
paul@446 | 636 | # event. |
paul@446 | 637 | |
paul@458 | 638 | html_id = "%s-%s-%s" % (group_type, p.uid, p.recurrenceid or "") |
paul@446 | 639 | |
paul@458 | 640 | if point.point == p.start and html_id not in self.html_ids: |
paul@446 | 641 | page.td(class_=css, rowspan=span, id=html_id) |
paul@446 | 642 | self.html_ids.add(html_id) |
paul@446 | 643 | else: |
paul@446 | 644 | page.td(class_=css, rowspan=span) |
paul@446 | 645 | |
paul@446 | 646 | # Only link to events if they are not being |
paul@446 | 647 | # updated by requests. |
paul@446 | 648 | |
paul@458 | 649 | if not p.summary or (p.uid, p.recurrenceid) in self._get_requests() and group_type != "request": |
paul@458 | 650 | page.span(p.summary or "(Participant is busy)") |
paul@446 | 651 | else: |
paul@458 | 652 | page.a(p.summary, href=self.link_to(p.uid, p.recurrenceid)) |
paul@446 | 653 | |
paul@446 | 654 | page.td.close() |
paul@446 | 655 | else: |
paul@446 | 656 | empty += 1 |
paul@446 | 657 | |
paul@446 | 658 | # Pad with empty columns. |
paul@446 | 659 | |
paul@446 | 660 | empty = columns - len(active) |
paul@446 | 661 | |
paul@446 | 662 | if empty: |
paul@455 | 663 | self._empty_slot(point, endpoint, empty) |
paul@446 | 664 | |
paul@446 | 665 | page.tr.close() |
paul@446 | 666 | |
paul@446 | 667 | def _day_heading(self, day): |
paul@446 | 668 | |
paul@446 | 669 | """ |
paul@446 | 670 | Generate a heading for 'day' of the following form: |
paul@446 | 671 | |
paul@446 | 672 | <label class="day day-20150203" for="day-20150203">Tuesday, 3 February 2015</label> |
paul@446 | 673 | """ |
paul@446 | 674 | |
paul@446 | 675 | page = self.page |
paul@446 | 676 | daystr = format_datetime(day) |
paul@446 | 677 | value, identifier = self._day_value_and_identifier(day) |
paul@446 | 678 | page.label(self.format_date(day, "full"), class_="day day-%s" % daystr, for_=identifier) |
paul@446 | 679 | |
paul@446 | 680 | def _time_point(self, point, endpoint): |
paul@446 | 681 | |
paul@446 | 682 | """ |
paul@446 | 683 | Generate headings for the 'point' to 'endpoint' period of the following |
paul@446 | 684 | form: |
paul@446 | 685 | |
paul@446 | 686 | <label class="timepoint day-20150203" for="slot-20150203T090000-20150203T100000">09:00:00 CET</label> |
paul@446 | 687 | <span class="endpoint">10:00:00 CET</span> |
paul@446 | 688 | """ |
paul@446 | 689 | |
paul@446 | 690 | page = self.page |
paul@446 | 691 | tzid = self.get_tzid() |
paul@455 | 692 | daystr = format_datetime(point.point.date()) |
paul@446 | 693 | value, identifier = self._slot_value_and_identifier(point, endpoint) |
paul@446 | 694 | slots = self.env.get_args().get("slot", []) |
paul@446 | 695 | self._slot_selector(value, identifier, slots) |
paul@455 | 696 | page.label(self.format_time(point.point, "long"), class_="timepoint day-%s" % daystr, for_=identifier) |
paul@455 | 697 | page.span(self.format_time(endpoint and endpoint.point or get_end_of_day(point.point, tzid), "long"), class_="endpoint") |
paul@446 | 698 | |
paul@446 | 699 | def _slot_selector(self, value, identifier, slots): |
paul@446 | 700 | |
paul@446 | 701 | """ |
paul@446 | 702 | Provide a timeslot control having the given 'value', employing the |
paul@446 | 703 | indicated HTML 'identifier', and using the given 'slots' collection |
paul@446 | 704 | to select any control whose 'value' is in this collection, unless the |
paul@446 | 705 | "reset" request parameter has been asserted. |
paul@446 | 706 | """ |
paul@446 | 707 | |
paul@446 | 708 | reset = self.env.get_args().has_key("reset") |
paul@446 | 709 | page = self.page |
paul@446 | 710 | if not reset and value in slots: |
paul@446 | 711 | page.input(name="slot", type="checkbox", value=value, id=identifier, class_="newevent selector", checked="checked") |
paul@446 | 712 | else: |
paul@446 | 713 | page.input(name="slot", type="checkbox", value=value, id=identifier, class_="newevent selector") |
paul@446 | 714 | |
paul@455 | 715 | def _empty_slot(self, point, endpoint, colspan): |
paul@446 | 716 | |
paul@453 | 717 | """ |
paul@453 | 718 | Show an empty slot cell for the given 'point' and 'endpoint', with the |
paul@455 | 719 | given 'colspan' configuring the cell's appearance. |
paul@453 | 720 | """ |
paul@446 | 721 | |
paul@446 | 722 | page = self.page |
paul@455 | 723 | page.td(class_="empty%s" % (point.indicator == Point.PRINCIPAL and " container" or ""), colspan=colspan) |
paul@455 | 724 | if point.indicator == Point.PRINCIPAL: |
paul@453 | 725 | value, identifier = self._slot_value_and_identifier(point, endpoint) |
paul@453 | 726 | page.label("Select/deselect period", class_="newevent popup", for_=identifier) |
paul@453 | 727 | page.td.close() |
paul@446 | 728 | |
paul@446 | 729 | def _day_value_and_identifier(self, day): |
paul@446 | 730 | |
paul@446 | 731 | "Return a day value and HTML identifier for the given 'day'." |
paul@446 | 732 | |
paul@446 | 733 | value = "%s-" % format_datetime(day) |
paul@446 | 734 | identifier = "day-%s" % value |
paul@446 | 735 | return value, identifier |
paul@446 | 736 | |
paul@446 | 737 | def _slot_value_and_identifier(self, point, endpoint): |
paul@446 | 738 | |
paul@446 | 739 | """ |
paul@446 | 740 | Return a slot value and HTML identifier for the given 'point' and |
paul@446 | 741 | 'endpoint'. |
paul@446 | 742 | """ |
paul@446 | 743 | |
paul@455 | 744 | value = "%s-%s" % (format_datetime(point.point), endpoint and format_datetime(endpoint.point) or "") |
paul@446 | 745 | identifier = "slot-%s" % value |
paul@446 | 746 | return value, identifier |
paul@446 | 747 | |
paul@446 | 748 | # vim: tabstop=4 expandtab shiftwidth=4 |