bootstrap.py 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. #!/usr/bin/env python
  2. import os
  3. import shutil
  4. import sys
  5. sys.path.append('.')
  6. from lakesuperior.app import create_app
  7. from lakesuperior.config_parser import config
  8. from lakesuperior.store_layouts.rdf.graph_store_connector import \
  9. GraphStoreConnector
  10. from lakesuperior.model.ldpr import Ldpr
  11. # This script will parse configuration files and initialize a filesystem and
  12. # triplestore with an empty FCREPO repository.
  13. # It is used in test suites and on a first run.
  14. #
  15. # Additional, scaffolding files may be parsed to create initial contents.
  16. def bootstrap_db(app):
  17. '''
  18. Initialize RDF store.
  19. '''
  20. dbconf = app.config['store']['ldp_rs']
  21. print('Resetting RDF store to base data set: {}'.format(dbconf['webroot']))
  22. db = GraphStoreConnector(
  23. query_ep=dbconf['webroot'] + dbconf['query_ep'],
  24. update_ep=dbconf['webroot'] + dbconf['update_ep'],
  25. autocommit=True)
  26. # @TODO Make configurable.
  27. db.ds.default_context.parse(source='data/bootstrap/simple_layout.nq',
  28. format='nquads')
  29. return db
  30. def bootstrap_binary_store(app):
  31. '''
  32. Initialize binary file store.
  33. '''
  34. root_path = app.config['store']['ldp_nr']['path']
  35. print('Removing binary store path: {}'.format(root_path))
  36. try:
  37. shutil.rmtree(root_path)
  38. except FileNotFoundError:
  39. pass
  40. os.makedirs(root_path + '/tmp')
  41. if __name__=='__main__':
  42. sys.stdout.write(
  43. 'This operation will WIPE ALL YOUR DATA. Are you sure? '
  44. '(Please type `yes` to continue) > ')
  45. choice = input().lower()
  46. if choice != 'yes':
  47. print('Aborting.')
  48. sys.exit()
  49. app = create_app(config['application'], config['logging'])
  50. bootstrap_db(app)
  51. bootstrap_binary_store(app)