admin.py 1.5 KB

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