bootstrap.py 1.8 KB

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