lsup-admin 4.6 KB

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