-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathslack.ps1
51 lines (42 loc) · 1.36 KB
/
slack.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
param
(
[Alias('ch')][string] $Channel
, [Alias('team')][string] $TeamNickname = "gn"
)
# https://slack.com/app_redirect?team={TEAM_ID}&channel={CHANNEL_NAME|CHANNEL_ID}
# Examples:
# https://slack.com/app_redirect?team=T04C55E8R&channel=C04C55E9X
Write-Host " * Parameters"
Write-Host "Channel: '$Channel'"
Write-Host "TeamNickname: '$TeamNickname'"
$baseUrl = ""
$current = Split-Path (Get-Variable MyInvocation).Value.MyCommand.Path
$configFile = "$($current)\slack.Config.json"
Write-Host " * Loading Config: '$configFile'"
$configContent = Get-Content -Raw -Path $configFile
$config = ConvertFrom-Json $configContent
if (!$Channel -and !$TeamNickname) {
$baseUrl = "slack://open"
}
else {
$teamItem = $config.Teams.Where( {
$_.Name -like $TeamNickname -or
$_.Nickname -like $TeamNickname })
if (!$teamItem) {
throw "No '$TeamNickname' team found in the config...."
}
if ($Channel) {
$baseUrl = "https://slack.com/app_redirect?team=$($teamItem.Id)&channel=$($Channel)"
}
else {
$baseUrl = "slack://open?team=$($teamItem.Id)"
}
}
Write-Host " * Local Variables"
Write-Host "teamItem.Name: '$($teamItem.Name)'"
Write-Host "teamItem.Id: '$($teamItem.Id)'"
Write-Host "baseUrl: '$($baseUrl)'"
Write-Host " * Opening Slack"
Start-Process $baseUrl
Write-Host "----"
Write-Host "BOOYAH!"