-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdmponline2_file_v1.py
139 lines (105 loc) · 3.86 KB
/
dmponline2_file_v1.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
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import requests
import json
import sys
from argparse import ArgumentParser, ArgumentDefaultsHelpFormatter
from dotenv import load_dotenv
from datetime import datetime
import os
import uuid
# Simple script for dowloading DMP:s from DMP Online using the API V1 (which does comply with the RDA json scheme).
# Example: ./python3 dmponline2file.py -i 135516
#
#
# Settings
load_dotenv()
dmpurl = os.getenv("DMPONLINE_API_URL_V1")
dmpuser = os.getenv("DMPONLINE_USER")
dmppw = os.getenv("DMPONLINE_PW")
dmp_id_prefix = os.getenv("DMP_ID_PREFIX")
logfile = os.getenv("LOGFILE")
# Input params
parser = ArgumentParser(
description="est script for downloading a specific DMP from the DMPonline API V1.",
formatter_class=ArgumentDefaultsHelpFormatter,
)
parser.add_argument("-v", "--verbose", action="store_true", help="increase verbosity")
parser.add_argument("-i", "--planid", default="", help="DMP online ID", required=False)
args = parser.parse_args()
dmpid = args.planid
# Go ahead and create DMP in DMPOnline from here...
print(
"Should I download a plan through the v1 API and save it as a JSON? (y/n)"
)
yes = {"yes", "y", "ye", "j", "ja", ""}
no = {"no", "n", "nej"}
choice = input().lower()
if choice in yes:
# Authorize
dmp_auth_bearer = ""
dmp_auth_url = os.getenv("DMPONLINE_API_URL") + "authenticate"
auth_headers = {"Accept": "application/json", "Content-Type": "application/json"}
auth_body = {
"grant_type": "authorization_code",
"email": os.getenv("DMPONLINE_USER"),
"code": os.getenv("DMPONLINE_AUTH_CODE"),
}
try:
authdata = requests.post(
url=dmp_auth_url, json=auth_body, headers=auth_headers
).text
print(authdata)
if "Internal server error" in authdata:
print("Authentication request failed! Exiting.")
exit()
authdata = json.loads(authdata)
print(authdata)
dmp_auth_bearer = authdata["access_token"]
print("Authorized! Access token: " + dmp_auth_bearer)
except requests.exceptions.HTTPError as e:
print("Failed! authdata: " + authdata)
exit()
# Request a specific plan using the authentication token
print("")
print(
"###############################################################################################################"
)
print("Now I will try to download a specific plan from dmp.kth.se")
print("")
try:
dmp_plan_url = os.getenv("DMPONLINE_API_URL") + "plans/" + dmpid
plan_headers = {
"Accept": "application/json",
"Authorization": "Bearer " + dmp_auth_bearer,
}
plandata = requests.get(url=dmp_plan_url, headers=plan_headers).text
if "Internal server error" in plandata:
print("Authentication request failed! Exiting.")
exit()
else:
print("Success! Retireved the following:")
print(plandata)
print("#######################")
print("Plan retrieved from: " + dmp_plan_url)
if not os.path.exists('Downloaded_plans'):
os.makedirs('Downloaded_plans')
filename = dmpid + "_API_V1_dmp.json"
path = os.path.join('Downloaded_plans', filename)
plandata = json.loads(plandata)
plan_items = plandata['items']
jd=json.dumps(plan_items, indent =2)
out_file = open(path, "w")
out_file.write(jd)
out_file.close()
print("Stored as: " + path)
except requests.exceptions.HTTPError as e:
print("Failed! plandata: " + plandata)
exit()
elif choice in no:
print("OK. Will exit then.")
exit()
else:
sys.stdout.write("Please respond with 'y'(es) or 'n'(o)")
exit()