migrator.py 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293
  1. import logging
  2. import shutil
  3. from contextlib import ContextDecorator
  4. from os import makedirs, path
  5. from urllib.parse import urldefrag
  6. import requests
  7. import yaml
  8. from rdflib import Graph, URIRef
  9. from lakesuperior.dictionaries.namespaces import ns_collection as nsc
  10. from lakesuperior.exceptions import InvalidResourceError
  11. from lakesuperior.env import env
  12. from lakesuperior.globals import AppGlobals, ROOT_UID
  13. from lakesuperior.config_parser import parse_config
  14. from lakesuperior.store.ldp_rs.lmdb_store import TxnManager
  15. logger = logging.getLogger(__name__)
  16. class StoreWrapper(ContextDecorator):
  17. """
  18. Open and close a store.
  19. """
  20. def __init__(self, store):
  21. self.store = store
  22. def __enter__(self):
  23. self.store.open(
  24. env.config['application']['store']['ldp_rs'])
  25. def __exit__(self, *exc):
  26. self.store.close()
  27. class Migrator:
  28. """
  29. Class to handle a database migration.
  30. This class holds state of progress and shared variables as it crawls
  31. through linked resources in an LDP server.
  32. Since a repository migration can be a very long operation but it is
  33. impossible to know the number of the resources to gather by LDP interaction
  34. alone, a progress ticker outputs the number of processed resources at
  35. regular intervals.
  36. """
  37. db_params = {
  38. 'map_size': 1024 ** 4,
  39. 'metasync': False,
  40. 'readahead': False,
  41. 'meminit': False,
  42. }
  43. """
  44. LMDB database parameters.
  45. See :meth:`lmdb.Environment.__init__`
  46. """
  47. ignored_preds = (
  48. nsc['fcrepo'].hasParent,
  49. nsc['fcrepo'].hasTransactionProvider,
  50. nsc['fcrepo'].hasFixityService,
  51. )
  52. """List of predicates to ignore when looking for links."""
  53. def __init__(
  54. self, src, dest, zero_binaries=False, compact_uris=False,
  55. skip_errors=False):
  56. """
  57. Set up base paths and clean up existing directories.
  58. :param rdflib.URIRef src: Webroot of source repository. This must
  59. correspond to the LDP root node (for Fedora it can be e.g.
  60. ``http://localhost:8080fcrepo/rest/``) and is used to determine if
  61. URIs retrieved are managed by this repository.
  62. :param str dest: Destination repository path. If the location exists
  63. it must be a writable directory. It will be deleted and recreated.
  64. If it does not exist, it will be created along with its parents if
  65. missing.
  66. :param str binary_handling: One of ``include``, ``truncate`` or
  67. ``split``.
  68. :param bool compact_uris: NOT IMPLEMENTED. Whether the process should
  69. attempt to compact URIs generated with broken up path segments. If
  70. the UID matches a pattern such as ``/12/34/56/123456...`` it is
  71. converted to ``/123456...``. This would remove a lot of cruft
  72. caused by the pairtree segments. Note that this will change the
  73. publicly exposed URIs. If durability is a concern, a rewrite
  74. directive can be added to the HTTP server that proxies the WSGI
  75. endpoint.
  76. """
  77. # Set up repo folder structure and copy default configuration to
  78. # destination file.
  79. cur_dir = path.dirname(path.dirname(path.abspath(__file__)))
  80. self.dbpath = '{}/data/ldprs_store'.format(dest)
  81. self.fpath = '{}/data/ldpnr_store'.format(dest)
  82. self.config_dir = '{}/etc'.format(dest)
  83. shutil.rmtree(dest, ignore_errors=True)
  84. shutil.copytree(
  85. '{}/etc.defaults'.format(cur_dir), self.config_dir)
  86. # Modify and overwrite destination configuration.
  87. orig_config, _ = parse_config(self.config_dir)
  88. orig_config['application']['store']['ldp_rs']['location'] = self.dbpath
  89. orig_config['application']['store']['ldp_nr']['path'] = self.fpath
  90. with open('{}/application.yml'.format(self.config_dir), 'w') \
  91. as config_file:
  92. config_file.write(yaml.dump(orig_config['application']))
  93. env.config = parse_config(self.config_dir)[0]
  94. env.app_globals = AppGlobals(env.config)
  95. self.rdfly = env.app_globals.rdfly
  96. self.nonrdfly = env.app_globals.nonrdfly
  97. with TxnManager(env.app_globals.rdf_store, write=True) as txn:
  98. self.rdfly.bootstrap()
  99. self.rdfly.store.close()
  100. env.app_globals.nonrdfly.bootstrap()
  101. self.src = src.rstrip('/')
  102. self.zero_binaries = zero_binaries
  103. self.skip_errors = skip_errors
  104. def migrate(self, start_pts=None, list_file=None):
  105. """
  106. Migrate the database.
  107. This method creates a fully functional and configured LAKEsuperior
  108. data set contained in a folder from an LDP repository.
  109. :param start_pts: List of starting points to retrieve
  110. resources from. It would typically be the repository root in case
  111. of a full dump or one or more resources in the repository for a
  112. partial one.
  113. :type start_pts: tuple or list
  114. :param str list_file: path to a local file containing a list of URIs,
  115. one per line.
  116. """
  117. from lakesuperior.api import resource as rsrc_api
  118. self._ct = 0
  119. with StoreWrapper(self.rdfly.store):
  120. if start_pts:
  121. for start in start_pts:
  122. if not start.startswith('/'):
  123. raise ValueError(
  124. 'Starting point {} does not begin with a slash.'
  125. .format(start))
  126. if start != ROOT_UID:
  127. # Create the full hierarchy with link to the parents.
  128. rsrc_api.create_or_replace(start)
  129. # Then populate the new resource and crawl for more
  130. # relationships.
  131. self._crawl(start)
  132. elif list_file:
  133. with open(list_file, 'r') as fp:
  134. for uri in fp:
  135. uid = uri.strip().replace(self.src, '')
  136. if uid != ROOT_UID:
  137. try:
  138. rsrc_api.create_or_replace(uid)
  139. except InvalidResourceError:
  140. pass
  141. self._crawl(uid)
  142. logger.info('Dumped {} resources.'.format(self._ct))
  143. return self._ct
  144. def _crawl(self, uid):
  145. """
  146. Get the contents of a resource and its relationships recursively.
  147. This method recurses into itself each time a reference to a resource
  148. managed by the repository is encountered.
  149. :param str uid: The path relative to the source server webroot
  150. pointing to the resource to crawl, effectively the resource UID.
  151. """
  152. ibase = str(nsc['fcres'])
  153. # Public URI of source repo.
  154. uri = self.src + uid
  155. # Internal URI of destination.
  156. iuri = ibase + uid
  157. try:
  158. rsp = requests.head(uri)
  159. except:
  160. logger.warn('Error retrieving resource {}'.format(uri))
  161. return
  162. if rsp:
  163. if not self.skip_errors:
  164. rsp.raise_for_status()
  165. elif rsp.status_code > 399:
  166. print('Error retrieving resource {} headers: {} {}'.format(
  167. uri, rsp.status_code, rsp.text))
  168. # Determine LDP type.
  169. ldp_type = 'ldp_nr'
  170. try:
  171. for link in requests.utils.parse_header_links(
  172. rsp.headers.get('link')):
  173. if (
  174. link.get('rel') == 'type'
  175. and (
  176. link.get('url') == str(nsc['ldp'].RDFSource)
  177. or link.get('url') == str(nsc['ldp'].Container))
  178. ):
  179. # Resource is an LDP-RS.
  180. ldp_type = 'ldp_rs'
  181. break
  182. except TypeError:
  183. ldp_type = 'ldp_rs'
  184. #raise ValueError('URI {} is not an LDP resource.'.format(uri))
  185. # Get the whole RDF document now because we have to know all outbound
  186. # links.
  187. get_uri = (
  188. uri if ldp_type == 'ldp_rs' else '{}/fcr:metadata'.format(uri))
  189. try:
  190. get_rsp = requests.get(get_uri)
  191. except:
  192. logger.warn('Error retrieving resource {}'.format(get_uri))
  193. return
  194. if get_rsp:
  195. if not self.skip_errors:
  196. get_rsp.raise_for_status()
  197. elif get_rsp.status_code > 399:
  198. print('Error retrieving resource {} body: {} {}'.format(
  199. uri, get_rsp.status_code, get_rsp.text))
  200. data = get_rsp.content.replace(
  201. self.src.encode('utf-8'), ibase.encode('utf-8'))
  202. gr = Graph(identifier=iuri).parse(data=data, format='turtle')
  203. # Store raw graph data. No checks.
  204. with TxnManager(self.rdfly.store, True):
  205. self.rdfly.modify_rsrc(uid, add_trp=set(gr))
  206. # Grab binary and set new resource parameters.
  207. if ldp_type == 'ldp_nr':
  208. provided_imr = gr.resource(URIRef(iuri))
  209. if self.zero_binaries:
  210. data = b''
  211. else:
  212. bin_rsp = requests.get(uri)
  213. if not self.skip_errors:
  214. bin_rsp.raise_for_status()
  215. elif bin_rsp.status_code > 399:
  216. print('Error retrieving resource {} body: {} {}'.format(
  217. uri, bin_rsp.status_code, bin_rsp.text))
  218. data = bin_rsp.content
  219. #import pdb; pdb.set_trace()
  220. uuid = str(gr.value(
  221. URIRef(iuri), nsc['premis'].hasMessageDigest)).split(':')[-1]
  222. fpath = self.nonrdfly.local_path(
  223. self.nonrdfly.config['path'], uuid)
  224. makedirs(path.dirname(fpath), exist_ok=True)
  225. with open(fpath, 'wb') as fh:
  226. fh.write(data)
  227. self._ct += 1
  228. if self._ct % 10 == 0:
  229. print('{} resources processed so far.'.format(self._ct))
  230. # Now, crawl through outbound links.
  231. # LDP-NR fcr:metadata must be checked too.
  232. for pred, obj in gr.predicate_objects():
  233. #import pdb; pdb.set_trace()
  234. obj_uid = obj.replace(ibase, '')
  235. with TxnManager(self.rdfly.store, True):
  236. conditions = bool(
  237. isinstance(obj, URIRef)
  238. and obj.startswith(iuri)
  239. # Avoid ∞ loop with fragment URIs.
  240. and str(urldefrag(obj).url) != str(iuri)
  241. # Avoid ∞ loop with circular references.
  242. and not self.rdfly.ask_rsrc_exists(obj_uid)
  243. and pred not in self.ignored_preds
  244. )
  245. if conditions:
  246. print('Object {} will be crawled.'.format(obj_uid))
  247. self._crawl(urldefrag(obj_uid).url)