-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapi_reachable_locations.go
464 lines (397 loc) · 17.7 KB
/
api_reachable_locations.go
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
/*
Routing
With the Routing service you can calculate routes from A to B taking into account vehicle-specific restrictions, traffic situations, toll, emissions, drivers' working hours, service times and opening intervals.
API version: 1.33
*/
// Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
package optiflow_routing
import (
"bytes"
"context"
"io"
"net/http"
"net/url"
"strings"
)
// ReachableLocationsAPIService ReachableLocationsAPI service
type ReachableLocationsAPIService service
type ApiDeleteReachableLocationsRequest struct {
ctx context.Context
ApiService *ReachableLocationsAPIService
id string
}
func (r ApiDeleteReachableLocationsRequest) Execute() (*http.Response, error) {
return r.ApiService.DeleteReachableLocationsExecute(r)
}
/*
DeleteReachableLocations Method for DeleteReachableLocations
Cancels a reachable locations calculation and deletes the calculated results specified by its ID. Results already calculated cannot be requested by its ID, anymore.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The ID of the calculated reachable locations.
@return ApiDeleteReachableLocationsRequest
*/
func (a *ReachableLocationsAPIService) DeleteReachableLocations(ctx context.Context, id string) ApiDeleteReachableLocationsRequest {
return ApiDeleteReachableLocationsRequest{
ApiService: a,
ctx: ctx,
id: id,
}
}
// Execute executes the request
func (a *ReachableLocationsAPIService) DeleteReachableLocationsExecute(r ApiDeleteReachableLocationsRequest) (*http.Response, error) {
var (
localVarHTTPMethod = http.MethodDelete
localVarPostBody interface{}
formFiles []formFile
)
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "ReachableLocationsAPIService.DeleteReachableLocations")
if err != nil {
return nil, &GenericOpenAPIError{error: err.Error()}
}
localVarPath := localBasePath + "/reachable-locations/{id}"
localVarPath = strings.Replace(localVarPath, "{"+"id"+"}", url.PathEscape(parameterValueToString(r.id, "id")), -1)
localVarHeaderParams := make(map[string]string)
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}
// to determine the Content-Type header
localVarHTTPContentTypes := []string{}
// set Content-Type header
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
if localVarHTTPContentType != "" {
localVarHeaderParams["Content-Type"] = localVarHTTPContentType
}
// to determine the Accept header
localVarHTTPHeaderAccepts := []string{"application/json"}
// set Accept header
localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts)
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
if r.ctx != nil {
// API Key Authentication
if auth, ok := r.ctx.Value(ContextAPIKeys).(map[string]APIKey); ok {
if apiKey, ok := auth["apiKeyAuth"]; ok {
var key string
if apiKey.Prefix != "" {
key = apiKey.Prefix + " " + apiKey.Key
} else {
key = apiKey.Key
}
localVarHeaderParams["apiKey"] = key
}
}
}
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
if err != nil {
return nil, err
}
localVarHTTPResponse, err := a.client.callAPI(req)
if err != nil || localVarHTTPResponse == nil {
return localVarHTTPResponse, err
}
localVarBody, err := io.ReadAll(localVarHTTPResponse.Body)
localVarHTTPResponse.Body.Close()
localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody))
if err != nil {
return localVarHTTPResponse, err
}
if localVarHTTPResponse.StatusCode >= 300 {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: localVarHTTPResponse.Status,
}
var v ErrorResponse
err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
if err != nil {
newErr.error = err.Error()
return localVarHTTPResponse, newErr
}
newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v)
newErr.model = v
return localVarHTTPResponse, newErr
}
return localVarHTTPResponse, nil
}
type ApiGetReachableLocationsRequest struct {
ctx context.Context
ApiService *ReachableLocationsAPIService
id string
}
func (r ApiGetReachableLocationsRequest) Execute() (*ReachableLocationsResponse, *http.Response, error) {
return r.ApiService.GetReachableLocationsExecute(r)
}
/*
GetReachableLocations Method for GetReachableLocations
Gets the results of a reachable locations calculation specified by its ID.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param id The ID of the calculated reachable locations.
@return ApiGetReachableLocationsRequest
*/
func (a *ReachableLocationsAPIService) GetReachableLocations(ctx context.Context, id string) ApiGetReachableLocationsRequest {
return ApiGetReachableLocationsRequest{
ApiService: a,
ctx: ctx,
id: id,
}
}
// Execute executes the request
// @return ReachableLocationsResponse
func (a *ReachableLocationsAPIService) GetReachableLocationsExecute(r ApiGetReachableLocationsRequest) (*ReachableLocationsResponse, *http.Response, error) {
var (
localVarHTTPMethod = http.MethodGet
localVarPostBody interface{}
formFiles []formFile
localVarReturnValue *ReachableLocationsResponse
)
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "ReachableLocationsAPIService.GetReachableLocations")
if err != nil {
return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()}
}
localVarPath := localBasePath + "/reachable-locations/{id}"
localVarPath = strings.Replace(localVarPath, "{"+"id"+"}", url.PathEscape(parameterValueToString(r.id, "id")), -1)
localVarHeaderParams := make(map[string]string)
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}
// to determine the Content-Type header
localVarHTTPContentTypes := []string{}
// set Content-Type header
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
if localVarHTTPContentType != "" {
localVarHeaderParams["Content-Type"] = localVarHTTPContentType
}
// to determine the Accept header
localVarHTTPHeaderAccepts := []string{"application/json"}
// set Accept header
localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts)
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
if r.ctx != nil {
// API Key Authentication
if auth, ok := r.ctx.Value(ContextAPIKeys).(map[string]APIKey); ok {
if apiKey, ok := auth["apiKeyAuth"]; ok {
var key string
if apiKey.Prefix != "" {
key = apiKey.Prefix + " " + apiKey.Key
} else {
key = apiKey.Key
}
localVarHeaderParams["apiKey"] = key
}
}
}
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
if err != nil {
return localVarReturnValue, nil, err
}
localVarHTTPResponse, err := a.client.callAPI(req)
if err != nil || localVarHTTPResponse == nil {
return localVarReturnValue, localVarHTTPResponse, err
}
localVarBody, err := io.ReadAll(localVarHTTPResponse.Body)
localVarHTTPResponse.Body.Close()
localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody))
if err != nil {
return localVarReturnValue, localVarHTTPResponse, err
}
if localVarHTTPResponse.StatusCode >= 300 {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: localVarHTTPResponse.Status,
}
var v ErrorResponse
err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
if err != nil {
newErr.error = err.Error()
return localVarReturnValue, localVarHTTPResponse, newErr
}
newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v)
newErr.model = v
return localVarReturnValue, localVarHTTPResponse, newErr
}
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
if err != nil {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: err.Error(),
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
return localVarReturnValue, localVarHTTPResponse, nil
}
type ApiStartAndCreateReachableLocationsRequest struct {
ctx context.Context
ApiService *ReachableLocationsAPIService
horizon *int32
locations *Locations
waypoint *string
routeId *string
profile *string
horizonType *HorizonType
options *ReachableOptions
}
// The distance [m] or travel time [s] of the horizons, depending of the **horizonType** (limited to 100 km or 1 hours).
func (r ApiStartAndCreateReachableLocationsRequest) Horizon(horizon int32) ApiStartAndCreateReachableLocationsRequest {
r.horizon = &horizon
return r
}
func (r ApiStartAndCreateReachableLocationsRequest) Locations(locations Locations) ApiStartAndCreateReachableLocationsRequest {
r.locations = &locations
return r
}
// The start or destination waypoint. The format of the waypoint is `<lat>,<lon>[;<attribute>;<attribute>;...]` representing a point with the latitude value in degrees from south to north and the longitude value in degrees (WGS84/EPSG:4326) from west to east. This point will be matched to the nearest possible road. By default the air-line connection between given and matched coordinates is not included in the distance or duration. We will refer to this type of waypoint as an _on-road waypoint_. The behaviour of a waypoint can be changed by appending the following attributes: * `includeLastMeters` to include the air-line connection between given and matched coordinates in the distance or duration. We will refer to this type of waypoint as an _off-road waypoint_. * `roadAccess=<lat>,<lon>`, to use these coordinates for matching to the nearest road. Implies **includeLastMeters**, i.e. the air-line connection between the waypoint coordinates and the matched coordinates is included in the distance or duration. This is useful if the waypoint should not be matched to the nearest possible road but to some road further away, e.g. garage exit at a different road. See [here](./concepts/waypoints) for more information.
func (r ApiStartAndCreateReachableLocationsRequest) Waypoint(waypoint string) ApiStartAndCreateReachableLocationsRequest {
r.waypoint = &waypoint
return r
}
// Instead of the waypoint mentioned above, a **routeId** from a previously calculated route or a matched track can be entered. More information and applying restrictions can be found [here](./concepts/waypoints).
func (r ApiStartAndCreateReachableLocationsRequest) RouteId(routeId string) ApiStartAndCreateReachableLocationsRequest {
r.routeId = &routeId
return r
}
// A profile defines a vehicle by a set of attributes, matching typical transport situations. It must be the name of one of the [predefined profiles](../data-api/concepts/profiles) such as _EUR_TRAILER_TRUCK_. If this parameter is not specified and the first waypoint or the routeId is located in the Americas, _USA_8_SEMITRAILER_5AXLE_ is used as the default instead of _EUR_TRAILER_TRUCK_. If the first waypoint or the routeId is located in the Americas but a non-American profile is specified or vice-versa, a warning is returned (routing only). Always use a profile which matches the region of the waypoints to obtain best results. If the attributes of the profile do not fit to your vehicle, the values can be changed by the corresponding attributes in the **vehicle** parameter (routing only). The values of the predefined profiles may be adapted to reflect current vehicle standards. To obtain the same results when values change, it is recommended to always send with the request the **vehicle** parameters that are important for your use case.
func (r ApiStartAndCreateReachableLocationsRequest) Profile(profile string) ApiStartAndCreateReachableLocationsRequest {
r.profile = &profile
return r
}
func (r ApiStartAndCreateReachableLocationsRequest) HorizonType(horizonType HorizonType) ApiStartAndCreateReachableLocationsRequest {
r.horizonType = &horizonType
return r
}
// Routing-relevant options like driving direction or the use of additional data. Use array notation like `options[trafficMode]=AVERAGE` to set options.
func (r ApiStartAndCreateReachableLocationsRequest) Options(options ReachableOptions) ApiStartAndCreateReachableLocationsRequest {
r.options = &options
return r
}
func (r ApiStartAndCreateReachableLocationsRequest) Execute() (*ReachableLocationsId, *http.Response, error) {
return r.ApiService.StartAndCreateReachableLocationsExecute(r)
}
/*
StartAndCreateReachableLocations Method for StartAndCreateReachableLocations
Starts the calculation of the sets of reachable and unreachable locations from the given ones and creates them as the result.
@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@return ApiStartAndCreateReachableLocationsRequest
*/
func (a *ReachableLocationsAPIService) StartAndCreateReachableLocations(ctx context.Context) ApiStartAndCreateReachableLocationsRequest {
return ApiStartAndCreateReachableLocationsRequest{
ApiService: a,
ctx: ctx,
}
}
// Execute executes the request
// @return ReachableLocationsId
func (a *ReachableLocationsAPIService) StartAndCreateReachableLocationsExecute(r ApiStartAndCreateReachableLocationsRequest) (*ReachableLocationsId, *http.Response, error) {
var (
localVarHTTPMethod = http.MethodPost
localVarPostBody interface{}
formFiles []formFile
localVarReturnValue *ReachableLocationsId
)
localBasePath, err := a.client.cfg.ServerURLWithContext(r.ctx, "ReachableLocationsAPIService.StartAndCreateReachableLocations")
if err != nil {
return localVarReturnValue, nil, &GenericOpenAPIError{error: err.Error()}
}
localVarPath := localBasePath + "/reachable-locations"
localVarHeaderParams := make(map[string]string)
localVarQueryParams := url.Values{}
localVarFormParams := url.Values{}
if r.horizon == nil {
return localVarReturnValue, nil, reportError("horizon is required and must be specified")
}
if *r.horizon < 1 {
return localVarReturnValue, nil, reportError("horizon must be greater than 1")
}
if r.locations == nil {
return localVarReturnValue, nil, reportError("locations is required and must be specified")
}
if r.waypoint != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "waypoint", r.waypoint, "form", "")
}
if r.routeId != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "routeId", r.routeId, "form", "")
}
if r.profile != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "profile", r.profile, "form", "")
} else {
var defaultValue string = "EUR_TRAILER_TRUCK"
r.profile = &defaultValue
}
parameterAddToHeaderOrQuery(localVarQueryParams, "horizon", r.horizon, "form", "")
if r.horizonType != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "horizonType", r.horizonType, "form", "")
} else {
var defaultValue HorizonType = "TRAVEL_TIME"
r.horizonType = &defaultValue
}
if r.options != nil {
parameterAddToHeaderOrQuery(localVarQueryParams, "options", r.options, "deepObject", "")
}
// to determine the Content-Type header
localVarHTTPContentTypes := []string{"application/json"}
// set Content-Type header
localVarHTTPContentType := selectHeaderContentType(localVarHTTPContentTypes)
if localVarHTTPContentType != "" {
localVarHeaderParams["Content-Type"] = localVarHTTPContentType
}
// to determine the Accept header
localVarHTTPHeaderAccepts := []string{"application/json"}
// set Accept header
localVarHTTPHeaderAccept := selectHeaderAccept(localVarHTTPHeaderAccepts)
if localVarHTTPHeaderAccept != "" {
localVarHeaderParams["Accept"] = localVarHTTPHeaderAccept
}
// body params
localVarPostBody = r.locations
if r.ctx != nil {
// API Key Authentication
if auth, ok := r.ctx.Value(ContextAPIKeys).(map[string]APIKey); ok {
if apiKey, ok := auth["apiKeyAuth"]; ok {
var key string
if apiKey.Prefix != "" {
key = apiKey.Prefix + " " + apiKey.Key
} else {
key = apiKey.Key
}
localVarHeaderParams["apiKey"] = key
}
}
}
req, err := a.client.prepareRequest(r.ctx, localVarPath, localVarHTTPMethod, localVarPostBody, localVarHeaderParams, localVarQueryParams, localVarFormParams, formFiles)
if err != nil {
return localVarReturnValue, nil, err
}
localVarHTTPResponse, err := a.client.callAPI(req)
if err != nil || localVarHTTPResponse == nil {
return localVarReturnValue, localVarHTTPResponse, err
}
localVarBody, err := io.ReadAll(localVarHTTPResponse.Body)
localVarHTTPResponse.Body.Close()
localVarHTTPResponse.Body = io.NopCloser(bytes.NewBuffer(localVarBody))
if err != nil {
return localVarReturnValue, localVarHTTPResponse, err
}
if localVarHTTPResponse.StatusCode >= 300 {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: localVarHTTPResponse.Status,
}
var v ErrorResponse
err = a.client.decode(&v, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
if err != nil {
newErr.error = err.Error()
return localVarReturnValue, localVarHTTPResponse, newErr
}
newErr.error = formatErrorMessage(localVarHTTPResponse.Status, &v)
newErr.model = v
return localVarReturnValue, localVarHTTPResponse, newErr
}
err = a.client.decode(&localVarReturnValue, localVarBody, localVarHTTPResponse.Header.Get("Content-Type"))
if err != nil {
newErr := &GenericOpenAPIError{
body: localVarBody,
error: err.Error(),
}
return localVarReturnValue, localVarHTTPResponse, newErr
}
return localVarReturnValue, localVarHTTPResponse, nil
}