1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576
|
import abc
import logging
from cached_property import threaded_cached_property
from ..errors import InvalidTypeError
from ..fields import FieldPath, InvalidField
from ..items import ID_ONLY, Persona
from ..properties import CalendarView
from ..queryset import Q, QuerySet, SearchableMixIn
from ..restriction import Restriction
from ..util import require_account
log = logging.getLogger(__name__)
class SyncCompleted(Exception):
"""This is really misusing an exception to return the sync state."""
def __init__(self, sync_state):
super().__init__(sync_state)
self.sync_state = sync_state
class FolderCollection(SearchableMixIn):
"""A class that implements an API for searching folders."""
# These fields are required in a FindFolder or GetFolder call to properly identify folder types
REQUIRED_FOLDER_FIELDS = ("name", "folder_class")
def __init__(self, account, folders):
"""Implement a search API on a collection of folders.
:param account: An Account object
:param folders: An iterable of folders, e.g. Folder.walk(), Folder.glob(), or [a.calendar, a.inbox]
"""
self.account = account
self._folders = folders
@threaded_cached_property
def folders(self):
# Resolve the list of folders, in case it's a generator
return tuple(self._folders)
def __len__(self):
return len(self.folders)
def __iter__(self):
yield from self.folders
def get(self, *args, **kwargs):
return QuerySet(self).get(*args, **kwargs)
def all(self):
return QuerySet(self).all()
def none(self):
return QuerySet(self).none()
def filter(self, *args, **kwargs):
"""Find items in the folder(s).
Non-keyword args may be a list of Q instances.
Optional extra keyword arguments follow a Django-like QuerySet filter syntax (see
https://docs.djangoproject.com/en/1.10/ref/models/querysets/#field-lookups).
We don't support '__year' and other date-related lookups. We also don't support '__endswith' or '__iendswith'.
We support the additional '__not' lookup in place of Django's exclude() for simple cases. For more complicated
cases you need to create a Q object and use ~Q().
Examples:
my_account.inbox.filter(datetime_received__gt=EWSDateTime(2016, 1, 1))
my_account.calendar.filter(start__range=(EWSDateTime(2016, 1, 1), EWSDateTime(2017, 1, 1)))
my_account.tasks.filter(subject='Hi mom')
my_account.tasks.filter(subject__not='Hi mom')
my_account.tasks.filter(subject__contains='Foo')
my_account.tasks.filter(subject__icontains='foo')
'endswith' and 'iendswith' could be emulated by searching with 'contains' or 'icontains' and then
post-processing items. Fetch the field in question with additional_fields and remove items where the search
string is not a postfix.
"""
return QuerySet(self).filter(*args, **kwargs)
def exclude(self, *args, **kwargs):
return QuerySet(self).exclude(*args, **kwargs)
def people(self):
return QuerySet(self).people()
def view(self, start, end, max_items=None):
"""Implement the CalendarView option to FindItem. The difference between 'filter' and 'view' is that 'filter'
only returns the master CalendarItem for recurring items, while 'view' unfolds recurring items and returns all
CalendarItem occurrences as one would normally expect when presenting a calendar.
Supports the same semantics as filter, except for 'start' and 'end' keyword attributes which are both required
and behave differently than filter. Here, they denote the start and end of the timespan of the view. All items
the overlap the timespan are returned (items that end exactly on 'start' are also returned, for some reason).
EWS does not allow combining CalendarView with search restrictions (filter and exclude).
'max_items' defines the maximum number of items returned in this view. Optional.
:param start:
:param end:
:param max_items: (Default value = None)
:return:
"""
qs = QuerySet(self)
qs.calendar_view = CalendarView(start=start, end=end, max_items=max_items)
return qs
def allowed_item_fields(self):
# Return non-ID fields of all item classes allowed in this folder type
fields = set()
for item_model in self.supported_item_models:
fields.update(set(item_model.supported_fields(version=self.account.version)))
return fields
@property
def supported_item_models(self):
return tuple(item_model for folder in self.folders for item_model in folder.supported_item_models)
def validate_item_field(self, field, version):
# Takes a fieldname, Field or FieldPath object pointing to an item field, and checks that it is valid
# for the item types supported by this folder collection.
for item_model in self.supported_item_models:
try:
item_model.validate_field(field=field, version=version)
break
except InvalidField:
continue
else:
raise InvalidField(f"{field!r} is not a valid field on {self.supported_item_models}")
def _rinse_args(self, q, depth, additional_fields, field_validator):
if depth is None:
depth = self._get_default_item_traversal_depth()
if additional_fields:
for f in additional_fields:
field_validator(field=f, version=self.account.version)
if f.field.is_complex:
raise ValueError(f"Field {f.field.name!r} not supported for this service")
# Build up any restrictions
if q.is_empty():
restriction = None
query_string = None
elif q.query_string:
restriction = None
query_string = Restriction(q, folders=self.folders, applies_to=Restriction.ITEMS)
else:
restriction = Restriction(q, folders=self.folders, applies_to=Restriction.ITEMS)
query_string = None
return depth, restriction, query_string
def find_items(
self,
q,
shape=ID_ONLY,
depth=None,
additional_fields=None,
order_fields=None,
calendar_view=None,
page_size=None,
max_items=None,
offset=0,
):
"""Private method to call the FindItem service.
:param q: a Q instance containing any restrictions
:param shape: controls whether to return (id, changekey) tuples or Item objects. If additional_fields is
non-null, we always return Item objects. (Default value = ID_ONLY)
:param depth: controls the whether to return soft-deleted items or not. (Default value = None)
:param additional_fields: the extra properties we want on the return objects. Default is no properties. Be aware
that complex fields can only be fetched with fetch() (i.e. the GetItem service).
:param order_fields: the SortOrder fields, if any (Default value = None)
:param calendar_view: a CalendarView instance, if any (Default value = None)
:param page_size: the requested number of items per page (Default value = None)
:param max_items: the max number of items to return (Default value = None)
:param offset: the offset relative to the first item in the item collection (Default value = 0)
:return: a generator for the returned item IDs or items
"""
from ..services import FindItem
if not self.folders:
log.debug("Folder list is empty")
return
if q.is_never():
log.debug("Query will never return results")
return
depth, restriction, query_string = self._rinse_args(
q=q, depth=depth, additional_fields=additional_fields, field_validator=self.validate_item_field
)
if calendar_view is not None and not isinstance(calendar_view, CalendarView):
raise InvalidTypeError("calendar_view", calendar_view, CalendarView)
log.debug(
"Finding %s items in folders %s (shape: %s, depth: %s, additional_fields: %s, restriction: %s)",
self.account,
self.folders,
shape,
depth,
additional_fields,
restriction.q if restriction else None,
)
yield from FindItem(account=self.account, page_size=page_size).call(
folders=self.folders,
additional_fields=additional_fields,
restriction=restriction,
order_fields=order_fields,
shape=shape,
query_string=query_string,
depth=depth,
calendar_view=calendar_view,
max_items=calendar_view.max_items if calendar_view else max_items,
offset=offset,
)
def _get_single_folder(self):
if len(self.folders) > 1:
raise ValueError("Syncing folder hierarchy can only be done on a single folder")
if not self.folders:
log.debug("Folder list is empty")
return None
return self.folders[0]
def find_people(
self,
q,
shape=ID_ONLY,
depth=None,
additional_fields=None,
order_fields=None,
page_size=None,
max_items=None,
offset=0,
):
"""Private method to call the FindPeople service.
:param q: a Q instance containing any restrictions
:param shape: controls whether to return (id, changekey) tuples or Persona objects. If additional_fields is
non-null, we always return Persona objects. (Default value = ID_ONLY)
:param depth: controls the whether to return soft-deleted items or not. (Default value = None)
:param additional_fields: the extra properties we want on the return objects. Default is no properties.
:param order_fields: the SortOrder fields, if any (Default value = None)
:param page_size: the requested number of items per page (Default value = None)
:param max_items: the max number of items to return (Default value = None)
:param offset: the offset relative to the first item in the item collection (Default value = 0)
:return: a generator for the returned personas
"""
from ..services import FindPeople
folder = self._get_single_folder()
if q.is_never():
log.debug("Query will never return results")
return
depth, restriction, query_string = self._rinse_args(
q=q, depth=depth, additional_fields=additional_fields, field_validator=Persona.validate_field
)
yield from FindPeople(account=self.account, page_size=page_size).call(
folder=folder,
additional_fields=additional_fields,
restriction=restriction,
order_fields=order_fields,
shape=shape,
query_string=query_string,
depth=depth,
max_items=max_items,
offset=offset,
)
def get_folder_fields(self, target_cls, is_complex=None):
return {
FieldPath(field=f)
for f in target_cls.supported_fields(version=self.account.version)
if is_complex is None or f.is_complex is is_complex
}
def _get_target_cls(self):
# We may have root folders that don't support the same set of fields as normal folders. If there is a mix of
# both folder types in self.folders, raise an error, so we don't risk losing some fields in the query.
from .base import Folder
from .roots import RootOfHierarchy
has_roots = False
has_non_roots = False
for f in self.folders:
if isinstance(f, RootOfHierarchy):
if has_non_roots:
raise ValueError(f"Cannot call GetFolder on a mix of folder types: {self.folders}")
has_roots = True
else:
if has_roots:
raise ValueError(f"Cannot call GetFolder on a mix of folder types: {self.folders}")
has_non_roots = True
return RootOfHierarchy if has_roots else Folder
def _get_default_traversal_depth(self, traversal_attr):
unique_depths = {getattr(f, traversal_attr) for f in self.folders}
if len(unique_depths) == 1:
return unique_depths.pop()
raise ValueError(
f"Folders in this collection do not have a common {traversal_attr} value. You need to define an explicit "
f"traversal depth with QuerySet.depth() (values: {unique_depths})"
)
def _get_default_item_traversal_depth(self):
# When searching folders, some folders require 'Shallow' and others 'Associated' traversal depth.
return self._get_default_traversal_depth("DEFAULT_ITEM_TRAVERSAL_DEPTH")
def _get_default_folder_traversal_depth(self):
# When searching folders, some folders require 'Shallow' and others 'Deep' traversal depth.
return self._get_default_traversal_depth("DEFAULT_FOLDER_TRAVERSAL_DEPTH")
def resolve(self):
# Looks up the folders or folder IDs in the collection and returns full Folder instances with all fields set.
from .base import BaseFolder
resolveable_folders = []
for f in self.folders:
if isinstance(f, BaseFolder) and not f.get_folder_allowed:
log.debug("GetFolder not allowed on folder %s. Non-complex fields must be fetched with FindFolder", f)
yield f
else:
resolveable_folders.append(f)
# Fetch all properties for the remaining folders of folder IDs
additional_fields = self.get_folder_fields(target_cls=self._get_target_cls())
yield from self.__class__(account=self.account, folders=resolveable_folders).get_folders(
additional_fields=additional_fields
)
@require_account
def find_folders(
self, q=None, shape=ID_ONLY, depth=None, additional_fields=None, page_size=None, max_items=None, offset=0
):
from ..services import FindFolder
# 'depth' controls whether to return direct children or recurse into sub-folders
from .base import BaseFolder, Folder
if q is None:
q = Q()
if not self.folders:
log.debug("Folder list is empty")
return
if q.is_never():
log.debug("Query will never return results")
return
if q.is_empty():
restriction = None
else:
restriction = Restriction(q, folders=self.folders, applies_to=Restriction.FOLDERS)
if depth is None:
depth = self._get_default_folder_traversal_depth()
if additional_fields is None:
# Default to all non-complex properties. Sub-folders will always be of class Folder
additional_fields = self.get_folder_fields(target_cls=Folder, is_complex=False)
else:
for f in additional_fields:
if f.field.is_complex:
raise ValueError(f"find_folders() does not support field {f.field.name!r}. Use get_folders().")
# Add required fields
additional_fields.update(
(FieldPath(field=BaseFolder.get_field_by_fieldname(f)) for f in self.REQUIRED_FOLDER_FIELDS)
)
yield from FindFolder(account=self.account, page_size=page_size).call(
folders=self.folders,
additional_fields=additional_fields,
restriction=restriction,
shape=shape,
depth=depth,
max_items=max_items,
offset=offset,
)
def get_folders(self, additional_fields=None):
from ..services import GetFolder
# Expand folders with their full set of properties
from .base import BaseFolder
if not self.folders:
log.debug("Folder list is empty")
return
if additional_fields is None:
# Default to all complex properties
additional_fields = self.get_folder_fields(target_cls=self._get_target_cls(), is_complex=True)
# Add required fields
additional_fields.update(
(FieldPath(field=BaseFolder.get_field_by_fieldname(f)) for f in self.REQUIRED_FOLDER_FIELDS)
)
yield from GetFolder(account=self.account).call(
folders=self.folders,
additional_fields=additional_fields,
shape=ID_ONLY,
)
def subscribe_to_pull(self, event_types=None, watermark=None, timeout=60):
from ..services import SubscribeToPull
if not self.folders:
log.debug("Folder list is empty")
return None
if event_types is None:
event_types = SubscribeToPull.EVENT_TYPES
return SubscribeToPull(account=self.account).get(
folders=self.folders,
event_types=event_types,
watermark=watermark,
timeout=timeout,
)
def subscribe_to_push(self, callback_url, event_types=None, watermark=None, status_frequency=1):
from ..services import SubscribeToPush
if not self.folders:
log.debug("Folder list is empty")
return None
if event_types is None:
event_types = SubscribeToPush.EVENT_TYPES
return SubscribeToPush(account=self.account).get(
folders=self.folders,
event_types=event_types,
watermark=watermark,
status_frequency=status_frequency,
url=callback_url,
)
def subscribe_to_streaming(self, event_types=None):
from ..services import SubscribeToStreaming
if not self.folders:
log.debug("Folder list is empty")
return None
if event_types is None:
event_types = SubscribeToStreaming.EVENT_TYPES
return SubscribeToStreaming(account=self.account).get(folders=self.folders, event_types=event_types)
def pull_subscription(self, **kwargs):
return PullSubscription(target=self, **kwargs)
def push_subscription(self, **kwargs):
return PushSubscription(target=self, **kwargs)
def streaming_subscription(self, **kwargs):
return StreamingSubscription(target=self, **kwargs)
def unsubscribe(self, subscription_id):
"""Unsubscribe. Only applies to pull and streaming notifications.
:param subscription_id: A subscription ID as acquired by .subscribe_to_[pull|streaming]()
:return: True
This method doesn't need the current collection instance, but it makes sense to keep the method along the other
sync methods.
"""
from ..services import Unsubscribe
return Unsubscribe(account=self.account).get(subscription_id=subscription_id)
def sync_items(self, sync_state=None, only_fields=None, ignore=None, max_changes_returned=None, sync_scope=None):
from ..services import SyncFolderItems
folder = self._get_single_folder()
if only_fields is None:
# We didn't restrict list of field paths. Get all fields from the server, including extended properties.
additional_fields = {FieldPath(field=f) for f in folder.allowed_item_fields(version=self.account.version)}
else:
for field in only_fields:
folder.validate_item_field(field=field, version=self.account.version)
# Remove ItemId and ChangeKey. We get them unconditionally
additional_fields = {f for f in folder.normalize_fields(fields=only_fields) if not f.field.is_attribute}
svc = SyncFolderItems(account=self.account)
while True:
yield from svc.call(
folder=folder,
shape=ID_ONLY,
additional_fields=additional_fields,
sync_state=sync_state,
ignore=ignore,
max_changes_returned=max_changes_returned,
sync_scope=sync_scope,
)
if svc.sync_state == sync_state:
# We sometimes get the same sync_state back, even though includes_last_item_in_range is False. Stop here
break
sync_state = svc.sync_state # Set the new sync state in the next call
if svc.includes_last_item_in_range: # Try again if there are more items
break
raise SyncCompleted(sync_state=svc.sync_state)
def sync_hierarchy(self, sync_state=None, only_fields=None):
from ..services import SyncFolderHierarchy
folder = self._get_single_folder()
if only_fields is None:
# We didn't restrict list of field paths. Get all fields from the server, including extended properties.
additional_fields = {FieldPath(field=f) for f in folder.supported_fields(version=self.account.version)}
else:
additional_fields = set()
for field_name in only_fields:
folder.validate_field(field=field_name, version=self.account.version)
f = folder.get_field_by_fieldname(fieldname=field_name)
if not f.is_attribute:
# Remove ItemId and ChangeKey. We get them unconditionally
additional_fields.add(FieldPath(field=f))
# Add required fields
additional_fields.update(
(FieldPath(field=folder.get_field_by_fieldname(f)) for f in self.REQUIRED_FOLDER_FIELDS)
)
svc = SyncFolderHierarchy(account=self.account)
while True:
yield from svc.call(
folder=folder,
shape=ID_ONLY,
additional_fields=additional_fields,
sync_state=sync_state,
)
if svc.sync_state == sync_state:
# We sometimes get the same sync_state back, even though includes_last_item_in_range is False. Stop here
break
sync_state = svc.sync_state # Set the new sync state in the next call
if svc.includes_last_item_in_range: # Try again if there are more items
break
raise SyncCompleted(sync_state=svc.sync_state)
class BaseSubscription(metaclass=abc.ABCMeta):
def __init__(self, target, **subscription_kwargs):
self.target = target
self.subscription_kwargs = subscription_kwargs
self.subscription_id = None
@abc.abstractmethod
def __enter__(self):
"""Create the subscription"""
def __exit__(self, *args, **kwargs):
self.target.unsubscribe(subscription_id=self.subscription_id)
self.subscription_id = None
class PullSubscription(BaseSubscription):
def __enter__(self):
self.subscription_id, watermark = self.target.subscribe_to_pull(**self.subscription_kwargs)
return self.subscription_id, watermark
class PushSubscription(BaseSubscription):
def __enter__(self):
self.subscription_id, watermark = self.target.subscribe_to_push(**self.subscription_kwargs)
return self.subscription_id, watermark
def __exit__(self, *args, **kwargs):
# Cannot unsubscribe to push subscriptions
pass
class StreamingSubscription(BaseSubscription):
def __enter__(self):
self.subscription_id = self.target.subscribe_to_streaming(**self.subscription_kwargs)
return self.subscription_id
|