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 | self.new_page(title="Calendar") |
paul@446 | 245 | page = self.page |
paul@446 | 246 | |
paul@513 | 247 | handled = self.handle_newevent() |
paul@513 | 248 | freebusy = self.store.get_freebusy(self.user) |
paul@513 | 249 | |
paul@513 | 250 | if not freebusy: |
paul@513 | 251 | page.p("No events scheduled.") |
paul@513 | 252 | return |
paul@513 | 253 | |
paul@446 | 254 | # Form controls are used in various places on the calendar page. |
paul@446 | 255 | |
paul@446 | 256 | page.form(method="POST") |
paul@446 | 257 | |
paul@446 | 258 | self.show_requests_on_page() |
paul@446 | 259 | participants = self.show_participants_on_page() |
paul@446 | 260 | |
paul@446 | 261 | # Obtain the user's timezone. |
paul@446 | 262 | |
paul@446 | 263 | tzid = self.get_tzid() |
paul@446 | 264 | |
paul@446 | 265 | # Day view: start at the earliest known day and produce days until the |
paul@446 | 266 | # latest known day, perhaps with expandable sections of empty days. |
paul@446 | 267 | |
paul@446 | 268 | # Month view: start at the earliest known month and produce months until |
paul@446 | 269 | # the latest known month, perhaps with expandable sections of empty |
paul@446 | 270 | # months. |
paul@446 | 271 | |
paul@446 | 272 | # Details of users to invite to new events could be superimposed on the |
paul@446 | 273 | # calendar. |
paul@446 | 274 | |
paul@446 | 275 | # Requests are listed and linked to their tentative positions in the |
paul@446 | 276 | # calendar. Other participants are also shown. |
paul@446 | 277 | |
paul@446 | 278 | request_summary = self._get_request_summary() |
paul@446 | 279 | |
paul@446 | 280 | period_groups = [request_summary, freebusy] |
paul@446 | 281 | period_group_types = ["request", "freebusy"] |
paul@446 | 282 | period_group_sources = ["Pending requests", "Your schedule"] |
paul@446 | 283 | |
paul@446 | 284 | for i, participant in enumerate(participants): |
paul@446 | 285 | period_groups.append(self.store.get_freebusy_for_other(self.user, get_uri(participant))) |
paul@446 | 286 | period_group_types.append("freebusy-part%d" % i) |
paul@446 | 287 | period_group_sources.append(participant) |
paul@446 | 288 | |
paul@446 | 289 | groups = [] |
paul@446 | 290 | group_columns = [] |
paul@446 | 291 | group_types = period_group_types |
paul@446 | 292 | group_sources = period_group_sources |
paul@446 | 293 | all_points = set() |
paul@446 | 294 | |
paul@446 | 295 | # Obtain time point information for each group of periods. |
paul@446 | 296 | |
paul@446 | 297 | for periods in period_groups: |
paul@458 | 298 | convert_periods(periods, tzid) |
paul@446 | 299 | |
paul@446 | 300 | # Get the time scale with start and end points. |
paul@446 | 301 | |
paul@446 | 302 | scale = get_scale(periods) |
paul@446 | 303 | |
paul@446 | 304 | # Get the time slots for the periods. |
paul@456 | 305 | # Time slots are collections of Point objects with lists of active |
paul@456 | 306 | # periods. |
paul@446 | 307 | |
paul@446 | 308 | slots = get_slots(scale) |
paul@446 | 309 | |
paul@446 | 310 | # Add start of day time points for multi-day periods. |
paul@446 | 311 | |
paul@446 | 312 | add_day_start_points(slots, tzid) |
paul@446 | 313 | |
paul@446 | 314 | # Record the slots and all time points employed. |
paul@446 | 315 | |
paul@446 | 316 | groups.append(slots) |
paul@456 | 317 | all_points.update([point for point, active in slots]) |
paul@446 | 318 | |
paul@446 | 319 | # Partition the groups into days. |
paul@446 | 320 | |
paul@446 | 321 | days = {} |
paul@446 | 322 | partitioned_groups = [] |
paul@446 | 323 | partitioned_group_types = [] |
paul@446 | 324 | partitioned_group_sources = [] |
paul@446 | 325 | |
paul@446 | 326 | for slots, group_type, group_source in zip(groups, group_types, group_sources): |
paul@446 | 327 | |
paul@446 | 328 | # Propagate time points to all groups of time slots. |
paul@446 | 329 | |
paul@446 | 330 | add_slots(slots, all_points) |
paul@446 | 331 | |
paul@446 | 332 | # Count the number of columns employed by the group. |
paul@446 | 333 | |
paul@446 | 334 | columns = 0 |
paul@446 | 335 | |
paul@446 | 336 | # Partition the time slots by day. |
paul@446 | 337 | |
paul@446 | 338 | partitioned = {} |
paul@446 | 339 | |
paul@446 | 340 | for day, day_slots in partition_by_day(slots).items(): |
paul@446 | 341 | |
paul@446 | 342 | # Construct a list of time intervals within the day. |
paul@446 | 343 | |
paul@446 | 344 | intervals = [] |
paul@449 | 345 | |
paul@449 | 346 | # Convert each partition to a mapping from points to active |
paul@449 | 347 | # periods. |
paul@449 | 348 | |
paul@449 | 349 | partitioned[day] = day_points = {} |
paul@449 | 350 | |
paul@446 | 351 | last = None |
paul@446 | 352 | |
paul@455 | 353 | for point, active in day_slots: |
paul@446 | 354 | columns = max(columns, len(active)) |
paul@455 | 355 | day_points[point] = active |
paul@451 | 356 | |
paul@446 | 357 | if last: |
paul@446 | 358 | intervals.append((last, point)) |
paul@449 | 359 | |
paul@455 | 360 | last = point |
paul@446 | 361 | |
paul@446 | 362 | if last: |
paul@446 | 363 | intervals.append((last, None)) |
paul@446 | 364 | |
paul@446 | 365 | if not days.has_key(day): |
paul@446 | 366 | days[day] = set() |
paul@446 | 367 | |
paul@446 | 368 | # Record the divisions or intervals within each day. |
paul@446 | 369 | |
paul@446 | 370 | days[day].update(intervals) |
paul@446 | 371 | |
paul@446 | 372 | # Only include the requests column if it provides objects. |
paul@446 | 373 | |
paul@446 | 374 | if group_type != "request" or columns: |
paul@446 | 375 | group_columns.append(columns) |
paul@446 | 376 | partitioned_groups.append(partitioned) |
paul@446 | 377 | partitioned_group_types.append(group_type) |
paul@446 | 378 | partitioned_group_sources.append(group_source) |
paul@446 | 379 | |
paul@446 | 380 | # Add empty days. |
paul@446 | 381 | |
paul@446 | 382 | add_empty_days(days, tzid) |
paul@446 | 383 | |
paul@513 | 384 | # Show the controls permitting day selection as well as the controls |
paul@513 | 385 | # configuring the new event display. |
paul@446 | 386 | |
paul@446 | 387 | self.show_calendar_day_controls(days) |
paul@513 | 388 | self.show_calendar_interval_controls(days) |
paul@513 | 389 | |
paul@513 | 390 | # Show a button for scheduling a new event. |
paul@513 | 391 | |
paul@513 | 392 | page.p(class_="controls") |
paul@513 | 393 | page.input(name="newevent", type="submit", value="New event", id="newevent", class_="newevent-with-periods", accesskey="N") |
paul@513 | 394 | page.span("Select days or periods for a new event.", class_="newevent-no-periods") |
paul@513 | 395 | page.p.close() |
paul@513 | 396 | |
paul@513 | 397 | # Show controls for hiding empty days and busy slots. |
paul@513 | 398 | # The positioning of the control, paragraph and table are important here. |
paul@513 | 399 | |
paul@513 | 400 | page.input(name="showdays", type="checkbox", value="show", id="showdays", accesskey="D") |
paul@513 | 401 | page.input(name="hidebusy", type="checkbox", value="hide", id="hidebusy", accesskey="B") |
paul@513 | 402 | |
paul@513 | 403 | page.p(class_="controls") |
paul@513 | 404 | page.label("Hide busy time periods", for_="hidebusy", class_="hidebusy enable") |
paul@513 | 405 | page.label("Show busy time periods", for_="hidebusy", class_="hidebusy disable") |
paul@513 | 406 | page.label("Show empty days", for_="showdays", class_="showdays disable") |
paul@513 | 407 | page.label("Hide empty days", for_="showdays", class_="showdays enable") |
paul@513 | 408 | page.input(name="reset", type="submit", value="Clear selections", id="reset") |
paul@513 | 409 | page.label("Clear selections", for_="reset", class_="reset newevent-with-periods") |
paul@513 | 410 | page.p.close() |
paul@446 | 411 | |
paul@446 | 412 | # Show the calendar itself. |
paul@446 | 413 | |
paul@446 | 414 | page.table(cellspacing=5, cellpadding=5, class_="calendar") |
paul@446 | 415 | self.show_calendar_participant_headings(partitioned_group_types, partitioned_group_sources, group_columns) |
paul@446 | 416 | self.show_calendar_days(days, partitioned_groups, partitioned_group_types, group_columns) |
paul@446 | 417 | page.table.close() |
paul@446 | 418 | |
paul@446 | 419 | # End the form region. |
paul@446 | 420 | |
paul@446 | 421 | page.form.close() |
paul@446 | 422 | |
paul@446 | 423 | # More page fragment methods. |
paul@446 | 424 | |
paul@446 | 425 | def show_calendar_day_controls(self, days): |
paul@446 | 426 | |
paul@446 | 427 | "Show controls for the given 'days' in the calendar." |
paul@446 | 428 | |
paul@446 | 429 | page = self.page |
paul@446 | 430 | slots = self.env.get_args().get("slot", []) |
paul@446 | 431 | |
paul@446 | 432 | for day in days: |
paul@446 | 433 | value, identifier = self._day_value_and_identifier(day) |
paul@446 | 434 | self._slot_selector(value, identifier, slots) |
paul@446 | 435 | |
paul@446 | 436 | # Generate a dynamic stylesheet to allow day selections to colour |
paul@446 | 437 | # specific days. |
paul@446 | 438 | # NOTE: The style details need to be coordinated with the static |
paul@446 | 439 | # NOTE: stylesheet. |
paul@446 | 440 | |
paul@446 | 441 | page.style(type="text/css") |
paul@446 | 442 | |
paul@513 | 443 | l = [] |
paul@513 | 444 | |
paul@446 | 445 | for day in days: |
paul@513 | 446 | daystr, dayid = self._day_value_and_identifier(day) |
paul@513 | 447 | l.append("""\ |
paul@513 | 448 | input.newevent.selector#%s:checked ~ table label.day.day-%s, |
paul@513 | 449 | input.newevent.selector#%s:checked ~ table label.timepoint.day-%s""" % (dayid, daystr, dayid, daystr)) |
paul@513 | 450 | |
paul@513 | 451 | page.add(",\n".join(l)) |
paul@513 | 452 | page.add(""" { |
paul@446 | 453 | background-color: #5f4; |
paul@446 | 454 | text-decoration: underline; |
paul@446 | 455 | } |
paul@513 | 456 | """) |
paul@513 | 457 | |
paul@513 | 458 | page.style.close() |
paul@513 | 459 | |
paul@513 | 460 | def show_calendar_interval_controls(self, days): |
paul@513 | 461 | |
paul@513 | 462 | "Show controls for the intervals provided by 'days'." |
paul@513 | 463 | |
paul@513 | 464 | page = self.page |
paul@513 | 465 | slots = self.env.get_args().get("slot", []) |
paul@513 | 466 | |
paul@513 | 467 | for day, intervals in days.items(): |
paul@513 | 468 | for point, endpoint in intervals: |
paul@513 | 469 | value, identifier = self._slot_value_and_identifier(point, endpoint) |
paul@513 | 470 | self._slot_selector(value, identifier, slots) |
paul@513 | 471 | |
paul@513 | 472 | # Generate a dynamic stylesheet to allow day selections to colour |
paul@513 | 473 | # specific days. |
paul@513 | 474 | # NOTE: The style details need to be coordinated with the static |
paul@513 | 475 | # NOTE: stylesheet. |
paul@513 | 476 | |
paul@513 | 477 | page.style(type="text/css") |
paul@513 | 478 | |
paul@513 | 479 | l = []; l2 = []; l3 = [] |
paul@513 | 480 | |
paul@513 | 481 | for day, intervals in days.items(): |
paul@513 | 482 | for point, endpoint in intervals: |
paul@513 | 483 | daystr, dayid = self._day_value_and_identifier(day) |
paul@513 | 484 | timestr, timeid = self._slot_value_and_identifier(point, endpoint) |
paul@513 | 485 | l.append("""\ |
paul@513 | 486 | input.newevent.selector#%s:checked ~ p .newevent-no-periods, |
paul@513 | 487 | input.newevent.selector#%s:checked ~ p .newevent-no-periods""" % (dayid, timeid)) |
paul@513 | 488 | l2.append("""\ |
paul@513 | 489 | input.newevent.selector#%s:checked ~ p .newevent-with-periods, |
paul@513 | 490 | input.newevent.selector#%s:checked ~ p .newevent-with-periods""" % (dayid, timeid)) |
paul@513 | 491 | l3.append("""\ |
paul@513 | 492 | input.newevent.selector#%s:checked ~ table label.timepoint[for=%s]""" % (timeid, timeid)) |
paul@513 | 493 | |
paul@513 | 494 | page.add(",\n".join(l)) |
paul@513 | 495 | page.add(""" { |
paul@513 | 496 | display: none; |
paul@513 | 497 | }""") |
paul@513 | 498 | |
paul@513 | 499 | page.add(",\n".join(l2)) |
paul@513 | 500 | page.add(""" { |
paul@513 | 501 | display: inline; |
paul@513 | 502 | } |
paul@513 | 503 | """) |
paul@513 | 504 | |
paul@513 | 505 | page.add(",\n".join(l3)) |
paul@513 | 506 | page.add(""" { |
paul@513 | 507 | background-color: #5f4; |
paul@513 | 508 | text-decoration: underline; |
paul@513 | 509 | } |
paul@513 | 510 | """) |
paul@446 | 511 | |
paul@446 | 512 | page.style.close() |
paul@446 | 513 | |
paul@446 | 514 | def show_calendar_participant_headings(self, group_types, group_sources, group_columns): |
paul@446 | 515 | |
paul@446 | 516 | """ |
paul@446 | 517 | Show headings for the participants and other scheduling contributors, |
paul@446 | 518 | defined by 'group_types', 'group_sources' and 'group_columns'. |
paul@446 | 519 | """ |
paul@446 | 520 | |
paul@446 | 521 | page = self.page |
paul@446 | 522 | |
paul@446 | 523 | page.colgroup(span=1, id="columns-timeslot") |
paul@446 | 524 | |
paul@446 | 525 | for group_type, columns in zip(group_types, group_columns): |
paul@446 | 526 | page.colgroup(span=max(columns, 1), id="columns-%s" % group_type) |
paul@446 | 527 | |
paul@446 | 528 | page.thead() |
paul@446 | 529 | page.tr() |
paul@446 | 530 | page.th("", class_="emptyheading") |
paul@446 | 531 | |
paul@446 | 532 | for group_type, source, columns in zip(group_types, group_sources, group_columns): |
paul@446 | 533 | page.th(source, |
paul@446 | 534 | class_=(group_type == "request" and "requestheading" or "participantheading"), |
paul@446 | 535 | colspan=max(columns, 1)) |
paul@446 | 536 | |
paul@446 | 537 | page.tr.close() |
paul@446 | 538 | page.thead.close() |
paul@446 | 539 | |
paul@446 | 540 | def show_calendar_days(self, days, partitioned_groups, partitioned_group_types, group_columns): |
paul@446 | 541 | |
paul@446 | 542 | """ |
paul@446 | 543 | Show calendar days, defined by a collection of 'days', the contributing |
paul@446 | 544 | period information as 'partitioned_groups' (partitioned by day), the |
paul@446 | 545 | 'partitioned_group_types' indicating the kind of contribution involved, |
paul@446 | 546 | and the 'group_columns' defining the number of columns in each group. |
paul@446 | 547 | """ |
paul@446 | 548 | |
paul@446 | 549 | page = self.page |
paul@446 | 550 | |
paul@446 | 551 | # Determine the number of columns required. Where participants provide |
paul@446 | 552 | # no columns for events, one still needs to be provided for the |
paul@446 | 553 | # participant itself. |
paul@446 | 554 | |
paul@446 | 555 | all_columns = sum([max(columns, 1) for columns in group_columns]) |
paul@446 | 556 | |
paul@446 | 557 | # Determine the days providing time slots. |
paul@446 | 558 | |
paul@446 | 559 | all_days = days.items() |
paul@446 | 560 | all_days.sort() |
paul@446 | 561 | |
paul@446 | 562 | # Produce a heading and time points for each day. |
paul@446 | 563 | |
paul@446 | 564 | for day, intervals in all_days: |
paul@446 | 565 | groups_for_day = [partitioned.get(day) for partitioned in partitioned_groups] |
paul@446 | 566 | is_empty = True |
paul@446 | 567 | |
paul@446 | 568 | for slots in groups_for_day: |
paul@446 | 569 | if not slots: |
paul@446 | 570 | continue |
paul@446 | 571 | |
paul@446 | 572 | for active in slots.values(): |
paul@446 | 573 | if active: |
paul@446 | 574 | is_empty = False |
paul@446 | 575 | break |
paul@446 | 576 | |
paul@446 | 577 | page.thead(class_="separator%s" % (is_empty and " empty" or "")) |
paul@446 | 578 | page.tr() |
paul@446 | 579 | page.th(class_="dayheading container", colspan=all_columns+1) |
paul@446 | 580 | self._day_heading(day) |
paul@446 | 581 | page.th.close() |
paul@446 | 582 | page.tr.close() |
paul@446 | 583 | page.thead.close() |
paul@446 | 584 | |
paul@446 | 585 | page.tbody(class_="points%s" % (is_empty and " empty" or "")) |
paul@446 | 586 | self.show_calendar_points(intervals, groups_for_day, partitioned_group_types, group_columns) |
paul@446 | 587 | page.tbody.close() |
paul@446 | 588 | |
paul@446 | 589 | def show_calendar_points(self, intervals, groups, group_types, group_columns): |
paul@446 | 590 | |
paul@446 | 591 | """ |
paul@446 | 592 | Show the time 'intervals' along with period information from the given |
paul@446 | 593 | 'groups', having the indicated 'group_types', each with the number of |
paul@446 | 594 | columns given by 'group_columns'. |
paul@446 | 595 | """ |
paul@446 | 596 | |
paul@446 | 597 | page = self.page |
paul@446 | 598 | |
paul@446 | 599 | # Obtain the user's timezone. |
paul@446 | 600 | |
paul@446 | 601 | tzid = self.get_tzid() |
paul@446 | 602 | |
paul@446 | 603 | # Produce a row for each interval. |
paul@446 | 604 | |
paul@446 | 605 | intervals = list(intervals) |
paul@446 | 606 | intervals.sort() |
paul@446 | 607 | |
paul@455 | 608 | for point, endpoint in intervals: |
paul@455 | 609 | continuation = point.point == get_start_of_day(point.point, tzid) |
paul@446 | 610 | |
paul@446 | 611 | # Some rows contain no period details and are marked as such. |
paul@446 | 612 | |
paul@448 | 613 | have_active = False |
paul@448 | 614 | have_active_request = False |
paul@448 | 615 | |
paul@448 | 616 | for slots, group_type in zip(groups, group_types): |
paul@455 | 617 | if slots and slots.get(point): |
paul@448 | 618 | if group_type == "request": |
paul@448 | 619 | have_active_request = True |
paul@448 | 620 | else: |
paul@448 | 621 | have_active = True |
paul@446 | 622 | |
paul@450 | 623 | # Emit properties of the time interval, where post-instant intervals |
paul@450 | 624 | # are also treated as busy. |
paul@450 | 625 | |
paul@446 | 626 | css = " ".join([ |
paul@446 | 627 | "slot", |
paul@455 | 628 | (have_active or point.indicator == Point.REPEATED) and "busy" or \ |
paul@455 | 629 | have_active_request and "suggested" or "empty", |
paul@446 | 630 | continuation and "daystart" or "" |
paul@446 | 631 | ]) |
paul@446 | 632 | |
paul@446 | 633 | page.tr(class_=css) |
paul@455 | 634 | if point.indicator == Point.PRINCIPAL: |
paul@453 | 635 | page.th(class_="timeslot") |
paul@449 | 636 | self._time_point(point, endpoint) |
paul@453 | 637 | else: |
paul@453 | 638 | page.th() |
paul@446 | 639 | page.th.close() |
paul@446 | 640 | |
paul@446 | 641 | # Obtain slots for the time point from each group. |
paul@446 | 642 | |
paul@446 | 643 | for columns, slots, group_type in zip(group_columns, groups, group_types): |
paul@455 | 644 | active = slots and slots.get(point) |
paul@446 | 645 | |
paul@446 | 646 | # Where no periods exist for the given time interval, generate |
paul@446 | 647 | # an empty cell. Where a participant provides no periods at all, |
paul@446 | 648 | # the colspan is adjusted to be 1, not 0. |
paul@446 | 649 | |
paul@446 | 650 | if not active: |
paul@455 | 651 | self._empty_slot(point, endpoint, max(columns, 1)) |
paul@446 | 652 | continue |
paul@446 | 653 | |
paul@446 | 654 | slots = slots.items() |
paul@446 | 655 | slots.sort() |
paul@446 | 656 | spans = get_spans(slots) |
paul@446 | 657 | |
paul@446 | 658 | empty = 0 |
paul@446 | 659 | |
paul@446 | 660 | # Show a column for each active period. |
paul@446 | 661 | |
paul@458 | 662 | for p in active: |
paul@458 | 663 | |
paul@458 | 664 | # The period can be None, meaning an empty column. |
paul@458 | 665 | |
paul@458 | 666 | if p: |
paul@446 | 667 | |
paul@446 | 668 | # Flush empty slots preceding this one. |
paul@446 | 669 | |
paul@446 | 670 | if empty: |
paul@455 | 671 | self._empty_slot(point, endpoint, empty) |
paul@446 | 672 | empty = 0 |
paul@446 | 673 | |
paul@458 | 674 | key = p.get_key() |
paul@446 | 675 | span = spans[key] |
paul@446 | 676 | |
paul@446 | 677 | # Produce a table cell only at the start of the period |
paul@446 | 678 | # or when continued at the start of a day. |
paul@453 | 679 | # Points defining the ends of instant events should |
paul@453 | 680 | # never define the start of new events. |
paul@446 | 681 | |
paul@458 | 682 | if point.indicator == Point.PRINCIPAL and (point.point == p.start or continuation): |
paul@446 | 683 | |
paul@458 | 684 | has_continued = continuation and point.point != p.start |
paul@458 | 685 | will_continue = not ends_on_same_day(point.point, p.end, tzid) |
paul@458 | 686 | is_organiser = p.organiser == self.user |
paul@446 | 687 | |
paul@446 | 688 | css = " ".join([ |
paul@446 | 689 | "event", |
paul@446 | 690 | has_continued and "continued" or "", |
paul@446 | 691 | will_continue and "continues" or "", |
paul@486 | 692 | p.transp == "ORG" and "only-organising" or is_organiser and "organising" or "attending" |
paul@446 | 693 | ]) |
paul@446 | 694 | |
paul@446 | 695 | # Only anchor the first cell of events. |
paul@446 | 696 | # Need to only anchor the first period for a recurring |
paul@446 | 697 | # event. |
paul@446 | 698 | |
paul@458 | 699 | html_id = "%s-%s-%s" % (group_type, p.uid, p.recurrenceid or "") |
paul@446 | 700 | |
paul@458 | 701 | if point.point == p.start and html_id not in self.html_ids: |
paul@446 | 702 | page.td(class_=css, rowspan=span, id=html_id) |
paul@446 | 703 | self.html_ids.add(html_id) |
paul@446 | 704 | else: |
paul@446 | 705 | page.td(class_=css, rowspan=span) |
paul@446 | 706 | |
paul@446 | 707 | # Only link to events if they are not being |
paul@446 | 708 | # updated by requests. |
paul@446 | 709 | |
paul@458 | 710 | if not p.summary or (p.uid, p.recurrenceid) in self._get_requests() and group_type != "request": |
paul@458 | 711 | page.span(p.summary or "(Participant is busy)") |
paul@446 | 712 | else: |
paul@458 | 713 | page.a(p.summary, href=self.link_to(p.uid, p.recurrenceid)) |
paul@446 | 714 | |
paul@446 | 715 | page.td.close() |
paul@446 | 716 | else: |
paul@446 | 717 | empty += 1 |
paul@446 | 718 | |
paul@446 | 719 | # Pad with empty columns. |
paul@446 | 720 | |
paul@446 | 721 | empty = columns - len(active) |
paul@446 | 722 | |
paul@446 | 723 | if empty: |
paul@455 | 724 | self._empty_slot(point, endpoint, empty) |
paul@446 | 725 | |
paul@446 | 726 | page.tr.close() |
paul@446 | 727 | |
paul@446 | 728 | def _day_heading(self, day): |
paul@446 | 729 | |
paul@446 | 730 | """ |
paul@446 | 731 | Generate a heading for 'day' of the following form: |
paul@446 | 732 | |
paul@446 | 733 | <label class="day day-20150203" for="day-20150203">Tuesday, 3 February 2015</label> |
paul@446 | 734 | """ |
paul@446 | 735 | |
paul@446 | 736 | page = self.page |
paul@446 | 737 | daystr = format_datetime(day) |
paul@446 | 738 | value, identifier = self._day_value_and_identifier(day) |
paul@446 | 739 | page.label(self.format_date(day, "full"), class_="day day-%s" % daystr, for_=identifier) |
paul@446 | 740 | |
paul@446 | 741 | def _time_point(self, point, endpoint): |
paul@446 | 742 | |
paul@446 | 743 | """ |
paul@446 | 744 | Generate headings for the 'point' to 'endpoint' period of the following |
paul@446 | 745 | form: |
paul@446 | 746 | |
paul@446 | 747 | <label class="timepoint day-20150203" for="slot-20150203T090000-20150203T100000">09:00:00 CET</label> |
paul@446 | 748 | <span class="endpoint">10:00:00 CET</span> |
paul@446 | 749 | """ |
paul@446 | 750 | |
paul@446 | 751 | page = self.page |
paul@446 | 752 | tzid = self.get_tzid() |
paul@455 | 753 | daystr = format_datetime(point.point.date()) |
paul@446 | 754 | value, identifier = self._slot_value_and_identifier(point, endpoint) |
paul@455 | 755 | page.label(self.format_time(point.point, "long"), class_="timepoint day-%s" % daystr, for_=identifier) |
paul@455 | 756 | page.span(self.format_time(endpoint and endpoint.point or get_end_of_day(point.point, tzid), "long"), class_="endpoint") |
paul@446 | 757 | |
paul@446 | 758 | def _slot_selector(self, value, identifier, slots): |
paul@446 | 759 | |
paul@446 | 760 | """ |
paul@446 | 761 | Provide a timeslot control having the given 'value', employing the |
paul@446 | 762 | indicated HTML 'identifier', and using the given 'slots' collection |
paul@446 | 763 | to select any control whose 'value' is in this collection, unless the |
paul@446 | 764 | "reset" request parameter has been asserted. |
paul@446 | 765 | """ |
paul@446 | 766 | |
paul@446 | 767 | reset = self.env.get_args().has_key("reset") |
paul@446 | 768 | page = self.page |
paul@446 | 769 | if not reset and value in slots: |
paul@446 | 770 | page.input(name="slot", type="checkbox", value=value, id=identifier, class_="newevent selector", checked="checked") |
paul@446 | 771 | else: |
paul@446 | 772 | page.input(name="slot", type="checkbox", value=value, id=identifier, class_="newevent selector") |
paul@446 | 773 | |
paul@455 | 774 | def _empty_slot(self, point, endpoint, colspan): |
paul@446 | 775 | |
paul@453 | 776 | """ |
paul@453 | 777 | Show an empty slot cell for the given 'point' and 'endpoint', with the |
paul@455 | 778 | given 'colspan' configuring the cell's appearance. |
paul@453 | 779 | """ |
paul@446 | 780 | |
paul@446 | 781 | page = self.page |
paul@455 | 782 | page.td(class_="empty%s" % (point.indicator == Point.PRINCIPAL and " container" or ""), colspan=colspan) |
paul@455 | 783 | if point.indicator == Point.PRINCIPAL: |
paul@453 | 784 | value, identifier = self._slot_value_and_identifier(point, endpoint) |
paul@453 | 785 | page.label("Select/deselect period", class_="newevent popup", for_=identifier) |
paul@453 | 786 | page.td.close() |
paul@446 | 787 | |
paul@446 | 788 | def _day_value_and_identifier(self, day): |
paul@446 | 789 | |
paul@446 | 790 | "Return a day value and HTML identifier for the given 'day'." |
paul@446 | 791 | |
paul@513 | 792 | value = format_datetime(day) |
paul@446 | 793 | identifier = "day-%s" % value |
paul@446 | 794 | return value, identifier |
paul@446 | 795 | |
paul@446 | 796 | def _slot_value_and_identifier(self, point, endpoint): |
paul@446 | 797 | |
paul@446 | 798 | """ |
paul@446 | 799 | Return a slot value and HTML identifier for the given 'point' and |
paul@446 | 800 | 'endpoint'. |
paul@446 | 801 | """ |
paul@446 | 802 | |
paul@455 | 803 | value = "%s-%s" % (format_datetime(point.point), endpoint and format_datetime(endpoint.point) or "") |
paul@446 | 804 | identifier = "slot-%s" % value |
paul@446 | 805 | return value, identifier |
paul@446 | 806 | |
paul@446 | 807 | # vim: tabstop=4 expandtab shiftwidth=4 |