certs.py 971 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. """Utilities for certificate management."""
  2. import os
  3. certifi_available = False
  4. certifi_where = None
  5. try:
  6. from certifi import where as certifi_where
  7. certifi_available = True
  8. except ImportError:
  9. pass
  10. custom_ca_locater_available = False
  11. custom_ca_locater_where = None
  12. try:
  13. from ca_certs_locater import get as custom_ca_locater_where
  14. custom_ca_locater_available = True
  15. except ImportError:
  16. pass
  17. BUILTIN_CA_CERTS = os.path.join(
  18. os.path.dirname(os.path.abspath(__file__)), "cacerts.txt"
  19. )
  20. def where():
  21. env = os.environ.get("HTTPLIB2_CA_CERTS")
  22. if env is not None:
  23. if os.path.isfile(env):
  24. return env
  25. else:
  26. raise RuntimeError("Environment variable HTTPLIB2_CA_CERTS not a valid file")
  27. if custom_ca_locater_available:
  28. return custom_ca_locater_where()
  29. if certifi_available:
  30. return certifi_where()
  31. return BUILTIN_CA_CERTS
  32. if __name__ == "__main__":
  33. print(where())