imip-agent

imiptools/handlers/resource.py

818:317174543da9
2015-10-12 Paul Boddie Added initial support for attendee modification of objects and the sending of COUNTER messages when the attendee list or periods are modified.
     1 #!/usr/bin/env python     2      3 """     4 Handlers for a resource.     5      6 Copyright (C) 2014, 2015 Paul Boddie <paul@boddie.org.uk>     7      8 This program is free software; you can redistribute it and/or modify it under     9 the terms of the GNU General Public License as published by the Free Software    10 Foundation; either version 3 of the License, or (at your option) any later    11 version.    12     13 This program is distributed in the hope that it will be useful, but WITHOUT    14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS    15 FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more    16 details.    17     18 You should have received a copy of the GNU General Public License along with    19 this program.  If not, see <http://www.gnu.org/licenses/>.    20 """    21     22 from imiptools.data import get_address, to_part, uri_dict    23 from imiptools.dates import ValidityError    24 from imiptools.handlers import Handler    25 from imiptools.handlers.common import CommonFreebusy, CommonEvent    26     27 class ResourceHandler(CommonEvent, Handler):    28     29     "Handling mechanisms specific to resources."    30     31     def _record_and_respond(self, handle_for_attendee):    32     33         """    34         Record details from the incoming message, using the given    35         'handle_for_attendee' callable to process any valid message    36         appropriately.    37         """    38     39         oa = self.require_organiser_and_attendees()    40         if not oa:    41             return None    42     43         organiser_item, attendees = oa    44     45         # Process for the current user, a resource as attendee.    46     47         if not self.have_new_object():    48             return None    49     50         # Collect response objects produced when handling the request.    51     52         handle_for_attendee()    53     54     def _add_for_attendee(self):    55     56         """    57         Attempt to add a recurrence to an existing object for the current user.    58         This does not request a response concerning participation, apparently.    59         """    60     61         # Request details where configured, doing so for unknown objects anyway.    62     63         if self.will_refresh():    64             self.make_refresh()    65             return    66     67         # Record the event as a recurrence of the parent object.    68     69         self.update_recurrenceid()    70         self.store.set_event(self.user, self.uid, self.recurrenceid, self.obj.to_node())    71     72         # Update free/busy information.    73     74         self.update_event_in_freebusy(for_organiser=False)    75     76     def _schedule_for_attendee(self):    77     78         "Attempt to schedule the current object for the current user."    79     80         method = "REPLY"    81         attendee_attr = uri_dict(self.obj.get_value_map("ATTENDEE"))[self.user]    82     83         # Check any constraints on the request.    84     85         try:    86             corrected = self.correct_object()    87     88         # Refuse to schedule obviously invalid requests.    89     90         except ValidityError:    91             attendee_attr = self.update_participation("DECLINED")    92     93         # With a valid request, determine whether the event can be scheduled.    94     95         else:    96             # Interpretation of periods can depend on the time zone.    97     98             tzid = self.get_tzid()    99    100             # If newer than any old version, discard old details from the   101             # free/busy record and check for suitability.   102    103             periods = self.obj.get_periods(tzid, self.get_window_end())   104    105             freebusy = self.store.get_freebusy(self.user)   106             offers = self.store.get_freebusy_offers(self.user)   107    108             # Check the periods against any scheduled events and against   109             # any outstanding offers.   110    111             scheduled = self.can_schedule(freebusy, periods)   112             scheduled = scheduled and self.can_schedule(offers, periods)   113    114             # Where the corrected object can be scheduled, issue a counter   115             # request.   116    117             if scheduled and corrected:   118                 method = "COUNTER"   119    120             # Find the next available slot if the event cannot be scheduled.   121    122             #elif not scheduled and len(periods) == 1:   123    124             #    # Find a free period, update the object with the details.   125    126             #    duration = periods[0].get_duration()   127             #    free = invert_freebusy(freebusy)   128    129             #    for found in periods_from(free, periods[0]):   130             #        # NOTE: Correct the found period first.   131             #        if found.get_duration() >= duration   132             #            scheduled = True   133             #            method = "COUNTER"   134             #            # NOTE: Set the period using the original duration.   135             #            break   136    137             # Update the participation of the resource in the object.   138             # Update free/busy information.   139    140             if method == "REPLY":   141                 attendee_attr = self.update_participation(scheduled and "ACCEPTED" or "DECLINED")   142    143                 self.update_event_in_freebusy(for_organiser=False)   144                 self.remove_event_from_freebusy_offers()   145    146             # For countered proposals, record the offer in the resource's   147             # free/busy collection.   148    149             elif method == "COUNTER":   150                 self.update_event_in_freebusy_offers()   151    152         # Set the complete event or an additional occurrence.   153    154         if method == "REPLY":   155             event = self.obj.to_node()   156             self.store.set_event(self.user, self.uid, self.recurrenceid, event)   157    158             # Remove additional recurrences if handling a complete event.   159             # Also remove any previous cancellations involving this event.   160    161             if not self.recurrenceid:   162                 self.store.remove_recurrences(self.user, self.uid)   163                 self.store.remove_cancellations(self.user, self.uid)   164             else:   165                 self.store.remove_cancellation(self.user, self.uid, self.recurrenceid)   166    167         # Make a version of the object with just this attendee, update the   168         # DTSTAMP in the response, and return the object for sending.   169    170         self.update_sender(attendee_attr)   171         self.obj["ATTENDEE"] = [(self.user, attendee_attr)]   172         self.update_dtstamp()   173         self.add_result(method, map(get_address, self.obj.get_values("ORGANIZER")), to_part(method, [self.obj.to_node()]))   174    175     def _cancel_for_attendee(self):   176    177         """   178         Cancel for the current user their attendance of the event described by   179         the current object.   180         """   181    182         # Update free/busy information.   183    184         self.remove_event_from_freebusy()   185    186         # Update the stored event and cancel it.   187    188         self.store.set_event(self.user, self.uid, self.recurrenceid, self.obj.to_node())   189         self.store.cancel_event(self.user, self.uid, self.recurrenceid)   190    191     def _revoke_for_attendee(self):   192    193         "Revoke any counter-proposal recorded as a free/busy offer."   194    195         self.remove_event_from_freebusy_offers()   196    197 class Event(ResourceHandler):   198    199     "An event handler."   200    201     def add(self):   202    203         "Add a new occurrence to an existing event."   204    205         self._record_and_respond(self._add_for_attendee)   206    207     def cancel(self):   208    209         "Cancel attendance for attendees."   210    211         self._record_and_respond(self._cancel_for_attendee)   212    213     def counter(self):   214    215         "Since this handler does not send requests, it will not handle replies."   216    217         pass   218    219     def declinecounter(self):   220    221         "Revoke any counter-proposal."   222    223         self._record_and_respond(self._revoke_for_attendee)   224    225     def publish(self):   226    227         """   228         Resources only consider events sent as requests, not generally published   229         events.   230         """   231    232         pass   233    234     def refresh(self):   235    236         """   237         Refresh messages are typically sent to event organisers, but resources   238         do not act as organisers themselves.   239         """   240    241         pass   242    243     def reply(self):   244    245         "Since this handler does not send requests, it will not handle replies."   246    247         pass   248    249     def request(self):   250    251         """   252         Respond to a request by preparing a reply containing accept/decline   253         information for the recipient.   254    255         No support for countering requests is implemented.   256         """   257    258         self._record_and_respond(self._schedule_for_attendee)   259    260 class Freebusy(CommonFreebusy, Handler):   261    262     "A free/busy handler."   263    264     def publish(self):   265    266         "Resources ignore generally published free/busy information."   267    268         pass   269    270     def reply(self):   271    272         "Since this handler does not send requests, it will not handle replies."   273    274         pass   275    276     # request provided by CommonFreeBusy.request   277    278 # Handler registry.   279    280 handlers = [   281     ("VFREEBUSY",   Freebusy),   282     ("VEVENT",      Event),   283     ]   284    285 # vim: tabstop=4 expandtab shiftwidth=4