lsup-admin 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  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. migrates the whole '
  103. 'repository.')
  104. @click.option(
  105. '--zero-binaries', '-z', is_flag=True,
  106. help='If set, binaries are created as zero-byte files in the proper '
  107. 'folder structure rather than having their full content copied.')
  108. @click_log.simple_verbosity_option(logger)
  109. def migrate(src, dest, start, zero_binaries):
  110. '''
  111. Migrate an LDP repository to LAKEsuperior.
  112. This utility creates a fully functional LAKEshore repository from an
  113. existing repository. The source repo can be LAKEsuperior or
  114. another LDP-compatible implementation.
  115. A folder will be created in the location indicated by ``dest``. If the
  116. folder exists already, it will be deleted and recreated. The folder will be
  117. populated with the RDF and binary data directories and a default
  118. configuration directory. The new repository can be immediately started
  119. from this location.
  120. '''
  121. logger.info('Migrating {} into a new repository on {}.'.format(
  122. src, dest))
  123. entries = admin_api.migrate(
  124. src, dest, start=start, zero_binaries=zero_binaries)
  125. logger.info('Migrated {} resources.'.format(entries))
  126. logger.info('''Migration complete. To start the new repository, from the
  127. directory you launched this script run:
  128. FCREPO_CONFIG_DIR="{}/etc" ./fcrepo
  129. Make sure that the default port is not being used by another repository.
  130. '''.format(dest))
  131. @click.command()
  132. @click.argument('src')
  133. @click.argument('dest')
  134. def load(src, dest):
  135. '''
  136. [STUB] Load serialized repository data.
  137. Load serialized data from a filesystem location into a Fedora repository.
  138. The Fedora repo can be LAKEsuperior or another compatible implementation.
  139. '''
  140. pass
  141. admin.add_command(bootstrap)
  142. admin.add_command(check_fixity)
  143. admin.add_command(check_refint)
  144. admin.add_command(cleanup)
  145. admin.add_command(copy)
  146. admin.add_command(load)
  147. admin.add_command(migrate)
  148. admin.add_command(stats)
  149. if __name__ == '__main__':
  150. admin()