-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathapi.js
224 lines (203 loc) · 4.66 KB
/
api.js
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
const policyManagementBackend =
window.__ENV ? window.__ENV.VUE_APP_POLICY_MANAGEMENT_BACKEND :
process.env.VUE_APP_POLICY_MANAGEMENT_BACKEND
export async function getCustomers(link, filter) {
if (link) {
return getJson(link)
} else {
return getJson(
`${policyManagementBackend}/customers?filter=${filter || ''}`
)
}
}
export async function getCustomer(customerId) {
return getJson(`${policyManagementBackend}/customers/${customerId}`)
}
export async function getInsuranceQuoteRequests() {
return getJson(`${policyManagementBackend}/insurance-quote-requests`)
}
export async function getInsuranceQuoteRequest(insuranceQuoteRequestId) {
return getJson(
`${policyManagementBackend}/insurance-quote-requests/${insuranceQuoteRequestId}`
)
}
export async function respondToInsuranceQuoteRequest(
insuranceQuoteRequestId,
accept,
expirationDate,
insurancePremium,
policyLimit
) {
let body
if (accept) {
body = {
status: 'QUOTE_RECEIVED',
expirationDate,
insurancePremium: {
amount: insurancePremium,
currency: 'CHF'
},
policyLimit: {
amount: policyLimit,
currency: 'CHF'
}
}
} else {
body = { status: 'REQUEST_REJECTED' }
}
return patchJson(
`${policyManagementBackend}/insurance-quote-requests/${insuranceQuoteRequestId}`,
body
)
}
export async function getPolicies(link) {
if (link) {
return getJson(link)
} else {
return getJson(`${policyManagementBackend}/policies?expand=customer`)
}
}
export async function getPolicy(policyId, expandCustomer = false) {
const policy = await getJson(
`${policyManagementBackend}/policies/${policyId}${
expandCustomer ? '?expand=customer' : ''
}`
)
return policy
}
export function getCustomerPolicies(customerId) {
return getJson(`${policyManagementBackend}/customers/${customerId}/policies`)
}
export async function createPolicy(
customerId,
startDate,
endDate,
policyType,
deductible,
insurancePremium,
policyLimit,
agreementItems
) {
const policy = {
customerId,
policyPeriod: {
startDate,
endDate
},
policyType,
policyLimit: {
amount: policyLimit,
currency: 'CHF'
},
deductible: {
amount: deductible,
currency: 'CHF'
},
insurancePremium: {
amount: insurancePremium,
currency: 'CHF'
},
insuringAgreement: {
agreementItems
}
}
return postJson(`${policyManagementBackend}/policies`, policy)
}
export async function updatePolicy(
policyId,
customerId,
startDate,
endDate,
policyType,
deductible,
insurancePremium,
policyLimit,
agreementItems
) {
const policy = {
customerId,
policyPeriod: {
startDate,
endDate
},
policyType,
deductible: {
amount: deductible,
currency: 'CHF'
},
policyLimit: {
amount: policyLimit,
currency: 'CHF'
},
insurancePremium: {
amount: insurancePremium,
currency: 'CHF'
},
insuringAgreement: {
agreementItems
}
}
return putJson(`${policyManagementBackend}/policies/${policyId}`, policy)
}
export async function deletePolicy(policyId) {
const url = `${policyManagementBackend}/policies/${policyId}`
await fetch(url, {
method: 'DELETE'
})
}
export async function computeRiskFactor(customer) {
const request = {
birthday: customer.birthday,
postalCode: customer.postalCode
}
return postJson(`${policyManagementBackend}/riskfactor/compute`, request)
}
async function getJson(url) {
const response = await fetch(url, {
method: 'GET',
headers: {
Accept: 'application/json'
}
})
return checkStatus(response)
}
async function postJson(url, body) {
return submitJson(url, 'POST', body)
}
async function putJson(url, body) {
return submitJson(url, 'PUT', body)
}
async function patchJson(url, body) {
return submitJson(url, 'PATCH', body)
}
async function submitJson(url, method, body) {
const response = await fetch(url, {
method,
headers: {
'Content-Type': 'application/json',
Accept: 'application/json'
},
body: JSON.stringify(body)
})
return checkStatus(response)
}
export class ApiError {
constructor(code, statusText, body) {
this.code = code
this.statusText = statusText
this.body = body
}
}
export async function checkStatus(response) {
if (response.status >= 200 && response.status < 300) {
return response.json()
} else {
let json
try {
json = await response.json()
} catch (_) {
throw new ApiError(response.status, response.statusText, '')
}
throw new ApiError(response.status, response.statusText, json)
}
}