| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- # This file is part of Radicale - CalDAV and CardDAV server
- # Copyright © 2014 Jean-Marc Martins
- # Copyright © 2012-2017 Guillaume Ayoub
- # Copyright © 2017-2021 Unrud <unrud@outlook.com>
- # Copyright © 2024-2024 Peter Bieringer <pb@bieringer.de>
- #
- # This library is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This library is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with Radicale. If not, see <http://www.gnu.org/licenses/>.
- """
- Storage backend that stores data in the file system.
- Uses one folder per collection and one file per collection entry.
- """
- import os
- import sys
- import time
- from typing import ClassVar, Iterator, Optional, Type
- from radicale import config
- from radicale.log import logger
- from radicale.storage.multifilesystem.base import CollectionBase, StorageBase
- from radicale.storage.multifilesystem.cache import CollectionPartCache
- from radicale.storage.multifilesystem.create_collection import \
- StoragePartCreateCollection
- from radicale.storage.multifilesystem.delete import CollectionPartDelete
- from radicale.storage.multifilesystem.discover import StoragePartDiscover
- from radicale.storage.multifilesystem.get import CollectionPartGet
- from radicale.storage.multifilesystem.history import CollectionPartHistory
- from radicale.storage.multifilesystem.lock import (CollectionPartLock,
- StoragePartLock)
- from radicale.storage.multifilesystem.meta import CollectionPartMeta
- from radicale.storage.multifilesystem.move import StoragePartMove
- from radicale.storage.multifilesystem.sync import CollectionPartSync
- from radicale.storage.multifilesystem.upload import CollectionPartUpload
- from radicale.storage.multifilesystem.verify import StoragePartVerify
- class Collection(
- CollectionPartDelete, CollectionPartMeta, CollectionPartSync,
- CollectionPartUpload, CollectionPartGet, CollectionPartCache,
- CollectionPartLock, CollectionPartHistory, CollectionBase):
- _etag_cache: Optional[str]
- def __init__(self, storage_: "Storage", path: str,
- filesystem_path: Optional[str] = None) -> None:
- super().__init__(storage_, path, filesystem_path)
- self._etag_cache = None
- @property
- def path(self) -> str:
- return self._path
- @property
- def last_modified(self) -> str:
- def relevant_files_iter() -> Iterator[str]:
- yield self._filesystem_path
- if os.path.exists(self._props_path):
- yield self._props_path
- for href in self._list():
- yield os.path.join(self._filesystem_path, href)
- last = max(map(os.path.getmtime, relevant_files_iter()))
- return time.strftime("%a, %d %b %Y %H:%M:%S GMT", time.gmtime(last))
- @property
- def etag(self) -> str:
- # reuse cached value if the storage is read-only
- if self._storage._lock.locked == "w" or self._etag_cache is None:
- self._etag_cache = super().etag
- return self._etag_cache
- class Storage(
- StoragePartCreateCollection, StoragePartLock, StoragePartMove,
- StoragePartVerify, StoragePartDiscover, StorageBase):
- _collection_class: ClassVar[Type[Collection]] = Collection
- def __init__(self, configuration: config.Configuration) -> None:
- super().__init__(configuration)
- logger.info("storage location: %r", self._filesystem_folder)
- self._makedirs_synced(self._filesystem_folder)
- logger.info("storage location subfolder: %r", self._get_collection_root_folder())
- logger.info("storage cache subfolder usage for 'item': %s", self._use_cache_subfolder_for_item)
- logger.info("storage cache subfolder usage for 'history': %s", self._use_cache_subfolder_for_history)
- logger.info("storage cache subfolder usage for 'sync-token': %s", self._use_cache_subfolder_for_synctoken)
- logger.info("storage cache use mtime and size for 'item': %s", self._use_mtime_and_size_for_item_cache)
- logger.debug("storage cache action logging: %s", self._debug_cache_actions)
- if self._use_cache_subfolder_for_item is True or self._use_cache_subfolder_for_history is True or self._use_cache_subfolder_for_synctoken is True:
- logger.info("storage cache subfolder: %r", self._get_collection_cache_folder())
- self._makedirs_synced(self._get_collection_cache_folder())
- if sys.platform != "win32":
- if not self._folder_umask:
- # retrieve current umask by setting a dummy umask
- current_umask = os.umask(0o0022)
- logger.info("storage folder umask (from system): '%04o'", current_umask)
- # reset to original
- os.umask(current_umask)
- else:
- try:
- config_umask = int(self._folder_umask, 8)
- except Exception:
- logger.critical("storage folder umask defined but invalid: '%s'", self._folder_umask)
- raise
- logger.info("storage folder umask defined: '%04o'", config_umask)
- self._config_umask = config_umask
|