forked from Just-Some-Bots/MusicBot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.ps1
341 lines (307 loc) · 11.2 KB
/
install.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
# This script is designed to be used without pulling the repository first!
# You can simply download and run it to have MusicBot installed for you.
# Currently the script only supports one installation per user account.
#
# Notice:
# If you want to run this .ps1 script without setting execution policy in PowerShell,
# you can make use of the following command in command-prompt.
#
# powershell.exe -noprofile -executionpolicy bypass -file install.ps1
#
# Last tested:
# Win 10 Home 22H2 x64 - 2024/09/26
# --------------------------------------------------CLI Parameters-----------------------------------------------------
param (
# -anybranch Enables the use of any named branch, if it exists on repo.
[switch]$anybranch = $false
)
# Where to put MusicBot by default. Updated by repo detection.
# prolly should be param, but someone who cares about windows can code for it.
$Install_Dir = (pwd).Path + '\MusicBot\'
# ---------------------------------------------Install notice and prompt-----------------------------------------------
"MusicBot Installer"
""
"MusicBot and this installer are provided under an MIT license."
"This software is provided 'as is' and may not be fit for any particular use, stated or otherwise."
"Please read the LICENSE file for full details."
""
"This installer attempts to provide automatic install for MusicBot and dependencies."
"It is recommended that you personally check the installer script before running it,"
"and verify the steps for your OS version are correct."
""
"Please consider contributing corrections or new steps if you find issues with this installer."
"You may also find installation guides on the wiki or community help on our discord server."
"Wiki:"
" https://just-some-bots.github.io/MusicBot/"
"Discord:"
" https://discord.gg/bots"
""
$iagree = Read-Host "Would you like to continue with the install? [y/n]"
if($iagree -ne "Y" -and $iagree -ne "y")
{
# exit early if the user does not want to continue.
Return
}
# First, unhide file extensions...
$FERegPath = 'HKCU:\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced'
$HideExt = (Get-ItemProperty -Path $FERegPath -Name "HideFileExt").HideFileExt
if ($HideExt -eq 1) {
""
"Microsoft hates you and hides file extensions by default."
"We're going to un-hide them to make things less confusing."
Set-ItemProperty -Name "HideFileExt" -Value 0 -Path $FERegPath -Force
}
# If no winget, try to download and install.
if (-Not (Get-Command winget -ErrorAction SilentlyContinue) )
{
""
"Microsoft WinGet tool is required to continue installing."
"It will be downloaded from:"
" https://aka.ms/getwinget "
""
"Please complete the Windows installer when prompted."
""
# download and run the installer.
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest -Uri "https://aka.ms/getwinget" -OutFile "winget.msixbundle"
$ProgressPreference = 'Continue'
Start-Process "winget.msixbundle"
# wait for user to finish installing winget...
$ready = Read-Host "Is WinGet installed and ready to continue? [y/n]"
if ($ready -ne "Y" -and $ready -ne "y") {
# exit if not ready.
Return
}
# check if winget is available post-install.
if (-Not (Get-Command winget -ErrorAction SilentlyContinue) ) {
"WinGet is not available. Installer cannot continue."
Return
}
}
#
""
"Checking WinGet can be used..."
"If prompted, you must agree to the MS terms to continue installing."
""
winget list -q Git.Git
""
# since windows is silly with certificates and certifi may not always work,
# we queitly spawn some requests that -may- populate the certificate store.
# this isn't a sustainable approach, but it seems to work...
$ProgressPreference = 'SilentlyContinue'
Invoke-WebRequest -Uri "https://discord.com" -OutFile "cert.fetch" 2>&1 | Out-Null
Invoke-WebRequest -Uri "https://spotify.com" -OutFile "cert.fetch" 2>&1 | Out-Null
$ProgressPreference = 'Continue'
Remove-Item "cert.fetch"
# -----------------------------------------------------CONSTANTS-------------------------------------------------------
$DEFAULT_URL_BASE = "https://discordapp.com/api"
#$MB_RepoURL = "https://github.com/Just-Some-Bots/MusicBot.git"
$MB_RepoURL = "https://github.com/itsthefae/MusicBot.git"
# ----------------------------------------------INSTALLING DEPENDENCIES------------------------------------------------
$NeedsEnvReload = 0
# Check if git is installed
"Checking if git is already installed..."
Invoke-Expression "winget list -q Git.Git" | Out-Null
if (!($LastExitCode -eq 0))
{
# install git
"Installing git..."
Invoke-Expression "winget install Git.Git"
$NeedsEnvReload = 1
"Done."
}
else
{
"Git already installed."
}
""
# Check if Any python 3 is installed
"Checking if python 3 is already installed..."
Invoke-Expression "winget list -q Python.Python.3" | Out-Null
if (!($LastExitCode -eq 0))
{
# install python version 3.11 with the py.exe launcher.
"Installing python..."
Invoke-Expression "winget install Python.Python.3.11 --custom \`"/passive Include_launcher=1\`""
$NeedsEnvReload = 1
"Done."
}
else
{
"Python 3 already installed."
}
""
# Check if ffmpeg is installed
"Checking if FFmpeg is already installed..."
Invoke-Expression "winget list -q ffmpeg" | Out-Null
if (!($LastExitCode -eq 0))
{
# install FFmpeg
"Installing FFmpeg..."
Invoke-Expression "winget install ffmpeg"
$NeedsEnvReload = 1
"Done."
}
else
{
"FFmpeg already installed."
}
""
# try to reload environment variables...
if ($NeedsEnvReload -eq 1)
{
$env:Path = [System.Environment]::GetEnvironmentVariable("Path", "Machine") + ";" + [System.Environment]::GetEnvironmentVariable("Path", "User")
}
# --------------------------------------------------PULLING THE BOT----------------------------------------------------
# Test if we need to pull the bot or not by checking for some files.
$MB_Reqs_File=(pwd).Path + '\requirements.txt'
$MB_Module_Dir=(pwd).Path + '\musicbot'
$MB_Git_Dir=(pwd).Path + '\.git'
if((Test-Path $MB_Reqs_File) -and (Test-Path $MB_Module_Dir) -and (Test-Path $MB_Git_Dir) ) {
""
"Installer detected an existing clone, and will continue installing with the current source."
""
$Install_Dir = (pwd).Path
} else {
""
"MusicBot currently has three branches available."
" master - Stable MusicBot, least updates and may at times be out-of-date."
" review - Newer MusicBot, usually stable with less updates than the dev branch."
" dev - The newest MusicBot, latest features and changes which may need testing."
if($anybranch) {
" * - WARNING: Any branch name is allowed, if it exists on github."
}
""
$experimental = Read-Host "Enter the branch name you want to install"
$experimental = $experimental.Trim()
switch($experimental) {
"dev" {
"Installing dev branch..."
$branch = "dev"
}
"review" {
"Installing review branch..."
$branch = "review"
}
default {
if($anybranch -and $experimental -and $experimental -ne "master")
{
"Installing with $experimental branch, if it exists..."
$branch = $experimental
}
else
{
"Installing master branch..."
$branch = "master"
}
}
}
Invoke-Expression "git clone $MB_RepoURL '$Install_Dir' -b $branch"
Invoke-Expression "cd '$Install_Dir'"
""
}
# --------------------------------------------INSTALL PYTHON DEPENDENCIES----------------------------------------------
if (Get-Command "python" -errorAction SilentlyContinue)
{
Invoke-Expression "python -c 'import sys; exit(0 if sys.version_info >= (3, 8) else 1)'" | Out-Null
if($LastExitCode -eq 0)
{
$PYTHON = "python"
}
}
$versionArray = "3.8", "3.9", "3.10", "3.11", "3.12"
foreach ($version in $versionArray)
{
Invoke-Expression "py -$version -c 'exit()' 2>&1" | Out-Null
if($LastExitCode -eq 0)
{
$PYTHON = "py -$version"
}
}
"Using $PYTHON to install and run MusicBot..."
""
Invoke-Expression "$PYTHON -m pip install --upgrade -r requirements.txt"
# -------------------------------------------------CONFIGURE THE BOT---------------------------------------------------
""
"MusicBot is almost ready to run, we just need to configure the bot."
"This installer provides an automated, but minimal, guided configuration."
"It will ask you to enter a bot token."
""
$iagree = Read-Host "Would you like to continue with configuration? [y/n]"
if($iagree -ne "Y" -and $iagree -ne "y")
{
"All done!"
"Remember to configure your bot token and other options before you start."
"You must open a new command prompt before using run.bat to start the MusicBot."
"MusicBot was installed to:"
" $Install_Dir"
Return
}
Copy-Item ".\config\example_options.ini" -Destination ".\config\options.ini"
# GET AND VERIFY TOKEN
""
"Please enter your bot token. This can be found in your discordapp developer page."
$token = Read-Host "Enter Token" -AsSecureString
$token_plain = [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($token))
$header = @{
"Authorization" = "Bot $token_plain"
"Content-Type" = "application/json"
}
$result = Invoke-WebRequest -Headers $header -Method "GET" -Uri "$DEFAULT_URL_BASE/users/@me"
$result_code = $result.StatusCode
$result_content = $result.Content
if (!($result_code -eq 200))
{
"Error getting user profile, is the token correct? ($result_code $result_content)"
""
"You can finish the configuration manually by editing the options.ini file in the config folder."
Return
}
$result_object = ConvertFrom-Json -InputObject $result_content
# Cause whoever wrote ConvertFrom-Json cmdlet was insane and use some strange data type instead
$result_table = @{}
$result_object.PsObject.Properties | ForEach-Object{
$result_table[$_.Name] = $_.Value
}
$result_table += @{"token" = $token_plain}
$config = (Get-Content -Path ".\config\options.ini") -creplace "bot_token", $token_plain
# GET PREFIX
$cprefix = Read-Host "Would you like to change the command prefix? [N/y]: "
if($cprefix -eq "Y" -or $cprefix -eq "y")
{
"Please enter the prefix you'd like for your bot."
$prefix = Read-Host "This is what comes before all commands. The default is [!] "
$config = $config -creplace "CommandPrefix = !", "CommandPrefix = $prefix"
}
else
{
"Using default prefix [!]"
}
# GET OWNER
$cowner = Read-Host "Would you like to automatically get the owner ID from the OAuth application? [Y/n]: "
if($cowner -eq "N" -or $cowner -eq "n")
{
$owner = Read-Host "Please enter the owner ID. "
$config = $config -creplace "OwnerID = auto", "OwnerID = $owner"
}
else
{
"Getting owner ID from OAuth application..."
}
# GET AP
$cap = Read-Host "Would you like to enable the autoplaylist? [Y/n] "
if($cap -eq "N" -or $cap -eq "n")
{
$config = $config -creplace "UseAutoPlaylist = yes", "UseAutoPlaylist = no"
"Autoplaylist disabled"
}
else
{
"Autoplaylist enabled"
}
"Saving your config..."
Set-Content -Path ".\config\options.ini" -Value $config
"You can use run.bat to run the bot."
"Restart your command prompt first!"
"MusicBot was installed to:"
" $Install_Dir"