admin.py 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. import logging
  2. from flask import Blueprint, render_template
  3. from lakesuperior.env import env
  4. from lakesuperior.store.ldp_rs.lmdb_store import TxnManager
  5. # Admin interface and API.
  6. app_globals = env.app_globals
  7. logger = logging.getLogger(__name__)
  8. admin = Blueprint('admin', __name__)
  9. @admin.route('/stats', methods=['GET'])
  10. def stats():
  11. '''
  12. Get repository statistics.
  13. '''
  14. def fsize_fmt(num, suffix='B'):
  15. '''
  16. Format an integer into 1024-block file size format.
  17. Adapted from Python 2 code on
  18. https://stackoverflow.com/a/1094933/3758232
  19. @param num (int) Size value in bytes.
  20. @param suffix (string) Suffix label (defaults to `B`).
  21. @return string Formatted size to largest fitting unit.
  22. '''
  23. for unit in ['','K','M','G','T','P','E','Z']:
  24. if abs(num) < 1024.0:
  25. return "{:3.1f} {}{}".format(num, unit, suffix)
  26. num /= 1024.0
  27. return "{:.1f} {}{}".format(num, 'Y', suffix)
  28. with TxnManager(app_globals.rdf_store) as txn:
  29. store_stats = app_globals.rdf_store.stats()
  30. rsrc_stats = app_globals.rdfly.count_rsrc()
  31. return render_template(
  32. 'stats.html', rsrc_stats=rsrc_stats, store_stats=store_stats,
  33. fsize_fmt=fsize_fmt)
  34. @admin.route('/tools', methods=['GET'])
  35. def admin_tools():
  36. '''
  37. Admin tools.
  38. @TODO stub.
  39. '''
  40. return render_template('admin_tools.html')