Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/metrics #1124

Merged
merged 5 commits into from
Dec 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions fence/blueprints/data/indexd.py
Original file line number Diff line number Diff line change
Expand Up @@ -159,9 +159,41 @@ def get_signed_url_for_file(
"sub": authorized_user_from_passport.id,
}

_log_signed_url_data_info(
indexed_file=indexed_file,
user_sub=flask.g.audit_data.get("sub", ""),
requested_protocol=requested_protocol
)

return {"url": signed_url}


def _log_signed_url_data_info(indexed_file, user_sub, requested_protocol):
size_in_kibibytes = indexed_file.index_document.get("size", 0) / 1024
acl = indexed_file.index_document.get("acl")
authz = indexed_file.index_document.get("authz")

# the behavior later on is to pick the 1st location as the signed URL if a protocol is not requested
protocol = requested_protocol or indexed_file.indexed_file_locations[0].protocol
jawadqur marked this conversation as resolved.
Show resolved Hide resolved

# figure out which bucket was used based on the protocol
bucket = ""
for url in indexed_file.index_document.get("urls", []):
bucket_name = None
if "://" in url:
# Extract the protocol and the rest of the URL
bucket_protocol, rest_of_url = url.split("://", 1)

if bucket_protocol == protocol:
# Extract bucket name
bucket = f"{bucket_protocol}://{rest_of_url.split('/')[0]}"
break

logger.info(
f"Signed URL Generated. size_in_kibibytes={size_in_kibibytes} acl={acl} authz={authz} bucket={bucket} user_sub={user_sub}"
)


def prepare_presigned_url_audit_log(protocol, indexed_file):
"""
Store in `flask.g.audit_data` the data needed to record an audit log.
Expand Down
Loading