-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathidm-update.py
171 lines (132 loc) · 4.59 KB
/
idm-update.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
#!/usr/bin/env python3
import json
from base64 import b64encode
from os.path import exists
import sys
import pyjq
import requests
from dotenv import dotenv_values
if exists('.env'):
config = dotenv_values('.env')
else:
sys.exit('.env file not found, exiting')
try:
WSKEY = config['WSKEY']
SECRET = config['SECRET']
INSTID = config['INSTID']
except KeyError:
sys.exit('one or more of the expected variables not found in .env file, exiting')
combo = WSKEY+':'+SECRET
auth = combo.encode()
authenc = b64encode(auth)
authheader = { 'Authorization' : 'Basic %s' % authenc.decode() }
url = "https://oauth.oclc.org/token?grant_type=client_credentials&scope=SCIM"
def getToken():
try:
r = requests.post(url, headers=authheader)
r.raise_for_status()
except requests.exceptions.HTTPError as err:
raise SystemExit(err)
return r.json()['access_token']
def searchPatron(patronBarcode, authtoken):
search = '''
{
"schemas": [ "urn:ietf:params:scim:api:messages:2.0:SearchRequest" ]
, "filter": "External_ID eq \\"%s\\""
}
''' % patronBarcode
searchheaders = {
'Authorization' : 'Bearer %s' % authtoken
, 'Content-Type' : 'application/scim+json'
, 'Accept' : 'application/scim+json'
}
try:
s = requests.post(SEARCHURL, headers=searchheaders, data=search)
s.raise_for_status()
except requests.exceptions.HTTPError as err:
if s.status_code == 401:
raise ValueError('Token expired')
else:
SystemExit(err)
return pyjq.first('.Resources[0].id', s.json())
def readPatron(userId, authtoken):
readurl = BASEURL + '/Users/%s' % userId
readheaders = {
'Authorization' : 'Bearer %s' % authtoken
, 'Accept' : 'application/scim+json'
}
try:
read = requests.get(readurl, headers=readheaders)
read.raise_for_status()
except requests.exceptions.HTTPError as err:
if read.status_code == 401:
raise ValueError('Token expired')
else:
SystemExit(err)
return read
def updatePatron(userId, moddedRecord, etag, authtoken):
updateUrl = BASEURL + '/Users/%s' % userId
updateheaders = {
'Authorization' : 'Bearer %s' % authtoken
, 'Accept' : 'application/scim+json'
, 'Content-Type' : 'application/scim+json'
, 'If-Match' : etag
}
try:
update = requests.put(updateUrl, headers=updateheaders, data=moddedRecord)
update.raise_for_status()
except requests.exceptions.HTTPError as err:
if update.status_code == 401:
raise ValueError('Token expired')
else:
SystemExit(err)
return update
# Read mod.jq for modifier
# with open('mod.jq', 'r') as file:
# MODJQ = file.read()
MODJQ = '."urn:mace:oclc.org:eidm:schema:persona:persona:20180305".oclcExpirationDate = "2035-12-30T00:00:00Z"'
# MODJQ = '.'
BASEURL = "https://%s.share.worldcat.org/idaas/scim/v2" %INSTID
SEARCHURL = BASEURL + '/Users/.search'
# old token to test refresh
# TOKEN = "tk_vziB66LUGsTrc0MRpml5yo4VYoKWUPTvUXfj"
TOKEN = getToken()
# LOOP
# take identifiers from stdin
for line in sys.stdin:
barcode = line.strip()
if barcode == "":
# ignore blanks!
pass
else:
# find patron's PPID using barcode
try:
ppid = searchPatron(barcode, TOKEN)
except ValueError:
# token has expired, get a fresh token and redo search
print('getting new token')
TOKEN = getToken()
ppid = searchPatron(barcode, TOKEN)
try:
patron = readPatron(ppid, TOKEN)
# for debugging
patronJson = json.dumps(patron.json())
except ValueError:
# token has expired, get a fresh token and redo read
print('getting new token')
TOKEN = getToken()
patron = readPatron(ppid, TOKEN)
# Extract ETag for safe update
ETag = patron.headers['ETag']
# Create modded record with MODJQ
modded = json.dumps(pyjq.one(MODJQ, patron.json()))
# Update patron record
try:
update = updatePatron(ppid, modded, ETag, TOKEN)
# print simple confirmation
print(str(barcode) + "\t" + str(update.status_code))
except ValueError:
# token has expired, get a fresh token and redo update
print('update getting new token')
TOKEN = getToken()
update = updatePatron(ppid, modded, ETag, TOKEN)