Merge branch 'master' into codeowners
This commit is contained in:
commit
2c081df06b
|
@ -679,7 +679,16 @@ def stats(**kwargs):
|
||||||
:param kwargs:
|
:param kwargs:
|
||||||
:return:
|
:return:
|
||||||
"""
|
"""
|
||||||
if kwargs.get("metric") == "not_after":
|
|
||||||
|
# Verify requested metric
|
||||||
|
allow_list = ["bits", "issuer", "not_after", "signing_algorithm"]
|
||||||
|
req_metric = kwargs.get("metric")
|
||||||
|
if req_metric not in allow_list:
|
||||||
|
raise Exception(
|
||||||
|
f"Stats not available for requested metric: {req_metric}"
|
||||||
|
)
|
||||||
|
|
||||||
|
if req_metric == "not_after":
|
||||||
start = arrow.utcnow()
|
start = arrow.utcnow()
|
||||||
end = start.shift(weeks=+32)
|
end = start.shift(weeks=+32)
|
||||||
items = (
|
items = (
|
||||||
|
@ -691,7 +700,7 @@ def stats(**kwargs):
|
||||||
)
|
)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
attr = getattr(Certificate, kwargs.get("metric"))
|
attr = getattr(Certificate, req_metric)
|
||||||
query = database.db.session.query(attr, func.count(attr))
|
query = database.db.session.query(attr, func.count(attr))
|
||||||
|
|
||||||
items = query.group_by(attr).all()
|
items = query.group_by(attr).all()
|
||||||
|
|
|
@ -635,7 +635,12 @@ class CertificatesStats(AuthenticatedResource):
|
||||||
|
|
||||||
args = self.reqparse.parse_args()
|
args = self.reqparse.parse_args()
|
||||||
|
|
||||||
items = service.stats(**args)
|
try:
|
||||||
|
items = service.stats(**args)
|
||||||
|
except Exception as e:
|
||||||
|
sentry.captureException()
|
||||||
|
return dict(message=f"Failed to retrieve stats: {str(e)}"), 400
|
||||||
|
|
||||||
return dict(items=items, total=len(items))
|
return dict(items=items, total=len(items))
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -425,7 +425,7 @@ class CertificateDestinations(AuthenticatedResource):
|
||||||
|
|
||||||
|
|
||||||
class DestinationsStats(AuthenticatedResource):
|
class DestinationsStats(AuthenticatedResource):
|
||||||
""" Defines the 'certificates' stats endpoint """
|
""" Defines the 'destinations' stats endpoint """
|
||||||
|
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.reqparse = reqparse.RequestParser()
|
self.reqparse = reqparse.RequestParser()
|
||||||
|
|
Loading…
Reference in New Issue