lsup-admin 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. #!/usr/bin/env python
  2. import click
  3. import os
  4. import sys
  5. import lakesuperior.env_setup
  6. from lakesuperior.config_parser import config
  7. from lakesuperior.globals import AppGlobals
  8. from lakesuperior.env import env
  9. from lakesuperior.store.ldp_rs.lmdb_store import TxnManager
  10. rdfly = env.app_globals.rdfly
  11. nonrdfly = env.app_globals.nonrdfly
  12. @click.group()
  13. def admin():
  14. pass
  15. @click.command()
  16. def bootstrap():
  17. '''
  18. Bootstrap binary and graph stores.
  19. This script will parse configuration files and initialize a filesystem and
  20. triplestore with an empty FCREPO repository.
  21. It is used in test suites and on a first run.
  22. Additional scaffolding files may be parsed to create initial contents.
  23. '''
  24. click.echo(
  25. 'This operation will WIPE ALL YOUR DATA. Are you sure? '
  26. '(Please type `yes` to continue) > ')
  27. choice = input().lower()
  28. if choice != 'yes':
  29. click.echo('Aborting.')
  30. sys.exit()
  31. click.echo('Initializing graph store at {}'.format(rdfly.store.path))
  32. with TxnManager(env.app_globals.rdf_store, write=True) as txn:
  33. rdfly.bootstrap()
  34. rdfly.store.close()
  35. click.echo('Graph store initialized.')
  36. click.echo('Initializing binary store at {}'.format(nonrdfly.root))
  37. nonrdfly.bootstrap()
  38. click.echo('Binary store initialized.')
  39. click.echo('Repository successfully set up. Go to town.')
  40. @click.command()
  41. def cleanup():
  42. '''
  43. [STUB] Clean up orphaned database items.
  44. '''
  45. pass
  46. @click.command()
  47. def check_refint():
  48. '''
  49. [STUB] Check referential integrity.
  50. '''
  51. pass
  52. @click.command()
  53. def copy_repo():
  54. '''
  55. [STUB] Copy (backup) repository.
  56. '''
  57. pass
  58. @click.command()
  59. def export_repo():
  60. '''
  61. [STUB] High-level repository export.
  62. '''
  63. pass
  64. @click.command()
  65. def import_repo():
  66. '''
  67. [STUB] High-level repository import.
  68. '''
  69. pass
  70. admin.add_command(bootstrap)
  71. admin.add_command(cleanup)
  72. admin.add_command(check_refint)
  73. admin.add_command(copy_repo)
  74. admin.add_command(export_repo)
  75. admin.add_command(import_repo)
  76. if __name__ == '__main__':
  77. admin()