-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscicat.py
224 lines (165 loc) · 5 KB
/
scicat.py
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
#! /usr/bin/env python3
import json
import sys
import requests
from urllib import parse
class SciCat:
"""
SciCat client
...
Attributes
----------
base_url : str
Base URL of the SciCat deployment
Methods
-------
login(username, password):
Sign in to SciCat and set the access token for this instance.
get_instrument_by_name(name):
Get an instrument by name.
get_proposal(id):
Get a proposal by id.
post_dataset(dataset):
Post a dataset to SciCat.
post_dataset_origdatablock(pid, orig_datablock):
Post an origdatablock related to a dataset in SciCat.
"""
def __init__(self, base_url: str):
self._base_url = base_url + "/api/v3"
self._access_token = ""
self._headers = {}
def login(self, username: str, password: str):
"""
Sign in to SciCat and set the access token for this instance.
Parameters
----------
username : str
Username of a functional account
password : str
Password of a functional account
Returns
-------
None
"""
endpoint = "/Users/login"
url = self._base_url + endpoint
credentials = {"username": username, "password": password}
res = requests.post(url, json=credentials)
if res.status_code != 200:
sys.exit(res.text)
self._access_token = res.json()["id"]
self._headers["Authorization"] = self._access_token
def get_instrument_by_name(self, name: str) -> dict:
"""
Get an instrument by name.
Parameters
----------
name : str
The name of the instrument
Returns
-------
dict
The instrument with the requested name
"""
endpoint = "/Instruments/findOne"
query = json.dumps({"where": {"name": {"like": name}}})
url = self._base_url + endpoint + "?" + query
res = requests.get(url, headers=self._headers)
if res.status_code != 200:
sys.exit(res.text)
return res.json()
def get_instrument_by_pid(self, pid: str) -> dict:
"""
Get an instrument by pid.
Parameters
----------
pid : str
The pid of the instrument
Returns
-------
dict
The instrument with the requested pid
"""
encoded_pid = parse.quote_plus(pid)
endpoint = "/Instruments/{}".format(encoded_pid)
url = self._base_url + endpoint
res = requests.get(url, headers=self._headers)
if res.status_code != 200:
sys.exit(res.text)
return res.json()
def get_sample_by_pid(self, pid: str) -> dict:
"""
Get an sample by pid.
Parameters
----------
pid : str
The pid of the sample
Returns
-------
dict
The sample with the requested pid
"""
encoded_pid = parse.quote_plus(pid)
endpoint = "/Samples/{}".format(encoded_pid)
url = self._base_url + endpoint
res = requests.get(url, headers=self._headers)
if res.status_code != 200:
sys.exit(res.text)
return res.json()
def get_proposal_by_pid(self, pid: str) -> dict:
"""
Get proposal by pid.
Parameters
----------
pid : str
The pid of the proposal
Returns
-------
dict
The proposal with the requested pid
"""
endpoint = "/Proposals/"
url = self._base_url + endpoint + pid
res = requests.get(url, headers=self._headers)
if res.status_code != 200:
sys.exit(res.text)
return res.json()
def post_dataset(self, dataset: dict) -> dict:
"""
Post SciCat Dataset
Parameters
----------
dataset : dict
The dataset to create
Returns
-------
dict
The created dataset with PID
"""
endpoint = "/Datasets"
url = self._base_url + endpoint
res = requests.post(url, json=dataset, headers=self._headers)
if res.status_code != 200:
sys.exit(res.text)
return res.json()
def post_dataset_orig_datablock(self, datasetPid: str, orig_datablock: dict) -> dict:
"""
Post SciCat Dataset OrigDatablock
Parameters
----------
pid : str
The PID of the dataset
orig_datablock : dict
The OrigDatablock to create
Returns
-------
dict
The created OrigDatablock with id
"""
encoded_pid = parse.quote_plus(datasetPid)
endpoint = "/Datasets/" + encoded_pid + "/origdatablocks"
url = self._base_url + endpoint
res = requests.post(url, json=orig_datablock, headers=self._headers)
if res.status_code != 200:
sys.exit(res.text)
return res.json()