migrator.py 10.0 KB

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