Skip to content
Snippets Groups Projects
Commit 7dd25188 authored by Daniel Nemergut's avatar Daniel Nemergut
Browse files

Merge branch 'ws2355-calibration_curation' into '2.8.4-DEVELOPMENT'

WS-2355 Calibration wrester telescope

See merge request !1666
parents 1c26be09 5493b390
No related branches found
No related tags found
2 merge requests!1706merge 2.8.4 to main,!1666WS-2355 Calibration wrester telescope
Pipeline #15817 passed
......@@ -388,9 +388,34 @@ class WrestWorkflowMetadata:
cursor.execute(query, {"spl": spl})
data = cursor.fetchall()
if data:
product_type = str(data[0][0]).lower().replace(" ", "_")
if product_type != 'calibration':
telescope = data[0][1]
else:
# Need to query on the eb / alma_ous_id to get a telescope for calibrations
scope_query = """
SELECT telescope
FROM execution_blocks
JOIN calibrations c_eb ON execution_blocks.execution_block_id = c_eb.execution_block_id
WHERE c_eb.science_product_locator = %(spl)s
UNION
SELECT telescope
FROM execution_blocks
JOIN calibrations c_ous ON execution_blocks.alma_ous_id = c_ous.alma_ous_id
WHERE c_ous.science_product_locator = %(spl)s
"""
cursor.execute(scope_query, {"spl": spl})
scope_data = cursor.fetchall()
if scope_data:
telescope = scope_data[0][0]
else:
self.logger.error(f"ERROR: Failed to determine telescope from calibration's EB, got {data}")
return make_json
make_json = {
"product_type": str(data[0][0]).lower().replace(" ", "_"),
"telescope": data[0][1],
"product_type": product_type,
"telescope": telescope,
"projectCode": data[0][2],
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment