-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapi.py
More file actions
579 lines (490 loc) · 20.2 KB
/
api.py
File metadata and controls
579 lines (490 loc) · 20.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
from __future__ import annotations
import secrets
import subprocess
import time
from datetime import datetime
from functools import partial
from logging import getLogger
from pathlib import Path
from threading import Lock
from typing import Annotated, Any, Optional
from urllib.parse import urlparse
import requests
from fastapi import APIRouter, Depends, HTTPException, status
from fastapi.security import OAuth2PasswordBearer
from jose import JWTError, jwt
from pydantic import BaseModel
from werkzeug.utils import secure_filename
from murfey.client.multigrid_control import MultigridController
from murfey.client.rsync import RSyncer
from murfey.client.watchdir_multigrid import MultigridDirWatcher
from murfey.util import posix_path, sanitise, sanitise_nonpath, secure_path
from murfey.util.api import url_path_for
from murfey.util.client import read_config
from murfey.util.instrument_models import MultigridWatcherSpec
from murfey.util.models import File, Token
logger = getLogger("murfey.instrument_server.api")
watchers: dict[str | int, MultigridDirWatcher] = {}
rsyncers: dict[str, RSyncer] = {}
controllers: dict[int, MultigridController] = {}
controller_lock = Lock()
data_collection_parameters: dict = {}
tokens = {}
config = read_config()
SECRET_KEY = config["Murfey"].get("auth_key", secrets.token_hex(32))
launch_time = time.time()
encoded_jwt = jwt.encode(
{"timestamp": launch_time},
SECRET_KEY,
algorithm=config["Murfey"].get("auth_algorithm", "HS256"),
)
oauth2_scheme = OAuth2PasswordBearer(tokenUrl="token")
def validate_session_token(
session_id: int, token: Annotated[str, Depends(oauth2_scheme)]
):
"""
Validates the token received from the backend server
"""
try:
decoded_data = jwt.decode(
token,
SECRET_KEY,
algorithms=[config["Murfey"].get("auth_algorithm", "HS256")],
)
if not decoded_data.get("session") == session_id:
raise JWTError
except JWTError:
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Could not validate credentials from backend",
headers={"WWW-Authenticate": "Bearer"},
)
return session_id
MurfeySessionID = Annotated[int, Depends(validate_session_token)]
router = APIRouter()
@router.get("/health")
def health():
return True
def _get_murfey_url() -> str:
known_server = config["Murfey"].get("server")
if not known_server:
exit("Murfey server not set")
if not known_server.startswith(("http://", "https://")):
if "://" in known_server:
exit("Unknown server protocol. Only http:// and https:// are allowed")
known_server = f"http://{known_server}"
return known_server
async def murfey_server_handshake(token: str, session_id: int | None = None) -> bool:
# test provided token against Murfey server
murfey_url = urlparse(_get_murfey_url(), allow_fragments=False)
handshake_response = requests.get(
f"{murfey_url.geturl()}{url_path_for('auth.router', 'simple_token_validation')}",
headers={"Authorization": f"Bearer {token}"},
)
res = handshake_response.status_code == 200 and handshake_response.json().get(
"valid"
)
if res:
tokens["token" if session_id is None else session_id] = token
return res
@router.post("/token")
async def token_handshake(token: Token):
handshake_success = await murfey_server_handshake(token.access_token)
if handshake_success:
return Token(access_token=encoded_jwt, token_type="bearer")
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Handshake failure between Murfey servers",
)
@router.post("/sessions/{session_id}/token")
async def token_handshake_for_session(session_id: int, token: Token):
handshake_success = await murfey_server_handshake(
token.access_token, session_id=session_id
)
if handshake_success:
session_jwt = jwt.encode(
{"session": session_id},
SECRET_KEY,
algorithm=config["Murfey"].get("auth_algorithm", "HS256"),
)
return Token(access_token=session_jwt, token_type="bearer")
raise HTTPException(
status_code=status.HTTP_401_UNAUTHORIZED,
detail="Handshake failure between Murfey servers",
)
@router.get("/sessions/{session_id}/check_token")
def check_token(session_id: MurfeySessionID):
return {"token_valid": True}
@router.post("/sessions/{session_id}/multigrid_watcher")
def setup_multigrid_watcher(
session_id: MurfeySessionID, watcher_spec: MultigridWatcherSpec
):
# Remove dormant controllers from memory
with controller_lock:
controllers_to_remove = [
sid for sid, controller in controllers.items() if controller.dormant
]
for sid in controllers_to_remove:
del controllers[sid]
# Return 'True' if controllers are already set up
if controllers.get(session_id) is not None:
return {"success": True}
# Load machine config as dictionary
machine_config: dict[str, Any] = requests.get(
f"{_get_murfey_url()}{url_path_for('session_control.router', 'machine_info_by_instrument', instrument_name=sanitise_nonpath(watcher_spec.instrument_name))}",
headers={"Authorization": f"Bearer {tokens[session_id]}"},
).json()
# Set up the multigrid controller
label = watcher_spec.label
controllers[session_id] = MultigridController(
[],
watcher_spec.visit,
watcher_spec.instrument_name,
session_id,
murfey_url=_get_murfey_url(),
do_transfer=True,
_machine_config=machine_config,
token=tokens.get(session_id, "token"),
data_collection_parameters=data_collection_parameters.get(label, {}),
rsync_restarts=watcher_spec.rsync_restarts,
visit_end_time=watcher_spec.visit_end_time,
acquisition_uuid=watcher_spec.acquisition_uuid,
serialem=watcher_spec.serialem,
)
# Make child directories, if specified
watcher_spec.source.mkdir(exist_ok=True)
for d in machine_config.get("create_directories", []):
(watcher_spec.source / d).mkdir(exist_ok=True)
# Set up multigrid directory watcher
watchers[session_id] = MultigridDirWatcher(
watcher_spec.source,
machine_config,
)
watchers[session_id].subscribe(
partial(
controllers[session_id]._start_rsyncer_multigrid,
destination_overrides=watcher_spec.destination_overrides,
)
)
watchers[session_id].subscribe(
controllers[session_id]._multigrid_watcher_finalised, final=True
)
return {"success": True}
@router.post("/sessions/{session_id}/start_multigrid_watcher")
def start_multigrid_watcher(session_id: MurfeySessionID, process: bool = True):
if watchers.get(session_id) is None:
return {"success": False}
if not process:
watchers[session_id]._analyse = False
try:
watchers[session_id].start()
# Ignore RuntimeError; this happens when reconnecting after a backend server restart
except RuntimeError:
logger.debug(f"MultigridWatcher for session {session_id} is already active")
return {"success": True}
@router.delete("/sessions/{session_id}/multigrid_watcher/{label}")
def stop_multigrid_watcher(session_id: MurfeySessionID, label: str):
watchers[label].request_stop()
return {"success": True}
@router.get("/sessions/{session_id}/multigrid_controller/status")
def check_multigrid_controller_status(
session_id: MurfeySessionID,
):
if controllers.get(session_id, None) is not None:
return {
"dormant": controllers[session_id].dormant,
"exists": True,
"finalising": controllers[session_id].finalising,
}
return {"exists": False}
@router.post("/sessions/{session_id}/multigrid_controller/visit_end_time")
def update_multigrid_controller_visit_end_time(
session_id: MurfeySessionID, end_time: datetime
):
controllers[session_id].update_visit_time(end_time)
return {"success": True}
class RsyncerSource(BaseModel):
source: Path
@router.post("/sessions/{session_id}/stop_rsyncer")
def stop_rsyncer(session_id: MurfeySessionID, rsyncer_source: RsyncerSource):
controllers[session_id].rsync_processes[rsyncer_source.source]._halt_thread = True
return {"success": True}
@router.post("/sessions/{session_id}/remove_rsyncer")
def remove_rsyncer(session_id: MurfeySessionID, rsyncer_source: RsyncerSource):
controllers[session_id]._request_watcher_stop(rsyncer_source.source)
controllers[session_id].rsync_processes[rsyncer_source.source]._stopping = True
controllers[session_id].rsync_processes[rsyncer_source.source]._halt_thread = True
controllers[session_id].rsync_processes[rsyncer_source.source].queue.put(
None, block=False
)
return {"success": True}
@router.post("/sessions/{session_id}/abandon_controller")
def abandon_controller(session_id: MurfeySessionID):
controllers[session_id].abandon()
return {"success": True}
@router.post("/sessions/{session_id}/finalise_rsyncer")
def finalise_rsyncer(session_id: MurfeySessionID, rsyncer_source: RsyncerSource):
controllers[session_id]._finalise_rsyncer(rsyncer_source.source)
return {"success": True}
@router.post("/sessions/{session_id}/finalise_session")
def finalise_session(session_id: MurfeySessionID):
watchers[session_id].request_stop()
logger.debug(f"Stop request sent to multigrid watcher for session {session_id}")
controllers[session_id].finalise()
logger.debug(f"Stop orders sent to multigrid controller for session {session_id} ")
return {"success": True}
@router.post("/sessions/{session_id}/restart_rsyncer")
def restart_rsyncer(session_id: MurfeySessionID, rsyncer_source: RsyncerSource):
controllers[session_id]._restart_rsyncer(rsyncer_source.source)
return {"success": True}
@router.post("/sessions/{session_id}/flush_skipped_rsyncer")
def flush_skipped_rsyncer(session_id: MurfeySessionID, rsyncer_source: RsyncerSource):
controllers[session_id].rsync_processes[rsyncer_source.source].flush_skipped()
return {"success": True}
class ObserverInfo(BaseModel):
source: str
num_files_transferred: int
num_files_in_queue: int
alive: bool
stopping: bool
num_files_skipped: int = 0
@router.get("/sessions/{session_id}/rsyncer_info")
def get_rsyncer_info(session_id: MurfeySessionID) -> list[ObserverInfo]:
info: list[ObserverInfo] = []
if controllers.get(session_id, None) is None:
logger.debug(f"Multigrid controller for session {session_id} doesn't exist")
return info
for k, v in controllers[session_id].rsync_processes.items():
info.append(
ObserverInfo(
source=str(k),
num_files_transferred=v._files_transferred,
num_files_in_queue=v.queue.qsize(),
alive=v.thread.is_alive(),
stopping=v._stopping,
num_files_skipped=len(v._skipped_files),
)
)
return info
@router.get("/sessions/{session_id}/analyser_info")
def get_analyser_info(session_id: MurfeySessionID) -> list[ObserverInfo]:
info: list[ObserverInfo] = []
if controllers.get(session_id, None) is None:
logger.debug(f"Multigrid controller for session {session_id} doesn't exist")
return info
for k, v in controllers[session_id].analysers.items():
info.append(
ObserverInfo(
source=str(k),
num_files_transferred=0,
num_files_in_queue=v.queue.qsize(),
alive=v.thread.is_alive(),
stopping=v._stopping,
)
)
return info
class ProcessingParameters(BaseModel):
gain_ref: str
dose_per_frame: Optional[float] = None
extract_downscale: bool = True
particle_diameter: Optional[float] = None
symmetry: str = "C1"
eer_fractionation: int = 20
class ProcessingParameterBlock(BaseModel):
label: str
params: ProcessingParameters
@router.post("/sessions/{session_id}/processing_parameters")
def register_processing_parameters(
session_id: MurfeySessionID, proc_param_block: ProcessingParameterBlock
):
data_collection_parameters[proc_param_block.label] = {}
for k, v in proc_param_block.params.model_dump().items():
if v is not None:
data_collection_parameters[proc_param_block.label][k] = v
if controllers.get(session_id):
controllers[session_id].data_collection_parameters.update(
data_collection_parameters[proc_param_block.label]
)
for k, v in proc_param_block.params.model_dump().items():
if v is not None and hasattr(controllers[session_id]._environment, k):
setattr(controllers[session_id]._environment, k, v)
return {"success": True}
@router.get(
"/instruments/{instrument_name}/sessions/{session_id}/possible_gain_references"
)
def get_possible_gain_references(
instrument_name: str, session_id: MurfeySessionID
) -> list[File]:
machine_config = requests.get(
f"{_get_murfey_url()}{url_path_for('session_control.router', 'machine_info_by_instrument', instrument_name=sanitise_nonpath(instrument_name))}",
headers={"Authorization": f"Bearer {tokens[session_id]}"},
).json()
candidates = []
for gf in secure_path(
Path(machine_config["gain_reference_directory"]), keep_spaces=True
).glob("**/*"):
if gf.is_file():
candidates.append(
File(
name=gf.name,
description="",
size=gf.stat().st_size / 1e6,
timestamp=datetime.fromtimestamp(gf.stat().st_mtime),
full_path=str(gf),
)
)
candidates.sort(key=lambda x: x.timestamp, reverse=True)
return candidates
class GainReference(BaseModel):
gain_path: Path
visit_path: str
gain_destination_dir: str = "processing"
@router.post(
"/instruments/{instrument_name}/sessions/{session_id}/upload_gain_reference"
)
def upload_gain_reference(
instrument_name: str, session_id: MurfeySessionID, gain_reference: GainReference
):
safe_gain_path = sanitise(str(gain_reference.gain_path))
safe_visit_path = sanitise(gain_reference.visit_path)
safe_destination_dir = sanitise(gain_reference.gain_destination_dir)
# Load machine config and other needed properties
machine_config: dict[str, Any] = requests.get(
f"{_get_murfey_url()}{url_path_for('session_control.router', 'machine_info_by_instrument', instrument_name=sanitise_nonpath(instrument_name))}",
headers={"Authorization": f"Bearer {tokens[session_id]}"},
).json()
# Validate that file passed is from the gain reference directory
gain_ref_dir = machine_config.get("gain_reference_directory", "")
if not safe_gain_path.startswith(gain_ref_dir):
raise ValueError(
"Gain reference file does not originate from the gain reference directory "
f"{gain_ref_dir!r}"
)
# Return the rsync URL if set, otherwise assume you are syncing via Murfey
rsync_url = urlparse(
str(machine_config["rsync_url"])
if machine_config.get("rsync_url", "")
else _get_murfey_url()
)
rsync_module = machine_config.get("rsync_module", "data")
rsync_path = f"{rsync_url.hostname}::{rsync_module}/{safe_visit_path}/{safe_destination_dir}/{secure_filename(gain_reference.gain_path.name)}"
# Run rsync subprocess to transfer gain reference
cmd = [
"rsync",
posix_path(Path(safe_gain_path)),
rsync_path,
]
gain_rsync = subprocess.run(
cmd,
capture_output=True,
text=True,
)
if gain_rsync.returncode:
logger.warning(
f"Failed to transfer gain reference file {safe_gain_path!r} to {f'{safe_visit_path}/processing'!r} \n"
f"Executed the following command: {' '.join(cmd)!r} \n"
f"Returned the following error: \n"
f"{gain_rsync.stderr}"
)
return {"success": False}
return {"success": True}
class UpstreamFileDownloadInfo(BaseModel):
download_dir: Path
upstream_instrument: str
upstream_visit_path: Path
@router.post("/visits/{visit_name}/sessions/{session_id}/upstream_file_data_request")
def gather_upstream_files(
visit_name: str,
session_id: MurfeySessionID,
upstream_file_download: UpstreamFileDownloadInfo,
):
"""
Instrument server endpoint that will query the backend for files in the chosen
visit directory
"""
# Check for forbidden characters
if any(c in visit_name for c in ("/", "\\", ":", ";")):
logger.error(
f"Forbidden characters are present in visit name {sanitise(visit_name)}"
)
return {
"succss": False,
"detail": "Forbidden characters present in visit name",
}
# Sanitise inputs
download_dir = secure_path(upstream_file_download.download_dir)
upstream_instrument = sanitise(upstream_file_download.upstream_instrument)
upstream_visit_path = secure_path(upstream_file_download.upstream_visit_path)
# Get the list of files to download
murfey_url = urlparse(_get_murfey_url(), allow_fragments=False)
sanitised_visit_name = sanitise_nonpath(visit_name)
url_path = url_path_for(
"session_control.correlative_router",
"gather_upstream_files",
session_id=session_id,
visit_name=sanitised_visit_name,
)
upstream_files: list[str] = requests.get(
f"{murfey_url.geturl()}{url_path}",
headers={"Authorization": f"Bearer {tokens[session_id]}"},
json={
"upstream_instrument": upstream_instrument,
"upstream_visit_path": str(upstream_visit_path),
},
).json()
# Make the download directory and download gathered files
download_dir.mkdir(exist_ok=True)
for upstream_file in upstream_files:
url_path = url_path_for(
"session_control.correlative_router",
"get_upstream_file",
session_id=session_id,
visit_name=sanitised_visit_name,
upstream_file_path=upstream_file,
)
file_data = requests.get(
f"{murfey_url.geturl()}{url_path}",
headers={"Authorization": f"Bearer {tokens[session_id]}"},
stream=True,
)
upstream_file_relative_path = secure_path(
Path(upstream_file).relative_to(upstream_visit_path)
)
save_file = download_dir / upstream_file_relative_path
save_file.parent.mkdir(parents=True, exist_ok=True)
with open(save_file, "wb") as f:
for chunk in file_data.iter_content(chunk_size=32 * 1024**2):
f.write(chunk)
logger.info(f"Saved file to {str(save_file)!r}")
return {"success": True}
class UpstreamTiffDownloadInfo(BaseModel):
download_dir: Path
@router.post("/visits/{visit_name}/sessions/{session_id}/upstream_tiff_data_request")
def gather_upstream_tiffs(
visit_name: str,
session_id: MurfeySessionID,
upstream_tiff_info: UpstreamTiffDownloadInfo,
):
sanitised_visit_name = sanitise_nonpath(visit_name)
assert not any(c in visit_name for c in ("/", "\\", ":", ";"))
murfey_url = urlparse(_get_murfey_url(), allow_fragments=False)
upstream_tiff_info.download_dir.mkdir(exist_ok=True)
upstream_tiff_paths = (
requests.get(
f"{murfey_url.geturl()}{url_path_for('session_control.correlative_router', 'gather_upstream_tiffs', session_id=session_id, visit_name=sanitised_visit_name)}",
headers={"Authorization": f"Bearer {tokens[session_id]}"},
).json()
or []
)
for tiff_path in upstream_tiff_paths:
tiff_data = requests.get(
f"{murfey_url.geturl()}{url_path_for('session_control.correlative_router', 'get_tiff_file', session_id=session_id, visit_name=sanitised_visit_name, tiff_path=tiff_path)}",
stream=True,
headers={"Authorization": f"Bearer {tokens[session_id]}"},
)
(upstream_tiff_info.download_dir / tiff_path).parent.mkdir(
parents=True, exist_ok=True
)
with open(upstream_tiff_info.download_dir / tiff_path, "wb") as utiff:
for chunk in tiff_data.iter_content(chunk_size=32 * 1024**2):
utiff.write(chunk)