mirror of
https://github.com/samsonjs/vdirsyncer.git
synced 2026-03-31 09:55:55 +00:00
- Fix #49 -- The old fix caused problems with other servers. The new behavior only decodes ``@`` characters. - ``@`` is now not used when generating a new href, as some servers seem to have problems with it (http://sabre.io/dav/character-encoding/). This behavior is configurable via the ``unsafe_href_chars`` parameters for DAV storages, and is disabled in the testsuite for Radicale and ownCloud. - Decoding of hrefs is also done twice for CarddavStorage.list because of owncloud/contacts#581. Vdirsyncer has behaved like that before, but not intentionally. - Storages now don't share their ``_get_href`` methods anymore.
144 lines
4.5 KiB
Python
144 lines
4.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
'''
|
|
vdirsyncer.storage.base
|
|
~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
:copyright: (c) 2014 Markus Unterwaditzer & contributors
|
|
:license: MIT, see LICENSE for more details.
|
|
'''
|
|
|
|
|
|
from .. import exceptions
|
|
from vdirsyncer.utils.vobject import Item # noqa
|
|
|
|
|
|
class Storage(object):
|
|
|
|
'''Superclass of all storages, mainly useful to summarize the interface to
|
|
implement.
|
|
|
|
Terminology:
|
|
- ITEM: Instance of the Item class, represents a calendar event, task or
|
|
contact.
|
|
- HREF: String; Per-storage identifier of item, might be UID. The reason
|
|
items aren't just referenced by their UID is because the CalDAV and
|
|
CardDAV specifications make this imperformant to implement.
|
|
- ETAG: String; Checksum of item, or something similar that changes when
|
|
the item does.
|
|
|
|
Strings can be either unicode strings or bytestrings. If bytestrings, an
|
|
ASCII encoding is assumed.
|
|
|
|
:param collection: If None, the given URL or path is already directly
|
|
referring to a collection. Otherwise it will be treated as a basepath
|
|
to many collections (e.g. a vdir) and the given collection name will be
|
|
looked for.
|
|
'''
|
|
|
|
fileext = '.txt'
|
|
storage_name = None # The name used in the config file.
|
|
|
|
# A value of True means the storage does not support write-methods such as
|
|
# upload, update and delete. A value of False means the storage does
|
|
# support those methods, but it may also be used in read-only mode.
|
|
read_only = False
|
|
|
|
# The attribute values to show in the representation of the storage.
|
|
_repr_attributes = ()
|
|
|
|
def __init__(self, read_only=None):
|
|
if read_only is None:
|
|
read_only = self.read_only
|
|
if self.read_only and not read_only:
|
|
raise ValueError('This storage is read-only.')
|
|
self.read_only = bool(read_only)
|
|
|
|
@classmethod
|
|
def discover(cls, **kwargs):
|
|
'''Discover collections given a basepath or -URL to many collections.
|
|
|
|
:param **kwargs: Keyword arguments to additionally pass to the storage
|
|
instances returned. You shouldn't pass `collection` here, otherwise
|
|
TypeError will be raised.
|
|
:returns: Iterable of storages which represent the discovered
|
|
collections, all of which are passed kwargs during initialization.
|
|
'''
|
|
raise NotImplementedError()
|
|
|
|
def __repr__(self):
|
|
return '<{}(**{})>'.format(
|
|
self.__class__.__name__,
|
|
dict((x, getattr(self, x)) for x in self._repr_attributes)
|
|
)
|
|
|
|
def list(self):
|
|
'''
|
|
:returns: list of (href, etag)
|
|
'''
|
|
raise NotImplementedError()
|
|
|
|
def get(self, href):
|
|
'''Fetch a single item.
|
|
|
|
:param href: href to fetch
|
|
:returns: (item, etag)
|
|
:raises: :exc:`vdirsyncer.exceptions.PreconditionFailed` if item can't
|
|
be found.
|
|
'''
|
|
raise NotImplementedError()
|
|
|
|
def get_multi(self, hrefs):
|
|
'''Fetch multiple items.
|
|
|
|
Functionally similar to :py:meth:`get`, but might bring performance
|
|
benefits on some storages when used cleverly.
|
|
|
|
:param hrefs: list of hrefs to fetch
|
|
:raises: :exc:`vdirsyncer.exceptions.PreconditionFailed` if one of the
|
|
items couldn't be found.
|
|
:returns: iterable of (href, item, etag)
|
|
'''
|
|
for href in hrefs:
|
|
item, etag = self.get(href)
|
|
yield href, item, etag
|
|
|
|
def has(self, href):
|
|
'''Check if an item exists by its href.
|
|
|
|
:returns: True or False
|
|
'''
|
|
try:
|
|
self.get(href)
|
|
except exceptions.PreconditionFailed:
|
|
return False
|
|
else:
|
|
return True
|
|
|
|
def upload(self, item):
|
|
'''Upload a new item.
|
|
|
|
:raises: :exc:`vdirsyncer.exceptions.PreconditionFailed` if there is
|
|
already an item with that href.
|
|
|
|
:returns: (href, etag)
|
|
'''
|
|
raise NotImplementedError()
|
|
|
|
def update(self, href, item, etag):
|
|
'''Update an item.
|
|
|
|
:raises: :exc:`vdirsyncer.exceptions.PreconditionFailed` if the etag on
|
|
the server doesn't match the given etag or if the item doesn't
|
|
exist.
|
|
|
|
:returns: etag
|
|
'''
|
|
raise NotImplementedError()
|
|
|
|
def delete(self, href, etag):
|
|
'''Delete an item by href.
|
|
|
|
:raises: :exc:`vdirsyncer.exceptions.PreconditionFailed` when item has
|
|
a different etag or doesn't exist.
|
|
'''
|
|
raise NotImplementedError()
|