This repository has been archived by the owner on Dec 15, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Send-Pokemon.ps1
428 lines (372 loc) · 16.5 KB
/
Send-Pokemon.ps1
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
<#
.NOTES
NAME: Send-Pokemon.ps1
Type: PowerShell
AUTHOR: David Schulte
DATE: 2022-06-20
EMAIL: [email protected]
Updated:
Date:
VERSION HISTORY:
0.1 - 2022-06-20 - Initial Release
TODO:
N\A
.SYNOPSIS
Sends a Pokemon image & stats to a Teams channel.
.DESCRIPTION
The Send-Pokemon script sends a Pokemon image & stats to a Teams channel using a Teams webhook connector URI.
This script will only send to teams if the $DeployPokemon variable is set to true which is randomized.
Pokemon images & facts are pulled from the pokeapi.glitch.me API
Unless the -Verbose parameter is used, no output is displayed.
.PARAMETER TeamsURI
A string that defines where the Microsoft Teams connector URI sends information to.
.EXAMPLE
.\Send-Pokemon.ps1 -TeamsURI 'https://outlook.office.com/webhook/123/123/123/.....'
Using the defined webhooks connector URI a random Pokemon image & stats are sent to the webhooks Teams channel.
No output is displayed to the console.
.EXAMPLE
.\Send-Pokemon.ps1 -TeamsURI 'https://outlook.office.com/webhook/123/123/123/.....' -Verbose
Using the defined webhooks connector URI a random Pokemon image & stats are sent to the webhooks Teams channel.
Output is displayed to the console.
.INPUTS
TeamsURI
.OUTPUTS
Console, TXT
.LINK
Celerium - https://www.celerium.org/
Pokemon Data - pokeapi.glitch.me
#>
<############################################################################################
Code
############################################################################################>
#Requires -Version 5.0
#Region [ Parameters ]
[CmdletBinding()]
param(
[Parameter(ValueFromPipeline = $true, Mandatory=$true)]
[ValidateNotNullOrEmpty()]
[String]$TeamsURI
)
#EndRegion [ Parameters ]
Write-Verbose ''
Write-Verbose "START - $(Get-Date -Format yyyy-MM-dd-HH:mm)"
Write-Verbose ''
Write-Verbose " - (1/3) - $(Get-Date -Format MM-dd-HH:mm) - Gathering Pokemon Data"
#Region [ Prerequisites ]
$Log = "C:\Celerium\Logs\Send-Pokemon-Report"
$TXTReport = "$Log\Send-PokemonLog.txt"
#Min & Max not compatible with -Count in PS5
$CurrentDate = (Get-Date).DayOfWeek.value__
$RandomDate = 1..5 | Get-Random -Count 2
$DeployPokemon = foreach ($Number in $RandomDate){
$Match = if ( $CurrentDate -eq $Number ){$true}else{$false}
$Match
}
if ($DeployPokemon -contains $true){
Write-Verbose " - - $(Get-Date -Format MM-dd-HH:mm) - [ $CurrentDate | $RandomDate ]"
}
else{
Write-Verbose " - - $(Get-Date -Format MM-dd-HH:mm) - [ $CurrentDate | $RandomDate ]"
Write-Verbose " - - $(Get-Date -Format MM-dd-HH:mm) - Sorry, No wild Pokemon were found today."
exit
}
#EndRegion [ Prerequisites ]
#Region [ Main Code ]
try {
$PokemonCounts = (Invoke-RestMethod 'https://pokeapi.glitch.me/v1/pokemon/counts' -ErrorAction Stop).total + 1
$PokemonNumber = Get-Random -Minimum 1 -Maximum $PokemonCounts
$PokemonData = Invoke-RestMethod -Uri "https://pokeapi.glitch.me/v1/pokemon/$PokemonNumber" -ErrorAction Stop
if ($PokemonData.Count -gt 1){
$PokemonName = ($PokemonData | Select-Object -First 1).name
Write-Verbose " - - $(Get-Date -Format MM-dd-HH:mm) - $PokemonName has [ $($PokemonData.Count) ] values"
$PokemonData = $PokemonData | Get-Random -Count 1
}
}
catch {
Write-Error $_
if ( (Test-Path -Path $Log -PathType Container) -eq $false ){
New-Item -Path $Log -ItemType Directory > $null
}
(Get-Date -Format yyyy-MM-dd-HH:mm) + " - " + "[ Step (1/3) ]" + " - " + $_.Exception.Message | Out-File $TXTReport -Append -Encoding utf8
exit
}
#EndRegion [ Main Code ]
Write-Verbose " - (2/3) - $(Get-Date -Format MM-dd-HH:mm) - Formatting Pokemon Data"
#Region [ Adjust for meta types ]
switch ($PokemonData){
{$_.starter -eq $true} {
$TitleText = "A starter Pokemon has appeared!"
$TitleColor = "light"
}
{$_.Legendary -eq $true} {
$TitleText = "A Legendary Pokemon has appeared!"
$TitleColor = "good"
}
{$_.Mythical -eq $true} {
$TitleText = "A Mythical Pokemon has appeared!"
$TitleColor = "warning"
}
{$_.UltraBeast -eq $true} {
$TitleText = "A UltraBeast Pokemon has appeared!"
$TitleColor = "warning"
}
{$_.Mega -eq $true} {
$TitleText = "A Mega Pokemon has appeared!"
$TitleColor = "attention"
}
default {
$TitleText = "A wild Pokemon has appeared!"
$TitleColor = "default"
}
}
#EndRegion [ Adjust for meta types ]
Write-Verbose " - (3/3) - $(Get-Date -Format MM-dd-HH:mm) - Sending Pokemon Data"
#Region [ Teams Code ]
$JSONBody = @"
{
"type": "message",
"attachments": [
{
"contentType": "application/vnd.microsoft.card.adaptive",
"contentUrl": null,
"content": {
"$('$schema')": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.4",
"body": [
{
"type": "TextBlock",
"size": "Large",
"weight": "Bolder",
"color": "$TitleColor",
"text": " $TitleText"
},
{
"type": "ColumnSet",
"style": "emphasis",
"columns": [
{
"type": "Column",
"style": "default",
"items": [
{
"type": "Image",
"url": "$($PokemonData.sprite)",
"altText": "$($PokemonData.name)",
"msTeams": {
"allowExpand": true
}
},
{
"type": "TextBlock",
"text": "Gen$($PokemonData.gen): $($PokemonData.name) - #$($PokemonData.number)",
"wrap": true
}
]
},
{
"type": "Column",
"items": [
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Type: $( $PokemonData.types -join ', ' )"
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Height: $( (($PokemonData.height) -replace ("'",'ft ')) -replace ('"','in'))"
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Weight: $($PokemonData.weight)"
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": ""
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Evolution State: $( $PokemonData.family.evolutionStage )"
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Evolution Line: $( $PokemonData.family.evolutionline -join ', ' )",
"wrap": true
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Description: $( $PokemonData.description )",
"wrap": true
}
]
}
]
},
{
"type": "Column",
"items": [
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Abilities:"
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Normal: $( $PokemonData.abilities.normal -join ', ' ) "
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Hidden: $( $PokemonData.abilities.hidden -join ', ' ) "
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": ""
}
]
},
{
"type": "Container",
"items": [
{
"type": "TextBlock",
"text": "Meta:"
}
]
},
{
"type": "Container",
"style": "default",
"id": "meta",
"isVisible": false,
"items": [
{
"type": "TextBlock",
"text": "Starter: $( $PokemonData.starter )"
},
{
"type": "TextBlock",
"text": "Legendary: $( $PokemonData.legendary )"
},
{
"type": "TextBlock",
"text": "Mythical: $( $PokemonData.mythical )"
},
{
"type": "TextBlock",
"text": "UltraBeast: $( $PokemonData.ultraBeast )"
},
{
"type": "TextBlock",
"text": "Mega: $( $PokemonData.mega )"
}
]
}
]
}
]
}
],
"actions": [
{
"type": "Action.OpenUrl",
"title": "Research more Pokemon",
"url": "https://regalion.surge.sh/"
},
{
"type": "Action.OpenUrl",
"title": "Source",
"url": "$($PokemonData.sprite)"
},
{
"type": "Action.ToggleVisibility",
"title": "Show Meta",
"targetElements": [
{
"elementId": "meta",
"isVisible": true
}
]
},
{
"type": "Action.ToggleVisibility",
"title": "Hide Meta!",
"targetElements": [
{
"elementId": "meta",
"isVisible": false
}
]
}
],
"msTeams": {
"width": "Full"
}
}
}
]
}
"@
try {
Invoke-RestMethod -Uri $TeamsURI -Method Post -ContentType 'application/json' -Body $JsonBody -ErrorAction Stop > $null
}
catch {
Write-Error $_
if ( (Test-Path -Path $Log -PathType Container) -eq $false ){
New-Item -Path $Log -ItemType Directory > $null
}
(Get-Date -Format yyyy-MM-dd-HH:mm) + " - " + "[ Step (3/3) ]" + " - " + $_.Exception.Message | Out-File $TXTReport -Append -Encoding utf8
exit
}
#EndRegion [ Teams Code ]
Write-Verbose ''
Write-Verbose "End - $(Get-Date -Format yyyy-MM-dd-HH:mm)"
Write-Verbose ''