-
Notifications
You must be signed in to change notification settings - Fork 187
/
GitHubUsers.ps1
458 lines (359 loc) · 13.9 KB
/
GitHubUsers.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
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
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.
@{
GitHubUserTypeName = 'GitHub.User'
GitHubUserContextualInformationTypeName = 'GitHub.UserContextualInformation'
}.GetEnumerator() | ForEach-Object {
Set-Variable -Scope Script -Option ReadOnly -Name $_.Key -Value $_.Value
}
filter Get-GitHubUser
{
<#
.SYNOPSIS
Retrieves information about the specified user on GitHub.
.DESCRIPTION
Retrieves information about the specified user on GitHub.
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
.PARAMETER UserName
The GitHub user to retrieve information for.
If not specified, will retrieve information on all GitHub users
(and may take a while to complete).
.PARAMETER Current
If specified, gets information on the current user.
.PARAMETER AccessToken
If provided, this will be used as the AccessToken for authentication with the
REST Api. Otherwise, will attempt to use the configured value or will run unauthenticated.
.NOTES
The email key in the following response is the publicly visible email address from the
user's GitHub profile page. You only see publicly visible email addresses when
authenticated with GitHub.
When setting up your profile, a user can select a primary email address to be public
which provides an email entry for this endpoint. If the user does not set a public
email address for email, then it will have a value of null.
.INPUTS
GitHub.User
.OUTPUTS
GitHub.User
.EXAMPLE
Get-GitHubUser -UserName octocat
Gets information on just the user named 'octocat'
.EXAMPLE
'octocat', 'PowerShellForGitHubTeam' | Get-GitHubUser
Gets information on the users named 'octocat' and 'PowerShellForGitHubTeam'
.EXAMPLE
Get-GitHubUser
Gets information on every GitHub user.
.EXAMPLE
Get-GitHubUser -Current
Gets information on the current authenticated user.
#>
[CmdletBinding(DefaultParameterSetName = 'ListAndSearch')]
[OutputType({$script:GitHubUserTypeName})]
param(
[Parameter(
ValueFromPipeline,
ValueFromPipelineByPropertyName,
ParameterSetName='ListAndSearch')]
[Alias('Name')]
[Alias('User')]
[string] $UserName,
[Parameter(ParameterSetName='Current')]
[switch] $Current,
[string] $AccessToken
)
Write-InvocationLog
$params = @{
'AccessToken' = $AccessToken
'TelemetryEventName' = $MyInvocation.MyCommand.Name
}
if ($Current)
{
return (Invoke-GHRestMethod -UriFragment "user" -Description "Getting current authenticated user" -Method 'Get' @params |
Add-GitHubUserAdditionalProperties)
}
elseif ([String]::IsNullOrEmpty($UserName))
{
return (Invoke-GHRestMethodMultipleResult -UriFragment 'users' -Description 'Getting all users' @params |
Add-GitHubUserAdditionalProperties)
}
else
{
return (Invoke-GHRestMethod -UriFragment "users/$UserName" -Description "Getting user $UserName" -Method 'Get' @params |
Add-GitHubUserAdditionalProperties)
}
}
filter Get-GitHubUserContextualInformation
{
<#
.SYNOPSIS
Retrieves contextual information about the specified user on GitHub.
.DESCRIPTION
Retrieves contextual information about the specified user on GitHub.
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
.PARAMETER User
The GitHub user to retrieve information for.
.PARAMETER OrganizationId
The ID of an Organization. When provided, this returns back the context for the user
in relation to this Organization.
.PARAMETER RepositoryId
The ID for a Repository. When provided, this returns back the context for the user
in relation to this Repository.
.PARAMETER IssueId
The ID for a Issue. When provided, this returns back the context for the user
in relation to this Issue.
NOTE: This is the *id* of the issue and not the issue *number*.
.PARAMETER PullRequestId
The ID for a PullRequest. When provided, this returns back the context for the user
in relation to this Pull Request.
NOTE: This is the *id* of the pull request and not the pull request *number*.
.PARAMETER AccessToken
If provided, this will be used as the AccessToken for authentication with the
REST Api. Otherwise, will attempt to use the configured value or will run unauthenticated.
.INPUTS
GitHub.Issue
GitHub.Organization
GitHub.PullRequest
GitHub.Repository
GitHub.User
.OUTPUTS
GitHub.UserContextualInformation
.EXAMPLE
Get-GitHubUserContextualInformation -User octocat
.EXAMPLE
Get-GitHubUserContextualInformation -User octocat -RepositoryId 1300192
.EXAMPLE
$repo = Get-GitHubRepository -OwnerName microsoft -RepositoryName 'PowerShellForGitHub'
$repo | Get-GitHubUserContextualInformation -User octocat
.EXAMPLE
Get-GitHubIssue -OwnerName microsoft -RepositoryName PowerShellForGitHub -Issue 70 |
Get-GitHubUserContextualInformation -User octocat
#>
[CmdletBinding(DefaultParameterSetName = 'NoContext')]
[OutputType({$script:GitHubUserContextualInformationTypeName})]
param(
[Parameter(
Mandatory,
ValueFromPipeline,
ValueFromPipelineByPropertyName)]
[Alias('Name')]
[Alias('User')]
[string] $UserName,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Organization')]
[int64] $OrganizationId,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Repository')]
[int64] $RepositoryId,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='Issue')]
[int64] $IssueId,
[Parameter(
Mandatory,
ValueFromPipelineByPropertyName,
ParameterSetName='PullRequest')]
[int64] $PullRequestId,
[string] $AccessToken
)
Write-InvocationLog
$getParams = @()
$contextType = [String]::Empty
$contextId = 0
if ($PSCmdlet.ParameterSetName -ne 'NoContext')
{
if ($PSCmdlet.ParameterSetName -eq 'Organization')
{
$getParams += 'subject_type=organization'
$getParams += "subject_id=$OrganizationId"
$contextType = 'OrganizationId'
$contextId = $OrganizationId
}
elseif ($PSCmdlet.ParameterSetName -eq 'Repository')
{
$getParams += 'subject_type=repository'
$getParams += "subject_id=$RepositoryId"
$contextType = 'RepositoryId'
$contextId = $RepositoryId
}
elseif ($PSCmdlet.ParameterSetName -eq 'Issue')
{
$getParams += 'subject_type=issue'
$getParams += "subject_id=$IssueId"
$contextType = 'IssueId'
$contextId = $IssueId
}
elseif ($PSCmdlet.ParameterSetName -eq 'PullRequest')
{
$getParams += 'subject_type=pull_request'
$getParams += "subject_id=$PullRequestId"
$contextType = 'PullRequestId'
$contextId = $PullRequestId
}
}
$params = @{
'UriFragment' = "users/$UserName/hovercard`?" + ($getParams -join '&')
'Method' = 'Get'
'Description' = "Getting hovercard information for $UserName"
'AcceptHeader' = $script:hagarAcceptHeader
'AccessToken' = $AccessToken
'TelemetryEventName' = $MyInvocation.MyCommand.Name
}
$result = Invoke-GHRestMethod @params
foreach ($item in $result.contexts)
{
$item.PSObject.TypeNames.Insert(0, $script:GitHubUserContextualInformationTypeName)
if (-not (Get-GitHubConfiguration -Name DisablePipelineSupport))
{
Add-Member -InputObject $item -Name 'UserName' -Value $UserName -MemberType NoteProperty -Force
if ($PSCmdlet.ParameterSetName -ne 'NoContext')
{
Add-Member -InputObject $item -Name $contextType -Value $contextId -MemberType NoteProperty -Force
}
}
}
return $result
}
function Set-GitHubProfile
{
<#
.SYNOPSIS
Updates profile information for the current authenticated user on GitHub.
.DESCRIPTION
Updates profile information for the current authenticated user on GitHub.
The Git repo for this module can be found here: http://aka.ms/PowerShellForGitHub
.PARAMETER Name
The new name of the user.
.PARAMETER Email
The publicly visible email address of the user.
.PARAMETER Blog
The new blog URL of the user.
.PARAMETER Company
The new company of the user.
.PARAMETER Location
The new location of the user.
.PARAMETER Bio
The new short biography of the user.
.PARAMETER Hireable
Specify to indicate a change in hireable availability for the current authenticated user's
GitHub profile. To change to "not hireable", specify -Hireable:$false
.PARAMETER PassThru
Returns the updated User Profile. By default, this cmdlet does not generate any output.
You can use "Set-GitHubConfiguration -DefaultPassThru" to control the default behavior
of this switch.
.PARAMETER AccessToken
If provided, this will be used as the AccessToken for authentication with the
REST Api. Otherwise, will attempt to use the configured value or will run unauthenticated.
.OUTPUTS
GitHub.User
.EXAMPLE
Set-GitHubProfile -Location 'Seattle, WA' -Hireable:$false
Updates the current user to indicate that their location is "Seattle, WA" and that they
are not currently hireable.
#>
[CmdletBinding(SupportsShouldProcess)]
[OutputType({$script:GitHubUserTypeName})]
[Alias('Update-GitHubCurrentUser')] # Non-standard usage of the Update verb, but done to avoid a breaking change post 0.14.0
param(
[string] $Name,
[string] $Email,
[string] $Blog,
[string] $Company,
[string] $Location,
[string] $Bio,
[switch] $Hireable,
[switch] $PassThru,
[string] $AccessToken
)
Write-InvocationLog
$hashBody = @{}
if ($PSBoundParameters.ContainsKey('Name')) { $hashBody['name'] = $Name }
if ($PSBoundParameters.ContainsKey('Email')) { $hashBody['email'] = $Email }
if ($PSBoundParameters.ContainsKey('Blog')) { $hashBody['blog'] = $Blog }
if ($PSBoundParameters.ContainsKey('Company')) { $hashBody['company'] = $Company }
if ($PSBoundParameters.ContainsKey('Location')) { $hashBody['location'] = $Location }
if ($PSBoundParameters.ContainsKey('Bio')) { $hashBody['bio'] = $Bio }
if ($PSBoundParameters.ContainsKey('Hireable')) { $hashBody['hireable'] = $Hireable.ToBool() }
if (-not $PSCmdlet.ShouldProcess('Update Current GitHub User'))
{
return
}
$params = @{
'UriFragment' = 'user'
'Method' = 'Patch'
'Body' = (ConvertTo-Json -InputObject $hashBody)
'Description' = "Updating current authenticated user"
'AccessToken' = $AccessToken
'TelemetryEventName' = $MyInvocation.MyCommand.Name
}
$result = (Invoke-GHRestMethod @params | Add-GitHubUserAdditionalProperties)
if (Resolve-ParameterWithDefaultConfigurationValue -Name PassThru -ConfigValueName DefaultPassThru)
{
return $result
}
}
filter Add-GitHubUserAdditionalProperties
{
<#
.SYNOPSIS
Adds type name and additional properties to ease pipelining to GitHub User objects.
.PARAMETER InputObject
The GitHub object to add additional properties to.
.PARAMETER TypeName
The type that should be assigned to the object.
.PARAMETER Name
The name of the user. This information might be obtainable from InputObject, so this
is optional based on what InputObject contains.
.PARAMETER Id
The ID of the user. This information might be obtainable from InputObject, so this
is optional based on what InputObject contains.
.INPUTS
[PSCustomObject]
.OUTPUTS
GitHub.User
#>
[CmdletBinding()]
[Diagnostics.CodeAnalysis.SuppressMessageAttribute("PSUseSingularNouns", "", Justification="Internal helper that is definitely adding more than one property.")]
param(
[Parameter(
Mandatory,
ValueFromPipeline)]
[AllowNull()]
[AllowEmptyCollection()]
[PSCustomObject[]] $InputObject,
[ValidateNotNullOrEmpty()]
[string] $TypeName = $script:GitHubUserTypeName,
[string] $Name,
[int64] $Id
)
foreach ($item in $InputObject)
{
$item.PSObject.TypeNames.Insert(0, $TypeName)
if (-not (Get-GitHubConfiguration -Name DisablePipelineSupport))
{
$userName = $item.login
if ([String]::IsNullOrEmpty($userName) -and $PSBoundParameters.ContainsKey('Name'))
{
$userName = $Name
}
if (-not [String]::IsNullOrEmpty($userName))
{
Add-Member -InputObject $item -Name 'UserName' -Value $userName -MemberType NoteProperty -Force
}
$userId = $item.id
if (($userId -eq 0) -and $PSBoundParameters.ContainsKey('Id'))
{
$userId = $Id
}
if ($userId -ne 0)
{
Add-Member -InputObject $item -Name 'UserId' -Value $userId -MemberType NoteProperty -Force
}
}
Write-Output $item
}
}