Update plugin.py
This commit is contained in:
parent
ed3472d029
commit
e75df1ddc9
|
@ -221,10 +221,11 @@ class VerisignIssuerPlugin(IssuerPlugin):
|
||||||
extra={"common_name": issuer_options.get("common_name", "")}
|
extra={"common_name": issuer_options.get("common_name", "")}
|
||||||
)
|
)
|
||||||
raise Exception(f"Error with Verisign: {response.content}")
|
raise Exception(f"Error with Verisign: {response.content}")
|
||||||
# DONE: TODO add external id
|
|
||||||
authority = issuer_options.get("authority").name.upper()
|
authority = issuer_options.get("authority").name.upper()
|
||||||
cert = response_dict['Response']['Certificate']
|
cert = response_dict['Response']['Certificate']
|
||||||
external_id = response_dict['Response']['Transaction_ID']
|
external_id = None
|
||||||
|
if 'Transaction_ID' in response_dict['Response'].keys():
|
||||||
|
external_id = response_dict['Response']['Transaction_ID']
|
||||||
chain = current_app.config.get("VERISIGN_INTERMEDIATE_{0}".format(authority), current_app.config.get("VERISIGN_INTERMEDIATE"))
|
chain = current_app.config.get("VERISIGN_INTERMEDIATE_{0}".format(authority), current_app.config.get("VERISIGN_INTERMEDIATE"))
|
||||||
return cert, chain, external_id
|
return cert, chain, external_id
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue