-
Notifications
You must be signed in to change notification settings - Fork 1
/
dmp-api.ts
188 lines (179 loc) · 4.24 KB
/
dmp-api.ts
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
import axios from "axios";
import { v4 as uuidv4 } from "uuid";
export function getToken() {
return axios
.post(`${process.env.DMP_HOST}/tokens`, {
email: process.env.INGESTOR_EMAIL,
password: process.env.INGESTOR_PASSWORD,
})
.then(function (response) {
axios.defaults.headers.common[
"Authorization"
] = `Bearer ${response.data.token}`;
})
.catch(function (error) {
console.log(error);
});
}
export function changeQuestionAnswers(questionnaireUuid: string, answers: any) {
return axios
.put(
`${process.env.DMP_HOST}/questionnaires/${questionnaireUuid}/content`,
{
events: answers,
}
)
.then(function (response) {
return response;
})
.catch(function (error) {
console.log(error);
});
}
export function changeQuestionAnswer(
questionnaireUuid: string,
path: string,
answer: string
) {
return axios
.put(
`${process.env.DMP_HOST}/questionnaires/${questionnaireUuid}/content`,
{
events: [
{
path,
uuid: uuidv4(),
value: {
value: answer,
type: "StringReply",
},
type: "SetReplyEvent",
},
],
}
)
.then(function (response) {
return response;
})
.catch(function (error) {
console.log(error);
});
}
export function changeOwnerQuestionnarie(
name: string,
questionnaireUuid: string,
uuid: string
) {
return axios
.put(`${process.env.DMP_HOST}/questionnaires/${questionnaireUuid}`, {
name, // Why do I need to reset all these?
description: null,
isTemplate: false,
visibility: "PrivateQuestionnaire",
sharing: "RestrictedQuestionnaire",
templateId: null,
formatUuid: null,
permissions: [
{
uuid: uuidv4(),
questionnaireUuid,
member: {
uuid: uuid,
type: "UserMember",
},
perms: ["VIEW", "EDIT", "ADMIN"],
},
],
})
.then(function (response) {
return response;
})
.catch(function (error) {
console.log(error);
});
}
export function createQuestionnarie(proposalId: string) {
return axios
.post(`${process.env.DMP_HOST}/questionnaires`, {
name: `${proposalId}-DMP`,
packageId: `${process.env.PACKAGE_ID}`,
sharing: "RestrictedQuestionnaire",
tagUuids: [process.env.DMP_TAG], // Here I am using the Horizon 2020 template tag
templateId: null,
visibility: "PrivateQuestionnaire",
})
.then(function (response) {
return response.data.uuid;
})
.catch(function (error) {
console.log(error);
});
}
export function createUser(
firstName: string,
lastName: string,
email: string,
affiliation: string
) {
return axios
.post(`${process.env.DMP_HOST}/users`, {
email,
lastName,
firstName,
role: "researcher",
password: "password", // this should be connected to your identity access solution instead of hardcoded
affiliation,
})
.then(function (response) {
return response.data.uuid as string;
})
.catch(function (error) {
console.log(error);
return "";
});
}
export function activateUser(
uuid: string,
firstName: string,
lastName: string,
email: string,
affiliation: string
) {
return axios
.put(`${process.env.DMP_HOST}/users/${uuid}`, {
email,
lastName,
firstName,
role: "researcher",
affiliation,
active: true,
uuid,
})
.then(function (response) {
return response.data.uuid as string;
})
.catch(function (error) {
console.log(error);
return "";
});
}
export function searchUser(filter: string) {
return axios
.get(`${process.env.DMP_HOST}/users?size=10&q=${filter}`)
.then((resp) => {
return resp.data._embedded.users;
})
.catch(function (error) {
console.log(error);
});
}
export function searchQuestionnarie(filter: string) {
return axios
.get(`${process.env.DMP_HOST}/questionnaires?size=10&q=${filter}`)
.then((resp) => {
return resp.data._embedded.questionnaires;
})
.catch(function (error) {
console.log(error);
});
}