lsup-admin 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173
  1. #!/usr/bin/env python
  2. import click
  3. import click_log
  4. import json
  5. import logging
  6. import os
  7. import sys
  8. from lakesuperior.api import admin as admin_api
  9. from lakesuperior.config_parser import config
  10. from lakesuperior.env import env
  11. from lakesuperior.store.ldp_rs.lmdb_store import TxnManager
  12. logger = logging.getLogger(__name__)
  13. click_log.basic_config(logger)
  14. @click.group()
  15. def admin():
  16. pass
  17. @click.command()
  18. def bootstrap():
  19. '''
  20. Bootstrap binary and graph stores.
  21. This script will parse configuration files and initialize a filesystem and
  22. triplestore with an empty FCREPO repository.
  23. It is used in test suites and on a first run.
  24. Additional scaffolding files may be parsed to create initial contents.
  25. '''
  26. rdfly = env.app_globals.rdfly
  27. nonrdfly = env.app_globals.nonrdfly
  28. click.echo(
  29. click.style(
  30. 'WARNING: This operation will WIPE ALL YOUR DATA.\n',
  31. bold=True, fg='red')
  32. + 'Are you sure? (Please type `yes` to continue) > ', nl=False)
  33. choice = input().lower()
  34. if choice != 'yes':
  35. click.echo('Aborting.')
  36. sys.exit(1)
  37. import lakesuperior.env_setup
  38. click.echo('Initializing graph store at {}'.format(rdfly.store.path))
  39. with TxnManager(env.app_globals.rdf_store, write=True) as txn:
  40. rdfly.bootstrap()
  41. rdfly.store.close()
  42. click.echo('Graph store initialized.')
  43. click.echo('Initializing binary store at {}'.format(nonrdfly.root))
  44. nonrdfly.bootstrap()
  45. click.echo('Binary store initialized.')
  46. click.echo('Repository successfully set up. Go to town.')
  47. @click.command()
  48. @click.option(
  49. '--human', '-h', is_flag=True, flag_value=True,
  50. help='Print a human-readable string. By default, JSON is printed.')
  51. def stats(human=False):
  52. '''
  53. Print repository statistics.
  54. @param human (bool) Whether to output the data in human-readable
  55. format.
  56. '''
  57. stat_data = admin_api.stats()
  58. if human:
  59. click.echo(
  60. 'This option is not supported yet. Sorry.\nUse the `/admin/stats`'
  61. ' endpoint in the web UI for a pretty printout.')
  62. else:
  63. click.echo(json.dumps(stat_data))
  64. @click.command()
  65. def check_fixity(uid):
  66. '''
  67. [STUB] Check fixity of a resource.
  68. '''
  69. pass
  70. @click.command()
  71. def check_refint():
  72. '''
  73. [STUB] Check referential integrity.
  74. This command scans the graph store to verify that all references to
  75. resources within the repository are effectively pointing to existing
  76. resources. For repositories set up with the `referencial_integrity` option
  77. (the default), this is a pre-condition for a consistent data set.
  78. '''
  79. pass
  80. @click.command()
  81. def cleanup():
  82. '''
  83. [STUB] Clean up orphan database items.
  84. '''
  85. pass
  86. @click.command()
  87. def copy():
  88. '''
  89. [STUB] Copy (backup) repository data.
  90. This s a low-level copy, which backs up the data directories containing
  91. graph and binary data. It may not even be a necessary command since to
  92. back up the repository one just needs to copy the binary and metadata
  93. folders.
  94. '''
  95. pass
  96. @click.command()
  97. @click.argument('src')
  98. @click.argument('dest')
  99. @click.option(
  100. '--start', '-s', default='/', show_default=True,
  101. help='Starting point for looking for resources in the repository.\n'
  102. 'The default `/` value starts at the root, i.e. dumps the whole '
  103. 'repository.')
  104. @click.option(
  105. '--binaries', '-b', default='include', show_default=True,
  106. help='If set to `include`, full binaries are included in the dump. If '
  107. 'set to `truncate`, binaries are created as zero-byte files in the proper '
  108. 'folder structure. If set to `skip`, binaries are not exported. Data '
  109. 'folders are not created.')
  110. @click_log.simple_verbosity_option(logger)
  111. def migrate(src, dest, start, binaries):
  112. '''
  113. Dump a repository or parts of it to disk.
  114. Dump an LDP repository to disk. The source repo can be LAKEsuperior or
  115. another LDP-compatible implementation.
  116. '''
  117. logger.info('Dumping database.')
  118. entries = admin_api.migrate(
  119. src, dest, start=start, binary_handling=binaries)
  120. logger.info('Dumped {} resources.'.format(entries))
  121. @click.command()
  122. @click.argument('src')
  123. @click.argument('dest')
  124. def load(src, dest):
  125. '''
  126. [STUB] Load serialized repository data.
  127. Load serialized data from a filesystem location into a Fedora repository.
  128. The Fedora repo can be LAKEsuperior or another compatible implementation.
  129. '''
  130. pass
  131. admin.add_command(bootstrap)
  132. admin.add_command(check_fixity)
  133. admin.add_command(check_refint)
  134. admin.add_command(cleanup)
  135. admin.add_command(copy)
  136. admin.add_command(load)
  137. admin.add_command(migrate)
  138. admin.add_command(stats)
  139. if __name__ == '__main__':
  140. admin()