imip-agent

Annotated imipweb/calendar.py

452:33dfed39e496
2015-03-27 Paul Boddie Introduced repeated time points at the start of the slot definition process, exposing original and repeated points as an indicator in the different period functions.
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@446 29
                             convert_periods, get_freebusy_details, \
paul@452 30
                             get_scale, get_slots, get_spans, partition_by_day, \
paul@452 31
                             POINT
paul@446 32
from imipweb.resource import Resource
paul@446 33
paul@446 34
class CalendarPage(Resource):
paul@446 35
paul@446 36
    "A request handler for the calendar page."
paul@446 37
paul@446 38
    # Request logic methods.
paul@446 39
paul@446 40
    def handle_newevent(self):
paul@446 41
paul@446 42
        """
paul@446 43
        Handle any new event operation, creating a new event and redirecting to
paul@446 44
        the event page for further activity.
paul@446 45
        """
paul@446 46
paul@446 47
        # Handle a submitted form.
paul@446 48
paul@446 49
        args = self.env.get_args()
paul@446 50
paul@446 51
        if not args.has_key("newevent"):
paul@446 52
            return
paul@446 53
paul@446 54
        # Create a new event using the available information.
paul@446 55
paul@446 56
        slots = args.get("slot", [])
paul@446 57
        participants = args.get("participants", [])
paul@446 58
paul@446 59
        if not slots:
paul@446 60
            return
paul@446 61
paul@446 62
        # Obtain the user's timezone.
paul@446 63
paul@446 64
        tzid = self.get_tzid()
paul@446 65
paul@446 66
        # Coalesce the selected slots.
paul@446 67
paul@446 68
        slots.sort()
paul@446 69
        coalesced = []
paul@446 70
        last = None
paul@446 71
paul@446 72
        for slot in slots:
paul@446 73
            start, end = slot.split("-")
paul@446 74
            start = get_datetime(start, {"TZID" : tzid})
paul@446 75
            end = end and get_datetime(end, {"TZID" : tzid}) or get_start_of_next_day(start, tzid)
paul@446 76
paul@446 77
            if last:
paul@446 78
                last_start, last_end = last
paul@446 79
paul@446 80
                # Merge adjacent dates and datetimes.
paul@446 81
paul@446 82
                if start == last_end or \
paul@446 83
                    not isinstance(start, datetime) and \
paul@446 84
                    get_start_of_day(last_end, tzid) == get_start_of_day(start, tzid):
paul@446 85
paul@446 86
                    last = last_start, end
paul@446 87
                    continue
paul@446 88
paul@446 89
                # Handle datetimes within dates.
paul@446 90
                # Datetime periods are within single days and are therefore
paul@446 91
                # discarded.
paul@446 92
paul@446 93
                elif not isinstance(last_start, datetime) and \
paul@446 94
                    get_start_of_day(start, tzid) == get_start_of_day(last_start, tzid):
paul@446 95
paul@446 96
                    continue
paul@446 97
paul@446 98
                # Add separate dates and datetimes.
paul@446 99
paul@446 100
                else:
paul@446 101
                    coalesced.append(last)
paul@446 102
paul@446 103
            last = start, end
paul@446 104
paul@446 105
        if last:
paul@446 106
            coalesced.append(last)
paul@446 107
paul@446 108
        # Invent a unique identifier.
paul@446 109
paul@446 110
        utcnow = get_timestamp()
paul@446 111
        uid = "imip-agent-%s-%s" % (utcnow, get_address(self.user))
paul@446 112
paul@446 113
        # Create a calendar object and store it as a request.
paul@446 114
paul@446 115
        record = []
paul@446 116
        rwrite = record.append
paul@446 117
paul@446 118
        # Define a single occurrence if only one coalesced slot exists.
paul@446 119
paul@446 120
        start, end = coalesced[0]
paul@446 121
        start_value, start_attr = get_datetime_item(start, tzid)
paul@446 122
        end_value, end_attr = get_datetime_item(end, tzid)
paul@446 123
paul@446 124
        rwrite(("UID", {}, uid))
paul@446 125
        rwrite(("SUMMARY", {}, "New event at %s" % utcnow))
paul@446 126
        rwrite(("DTSTAMP", {}, utcnow))
paul@446 127
        rwrite(("DTSTART", start_attr, start_value))
paul@446 128
        rwrite(("DTEND", end_attr, end_value))
paul@446 129
        rwrite(("ORGANIZER", {}, self.user))
paul@446 130
paul@446 131
        participants = uri_values(filter(None, participants))
paul@446 132
paul@446 133
        for participant in participants:
paul@446 134
            rwrite(("ATTENDEE", {"RSVP" : "TRUE", "PARTSTAT" : "NEEDS-ACTION"}, participant))
paul@446 135
paul@446 136
        if self.user not in participants:
paul@446 137
            rwrite(("ATTENDEE", {"PARTSTAT" : "ACCEPTED"}, self.user))
paul@446 138
paul@446 139
        # Define additional occurrences if many slots are defined.
paul@446 140
paul@446 141
        rdates = []
paul@446 142
paul@446 143
        for start, end in coalesced[1:]:
paul@446 144
            start_value, start_attr = get_datetime_item(start, tzid)
paul@446 145
            end_value, end_attr = get_datetime_item(end, tzid)
paul@446 146
            rdates.append("%s/%s" % (start_value, end_value))
paul@446 147
paul@446 148
        if rdates:
paul@446 149
            rwrite(("RDATE", {"VALUE" : "PERIOD", "TZID" : tzid}, rdates))
paul@446 150
paul@446 151
        node = ("VEVENT", {}, record)
paul@446 152
paul@446 153
        self.store.set_event(self.user, uid, None, node=node)
paul@446 154
        self.store.queue_request(self.user, uid)
paul@446 155
paul@446 156
        # Redirect to the object (or the first of the objects), where instead of
paul@446 157
        # attendee controls, there will be organiser controls.
paul@446 158
paul@446 159
        self.redirect(self.link_to(uid))
paul@446 160
paul@446 161
    # Page fragment methods.
paul@446 162
paul@446 163
    def show_requests_on_page(self):
paul@446 164
paul@446 165
        "Show requests for the current user."
paul@446 166
paul@446 167
        page = self.page
paul@446 168
paul@446 169
        # NOTE: This list could be more informative, but it is envisaged that
paul@446 170
        # NOTE: the requests would be visited directly anyway.
paul@446 171
paul@446 172
        requests = self._get_requests()
paul@446 173
paul@446 174
        page.div(id="pending-requests")
paul@446 175
paul@446 176
        if requests:
paul@446 177
            page.p("Pending requests:")
paul@446 178
paul@446 179
            page.ul()
paul@446 180
paul@446 181
            for uid, recurrenceid in requests:
paul@446 182
                obj = self._get_object(uid, recurrenceid)
paul@446 183
                if obj:
paul@446 184
                    page.li()
paul@446 185
                    page.a(obj.get_value("SUMMARY"), href="#request-%s-%s" % (uid, recurrenceid or ""))
paul@446 186
                    page.li.close()
paul@446 187
paul@446 188
            page.ul.close()
paul@446 189
paul@446 190
        else:
paul@446 191
            page.p("There are no pending requests.")
paul@446 192
paul@446 193
        page.div.close()
paul@446 194
paul@446 195
    def show_participants_on_page(self):
paul@446 196
paul@446 197
        "Show participants for scheduling purposes."
paul@446 198
paul@446 199
        page = self.page
paul@446 200
        args = self.env.get_args()
paul@446 201
        participants = args.get("participants", [])
paul@446 202
paul@446 203
        try:
paul@446 204
            for name, value in args.items():
paul@446 205
                if name.startswith("remove-participant-"):
paul@446 206
                    i = int(name[len("remove-participant-"):])
paul@446 207
                    del participants[i]
paul@446 208
                    break
paul@446 209
        except ValueError:
paul@446 210
            pass
paul@446 211
paul@446 212
        # Trim empty participants.
paul@446 213
paul@446 214
        while participants and not participants[-1].strip():
paul@446 215
            participants.pop()
paul@446 216
paul@446 217
        # Show any specified participants together with controls to remove and
paul@446 218
        # add participants.
paul@446 219
paul@446 220
        page.div(id="participants")
paul@446 221
paul@446 222
        page.p("Participants for scheduling:")
paul@446 223
paul@446 224
        for i, participant in enumerate(participants):
paul@446 225
            page.p()
paul@446 226
            page.input(name="participants", type="text", value=participant)
paul@446 227
            page.input(name="remove-participant-%d" % i, type="submit", value="Remove")
paul@446 228
            page.p.close()
paul@446 229
paul@446 230
        page.p()
paul@446 231
        page.input(name="participants", type="text")
paul@446 232
        page.input(name="add-participant", type="submit", value="Add")
paul@446 233
        page.p.close()
paul@446 234
paul@446 235
        page.div.close()
paul@446 236
paul@446 237
        return participants
paul@446 238
paul@446 239
    # Full page output methods.
paul@446 240
paul@446 241
    def show(self):
paul@446 242
paul@446 243
        "Show the calendar for the current user."
paul@446 244
paul@446 245
        handled = self.handle_newevent()
paul@446 246
paul@446 247
        self.new_page(title="Calendar")
paul@446 248
        page = self.page
paul@446 249
paul@446 250
        # Form controls are used in various places on the calendar page.
paul@446 251
paul@446 252
        page.form(method="POST")
paul@446 253
paul@446 254
        self.show_requests_on_page()
paul@446 255
        participants = self.show_participants_on_page()
paul@446 256
paul@446 257
        # Show a button for scheduling a new event.
paul@446 258
paul@446 259
        page.p(class_="controls")
paul@446 260
        page.input(name="newevent", type="submit", value="New event", id="newevent", accesskey="N")
paul@446 261
        page.p.close()
paul@446 262
paul@446 263
        # Show controls for hiding empty days and busy slots.
paul@446 264
        # The positioning of the control, paragraph and table are important here.
paul@446 265
paul@446 266
        page.input(name="showdays", type="checkbox", value="show", id="showdays", accesskey="D")
paul@446 267
        page.input(name="hidebusy", type="checkbox", value="hide", id="hidebusy", accesskey="B")
paul@446 268
paul@446 269
        page.p(class_="controls")
paul@446 270
        page.label("Hide busy time periods", for_="hidebusy", class_="hidebusy enable")
paul@446 271
        page.label("Show busy time periods", for_="hidebusy", class_="hidebusy disable")
paul@446 272
        page.label("Show empty days", for_="showdays", class_="showdays disable")
paul@446 273
        page.label("Hide empty days", for_="showdays", class_="showdays enable")
paul@446 274
        page.input(name="reset", type="submit", value="Clear selections", id="reset")
paul@446 275
        page.label("Clear selections", for_="reset", class_="reset")
paul@446 276
        page.p.close()
paul@446 277
paul@446 278
        freebusy = self.store.get_freebusy(self.user)
paul@446 279
paul@446 280
        if not freebusy:
paul@446 281
            page.p("No events scheduled.")
paul@446 282
            return
paul@446 283
paul@446 284
        # Obtain the user's timezone.
paul@446 285
paul@446 286
        tzid = self.get_tzid()
paul@446 287
paul@446 288
        # Day view: start at the earliest known day and produce days until the
paul@446 289
        # latest known day, perhaps with expandable sections of empty days.
paul@446 290
paul@446 291
        # Month view: start at the earliest known month and produce months until
paul@446 292
        # the latest known month, perhaps with expandable sections of empty
paul@446 293
        # months.
paul@446 294
paul@446 295
        # Details of users to invite to new events could be superimposed on the
paul@446 296
        # calendar.
paul@446 297
paul@446 298
        # Requests are listed and linked to their tentative positions in the
paul@446 299
        # calendar. Other participants are also shown.
paul@446 300
paul@446 301
        request_summary = self._get_request_summary()
paul@446 302
paul@446 303
        period_groups = [request_summary, freebusy]
paul@446 304
        period_group_types = ["request", "freebusy"]
paul@446 305
        period_group_sources = ["Pending requests", "Your schedule"]
paul@446 306
paul@446 307
        for i, participant in enumerate(participants):
paul@446 308
            period_groups.append(self.store.get_freebusy_for_other(self.user, get_uri(participant)))
paul@446 309
            period_group_types.append("freebusy-part%d" % i)
paul@446 310
            period_group_sources.append(participant)
paul@446 311
paul@446 312
        groups = []
paul@446 313
        group_columns = []
paul@446 314
        group_types = period_group_types
paul@446 315
        group_sources = period_group_sources
paul@446 316
        all_points = set()
paul@446 317
paul@446 318
        # Obtain time point information for each group of periods.
paul@446 319
paul@446 320
        for periods in period_groups:
paul@446 321
            periods = convert_periods(periods, tzid)
paul@446 322
paul@446 323
            # Get the time scale with start and end points.
paul@446 324
paul@446 325
            scale = get_scale(periods)
paul@446 326
paul@446 327
            # Get the time slots for the periods.
paul@446 328
paul@446 329
            slots = get_slots(scale)
paul@446 330
paul@446 331
            # Add start of day time points for multi-day periods.
paul@446 332
paul@446 333
            add_day_start_points(slots, tzid)
paul@446 334
paul@446 335
            # Record the slots and all time points employed.
paul@446 336
paul@446 337
            groups.append(slots)
paul@452 338
            all_points.update([point_details for point_details, active in slots])
paul@446 339
paul@446 340
        # Partition the groups into days.
paul@446 341
paul@446 342
        days = {}
paul@446 343
        partitioned_groups = []
paul@446 344
        partitioned_group_types = []
paul@446 345
        partitioned_group_sources = []
paul@446 346
paul@446 347
        for slots, group_type, group_source in zip(groups, group_types, group_sources):
paul@446 348
paul@446 349
            # Propagate time points to all groups of time slots.
paul@446 350
paul@446 351
            add_slots(slots, all_points)
paul@446 352
paul@446 353
            # Count the number of columns employed by the group.
paul@446 354
paul@446 355
            columns = 0
paul@446 356
paul@446 357
            # Partition the time slots by day.
paul@446 358
paul@446 359
            partitioned = {}
paul@446 360
paul@446 361
            for day, day_slots in partition_by_day(slots).items():
paul@446 362
paul@446 363
                # Construct a list of time intervals within the day.
paul@446 364
paul@446 365
                intervals = []
paul@449 366
paul@449 367
                # Convert each partition to a mapping from points to active
paul@449 368
                # periods.
paul@449 369
paul@449 370
                partitioned[day] = day_points = {}
paul@449 371
paul@446 372
                last = None
paul@446 373
paul@452 374
                for point_details, active in day_slots:
paul@452 375
                    point, indicator = point_details
paul@446 376
                    columns = max(columns, len(active))
paul@452 377
                    day_points[point_details] = active
paul@451 378
paul@446 379
                    if last:
paul@446 380
                        intervals.append((last, point))
paul@449 381
paul@452 382
                    last = point_details
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@449 547
        last = None
paul@449 548
paul@452 549
        for (point, indicator), endpoint in intervals:
paul@446 550
            continuation = point == get_start_of_day(point, tzid)
paul@446 551
paul@446 552
            # Some rows contain no period details and are marked as such.
paul@446 553
paul@448 554
            have_active = False
paul@448 555
            have_active_request = False
paul@448 556
paul@448 557
            for slots, group_type in zip(groups, group_types):
paul@449 558
                if slots and slots.get((point, indicator)):
paul@448 559
                    if group_type == "request":
paul@448 560
                        have_active_request = True
paul@448 561
                    else:
paul@448 562
                        have_active = True
paul@446 563
paul@450 564
            # Emit properties of the time interval, where post-instant intervals
paul@450 565
            # are also treated as busy.
paul@450 566
paul@446 567
            css = " ".join([
paul@446 568
                "slot",
paul@450 569
                (have_active or indicator) and "busy" or have_active_request and "suggested" or "empty",
paul@446 570
                continuation and "daystart" or ""
paul@446 571
                ])
paul@446 572
paul@446 573
            page.tr(class_=css)
paul@446 574
            page.th(class_="timeslot")
paul@452 575
            if indicator == POINT:
paul@449 576
                self._time_point(point, endpoint)
paul@446 577
            page.th.close()
paul@446 578
paul@446 579
            # Obtain slots for the time point from each group.
paul@446 580
paul@446 581
            for columns, slots, group_type in zip(group_columns, groups, group_types):
paul@449 582
                active = slots and slots.get((point, indicator))
paul@446 583
paul@446 584
                # Where no periods exist for the given time interval, generate
paul@446 585
                # an empty cell. Where a participant provides no periods at all,
paul@446 586
                # the colspan is adjusted to be 1, not 0.
paul@446 587
paul@446 588
                if not active:
paul@446 589
                    page.td(class_="empty container", colspan=max(columns, 1))
paul@446 590
                    self._empty_slot(point, endpoint)
paul@446 591
                    page.td.close()
paul@446 592
                    continue
paul@446 593
paul@446 594
                slots = slots.items()
paul@446 595
                slots.sort()
paul@446 596
                spans = get_spans(slots)
paul@446 597
paul@446 598
                empty = 0
paul@446 599
paul@446 600
                # Show a column for each active period.
paul@446 601
paul@446 602
                for t in active:
paul@446 603
                    if t and len(t) >= 2:
paul@446 604
paul@446 605
                        # Flush empty slots preceding this one.
paul@446 606
paul@446 607
                        if empty:
paul@446 608
                            page.td(class_="empty container", colspan=empty)
paul@446 609
                            self._empty_slot(point, endpoint)
paul@446 610
                            page.td.close()
paul@446 611
                            empty = 0
paul@446 612
paul@446 613
                        start, end, uid, recurrenceid, summary, organiser, key = get_freebusy_details(t)
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@446 618
paul@446 619
                        if point == start or continuation:
paul@446 620
paul@446 621
                            has_continued = continuation and point != start
paul@446 622
                            will_continue = not ends_on_same_day(point, end, tzid)
paul@446 623
                            is_organiser = organiser == self.user
paul@446 624
paul@446 625
                            css = " ".join([
paul@446 626
                                "event",
paul@446 627
                                has_continued and "continued" or "",
paul@446 628
                                will_continue and "continues" or "",
paul@446 629
                                is_organiser and "organising" or "attending"
paul@446 630
                                ])
paul@446 631
paul@446 632
                            # Only anchor the first cell of events.
paul@446 633
                            # Need to only anchor the first period for a recurring
paul@446 634
                            # event.
paul@446 635
paul@446 636
                            html_id = "%s-%s-%s" % (group_type, uid, recurrenceid or "")
paul@446 637
paul@446 638
                            if point == start and html_id not in self.html_ids:
paul@446 639
                                page.td(class_=css, rowspan=span, id=html_id)
paul@446 640
                                self.html_ids.add(html_id)
paul@446 641
                            else:
paul@446 642
                                page.td(class_=css, rowspan=span)
paul@446 643
paul@446 644
                            # Only link to events if they are not being
paul@446 645
                            # updated by requests.
paul@446 646
paul@446 647
                            if not summary or (uid, recurrenceid) in self._get_requests() and group_type != "request":
paul@446 648
                                page.span(summary or "(Participant is busy)")
paul@446 649
                            else:
paul@446 650
                                page.a(summary, href=self.link_to(uid, recurrenceid))
paul@446 651
paul@446 652
                            page.td.close()
paul@446 653
                    else:
paul@446 654
                        empty += 1
paul@446 655
paul@446 656
                # Pad with empty columns.
paul@446 657
paul@446 658
                empty = columns - len(active)
paul@446 659
paul@446 660
                if empty:
paul@446 661
                    page.td(class_="empty container", colspan=empty)
paul@446 662
                    self._empty_slot(point, endpoint)
paul@446 663
                    page.td.close()
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@446 692
        daystr = format_datetime(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@446 696
        page.label(self.format_time(point, "long"), class_="timepoint day-%s" % daystr, for_=identifier)
paul@446 697
        page.span(self.format_time(endpoint or get_end_of_day(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@446 715
    def _empty_slot(self, point, endpoint):
paul@446 716
paul@446 717
        "Show an empty slot label for the given 'point' and 'endpoint'."
paul@446 718
paul@446 719
        page = self.page
paul@446 720
        value, identifier = self._slot_value_and_identifier(point, endpoint)
paul@446 721
        page.label("Select/deselect period", class_="newevent popup", for_=identifier)
paul@446 722
paul@446 723
    def _day_value_and_identifier(self, day):
paul@446 724
paul@446 725
        "Return a day value and HTML identifier for the given 'day'."
paul@446 726
paul@446 727
        value = "%s-" % format_datetime(day)
paul@446 728
        identifier = "day-%s" % value
paul@446 729
        return value, identifier
paul@446 730
paul@446 731
    def _slot_value_and_identifier(self, point, endpoint):
paul@446 732
paul@446 733
        """
paul@446 734
        Return a slot value and HTML identifier for the given 'point' and
paul@446 735
        'endpoint'.
paul@446 736
        """
paul@446 737
paul@446 738
        value = "%s-%s" % (format_datetime(point), endpoint and format_datetime(endpoint) or "")
paul@446 739
        identifier = "slot-%s" % value
paul@446 740
        return value, identifier
paul@446 741
paul@446 742
# vim: tabstop=4 expandtab shiftwidth=4