-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSwapiPS.psm1
396 lines (362 loc) · 11 KB
/
SwapiPS.psm1
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
function Invoke-SWApiRequest {
<#
.SYNOPSIS
Support function for the SWAPI module
.DESCRIPTION
This function does the actual restmethod call against the API
.LINK
https://github.com/rumart/SupportBeePS
https://adatum.no
https://rudimartinsen.com
.NOTES
Info
Author: Rudi Martinsen / Intility AS and Martin Ehrnst / Intility AS
Date: 16/01-2018
Version: 0.2.0
Revised: 27/01-2018
Changelog:
0.2.0 -- Retrieves all objects as the default
.PARAMETER Resource
The resource to work with, i.e. Films
.PARAMETER Query
The search term to query for
.PARAMETER Uri
The full URI of an API call
.EXAMPLE
Invoke-SWApiRequest -Resource "films"
Retrieves all the films in the Star Wars Universe
.EXAMPLE
Invoke-SWApiRequest -Resource people -Query "skywalker"
Searches for people with the name skywalker
#>
[CmdletBinding()]
param(
[parameter(ParameterSetName="Res")]
$Resource,
[parameter(ParameterSetName="Res")]
$Query,
[parameter(ParameterSetName="Uri")]
$Uri,
$Method = "GET"
)
$baseUrl = "https://swapi.co/api/"
$output = @()
if($Uri){
Write-Verbose $uri
$output = Invoke-RestMethod -Method $Method -Uri $uri
}
else{
if($Query){
$query = "?search=" + $query
}
$uri = $baseUrl + $Resource + "/" + $Query
$response = Invoke-RestMethod -Method $Method -Uri $Uri
if($response.next){
while($response.next){
Write-Verbose $response.results.count
$output += $response.results
$response = Invoke-RestMethod -Method $Method -Uri $response.next
if(!$response.next){
$output += $response.results
}
}
}
else{
$output = $response
}
}
if($output.results -and $output -is [pscustomobject]){
$output.results
}
else{
$output
}
}
function Get-SWAPIPeople {
<#
.SYNOPSIS
Retrieve information about Star Wars people
.DESCRIPTION
This function retrieves information about the people in the Star Wars universe
through the open https://swapi.co API
.LINK
https://github.com/rumart/SupportBeePS
https://adatum.no
https://rudimartinsen.com
.NOTES
Info
Author: Rudi Martinsen / Intility AS and Martin Ehrnst / Intility AS
Date: 16/01-2018
Version: 0.2.0
Revised: 27/01-2018
Changelog:
0.2.0 -- Adjusted to the new Invoke-SWAPIRequestmethod
.PARAMETER Id
Filter on the object with the specific Id
.PARAMETER Query
Use this parameter to query for (part of) a name
.EXAMPLE
Get-SWAPIPeople
Retrieves all the people in the Star Wars Universe
.EXAMPLE
Get-SWAPIPeople -Id 1
Retrieves the object with the Id 1
.EXAMPLE
Get-SWAPIPeople -Query "skywalker"
Searches for people with the name skywalker
#>
[CmdletBinding()]
param(
[int]
$Id,
[string]
$Query
)
$resource = "people"
if($Id){
$resource += "/" + $Id
}
$method = "GET"
$response = Invoke-SWApiRequest -Method $method -Resource $resource -Query $Query
$response
}
function Get-SWAPIPlanet {
<#
.SYNOPSIS
Retrieve information about Star Wars planets
.DESCRIPTION
This function retrieves information about the planets in the Star Wars universe
through the open https://swapi.co API
.LINK
https://github.com/rumart/SupportBeePS
https://adatum.no
https://rudimartinsen.com
.NOTES
Info
Author: Rudi Martinsen / Intility AS and Martin Ehrnst / Intility AS
Date: 16/01-2018
Version: 0.2.0
Revised: 27/01-2018
Changelog:
0.2.0 -- Adjusted to the new Invoke-SWAPIRequestmethod
.PARAMETER Id
Filter on the object with the specific Id
.PARAMETER Query
Use this parameter to query for (part of) a name
.EXAMPLE
Get-SWAPIPlanet
Retrieves all the planets in the Star Wars Universe
.EXAMPLE
Get-SWAPIPlanet -Id 1
Retrieves the object with the Id 1
.EXAMPLE
Get-SWAPIPlanet -Query "tatto"
Searches for planets with the given name
#>
[CmdletBinding()]
param(
[int]
$Id,
[string]
$Query
)
$resource = "planets"
if($Id){
$resource += "/" + $Id
}
$method = "GET"
$response = Invoke-SWApiRequest -Method $method -Resource $resource -Query $Query
$response
}
function Get-SWAPIVehicle {
<#
.SYNOPSIS
Retrieve information about Star Wars vehicles
.DESCRIPTION
This function retrieves information about the vehicles in the Star Wars universe
through the open https://swapi.co API
.LINK
https://github.com/rumart/SupportBeePS
https://adatum.no
https://rudimartinsen.com
.NOTES
Info
Author: Rudi Martinsen / Intility AS and Martin Ehrnst / Intility AS
Date: 16/01-2018
Version: 0.2.0
Revised: 27/01-2018
Changelog:
0.2.0 -- Adjusted to the new Invoke-SWAPIRequestmethod
.PARAMETER Id
Filter on the object with the specific Id
.PARAMETER Query
Use this parameter to query for (part of) a name
.EXAMPLE
Get-SWAPIVehicle
Retrieves all the vehicles in the Star Wars Universe
.EXAMPLE
Get-SWAPIVehicle -Id 1
Retrieves the object with the Id 1
.EXAMPLE
Get-SWAPIVehicle -Query "at"
Searches for vehicles with the given name
#>
[CmdletBinding()]
param(
[int]
$Id,
[string]
$Query
)
$resource = "vehicles"
if($Id){
$resource += "/" + $Id
}
$method = "GET"
$response = Invoke-SWApiRequest -Method $method -Resource $resource -Query $Query
$response
}
function Get-SWAPIStarships {
<#
.SYNOPSIS
Retrieve information about Star Wars starships
.DESCRIPTION
This function retrieves information about the starships in the Star Wars universe
through the open https://swapi.co API
.LINK
https://github.com/rumart/SupportBeePS
https://adatum.no
https://rudimartinsen.com
.NOTES
Info
Author: Rudi Martinsen / Intility AS and Martin Ehrnst / Intility AS
Date: 16/01-2018
Version: 0.2.0
Revised: 27/01-2018
Changelog:
0.2.0 -- Adjusted to the new Invoke-SWAPIRequestmethod
.PARAMETER Id
Filter on the object with the specific Id
.PARAMETER Query
Use this parameter to query for (part of) a name
.EXAMPLE
Get-SWAPIStarships
Retrieves all the starships in the Star Wars Universe
.EXAMPLE
Get-SWAPIStarships -Id 1
Retrieves the object with the Id 1
.EXAMPLE
Get-SWAPIStarships -Query "falcon"
Searches for starships with the given name
#>
[CmdletBinding()]
param(
[int]
$Id,
[string]
$Query
)
$resource = "starships"
if($Id){
$resource += "/" + $Id
}
$method = "GET"
$response = Invoke-SWApiRequest -Method $method -Resource $resource -Query $Query
$response
}
function Get-SWAPIFilms {
<#
.SYNOPSIS
Retrieve information about Star Wars episodes
.DESCRIPTION
This function retrieves information about the episodes in the Star Wars universe
through the open https://swapi.co API
.LINK
https://github.com/rumart/SupportBeePS
https://adatum.no
https://rudimartinsen.com
.NOTES
Info
Author: Rudi Martinsen / Intility AS and Martin Ehrnst / Intility AS
Date: 16/01-2018
Version: 0.2.0
Revised: 27/01-2018
Changelog:
0.2.0 -- Adjusted to the new Invoke-SWAPIRequestmethod
.PARAMETER Id
Filter on the object with the specific Id
.PARAMETER Query
Use this parameter to query for (part of) a name
.EXAMPLE
Get-SWAPIFilms
Retrieves all the episodes in the Star Wars Universe
.EXAMPLE
Get-SWAPIFilms -Id 1
Retrieves the object with the Id 1
.EXAMPLE
Get-SWAPIFilms -Query "jedi"
Searches for episodes with the given name
#>
[CmdletBinding()]
param(
[int]
$Id,
[string]
$Query
)
$resource = "films"
if($Id){
$resource += "/" + $Id
}
$method = "GET"
$response = Invoke-SWApiRequest -Method $method -Resource $resource -Query $Query
$response
}
function Get-SWAPISpecies {
<#
.SYNOPSIS
Retrieve information about Star Wars species
.DESCRIPTION
This function retrieves information about the species in the Star Wars universe
through the open https://swapi.co API
.LINK
https://github.com/rumart/SupportBeePS
https://adatum.no
https://rudimartinsen.com
.NOTES
Info
Author: Rudi Martinsen / Intility AS and Martin Ehrnst / Intility AS
Date: 16/01-2018
Version: 0.2.0
Revised: 27/01-2018
Changelog:
0.2.0 -- Adjusted to the new Invoke-SWAPIRequestmethod
.PARAMETER Id
Filter on the object with the specific Id
.PARAMETER Query
Use this parameter to query for (part of) a name
.EXAMPLE
Get-SWAPISpecies
Retrieves all the species in the Star Wars Universe
.EXAMPLE
Get-SWAPISpecies -Id 1
Retrieves the object with the Id 1
.EXAMPLE
Get-SWAPISpecies -Query "human"
Searches for species with the given name
#>
[CmdletBinding()]
param(
[int]
$Id,
[string]
$Query
)
$resource = "species"
if($Id){
$resource += "/" + $Id
}
$method = "GET"
$response = Invoke-SWApiRequest -Method $method -Resource $resource -Query $Query
$response
}