-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcodex-proxy.ps1
More file actions
449 lines (374 loc) · 12.1 KB
/
codex-proxy.ps1
File metadata and controls
449 lines (374 loc) · 12.1 KB
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
param(
[ValidateSet("start", "stop", "restart", "status", "log")]
[string]$Command = "start"
)
Set-StrictMode -Version Latest
$ErrorActionPreference = "Stop"
function Get-ConfigEnvironmentValue {
param([string]$Name)
$processValue = [Environment]::GetEnvironmentVariable($Name, "Process")
if (-not [string]::IsNullOrWhiteSpace($processValue)) {
return $processValue
}
$userValue = [Environment]::GetEnvironmentVariable($Name, "User")
if (-not [string]::IsNullOrWhiteSpace($userValue)) {
return $userValue
}
return $null
}
$HttpProxyValue = Get-ConfigEnvironmentValue -Name "CODEX_HTTP_PROXY"
$AllProxyValue = Get-ConfigEnvironmentValue -Name "CODEX_ALL_PROXY"
$NoProxyValue = Get-ConfigEnvironmentValue -Name "CODEX_NO_PROXY"
$StateDirValue = Get-ConfigEnvironmentValue -Name "CODEX_PROXY_STATE_DIR"
$HttpProxy = if ($HttpProxyValue) { $HttpProxyValue } else { "http://127.0.0.1:7890" }
$AllProxy = if ($AllProxyValue) { $AllProxyValue } else { "socks5://127.0.0.1:7890" }
$NoProxy = if ($NoProxyValue) { $NoProxyValue } else { "localhost,127.0.0.1,::1" }
$StateDir = if ($StateDirValue) {
$StateDirValue
} else {
Join-Path $env:LOCALAPPDATA "codex-proxy"
}
$LogDir = Join-Path $StateDir "Logs"
$LogFile = Join-Path $LogDir "codex-proxy.log"
$PidFile = Join-Path $StateDir "codex.pid"
New-Item -ItemType Directory -Force -Path $StateDir, $LogDir | Out-Null
function Write-Log {
param([string]$Message)
$line = "{0} {1}" -f (Get-Date -Format "yyyy-MM-dd HH:mm:ss"), $Message
Add-Content -Path $LogFile -Value $line -Encoding UTF8
}
function Resolve-ShortcutTarget {
param([string]$ShortcutPath)
try {
$shell = New-Object -ComObject WScript.Shell
$shortcut = $shell.CreateShortcut($ShortcutPath)
if ($shortcut.TargetPath -and (Test-Path -LiteralPath $shortcut.TargetPath)) {
return $shortcut.TargetPath
}
} catch {
return $null
}
return $null
}
function Send-EnvironmentChanged {
try {
if (-not ("NativeMethods" -as [type])) {
Add-Type @"
using System;
using System.Runtime.InteropServices;
public static class NativeMethods {
[DllImport("user32.dll", SetLastError=true, CharSet=CharSet.Auto)]
public static extern IntPtr SendMessageTimeout(
IntPtr hWnd,
uint Msg,
UIntPtr wParam,
string lParam,
uint fuFlags,
uint uTimeout,
out UIntPtr lpdwResult);
}
"@
}
$result = [UIntPtr]::Zero
[NativeMethods]::SendMessageTimeout(
[IntPtr]0xffff,
0x001A,
[UIntPtr]::Zero,
"Environment",
0x0002,
5000,
[ref]$result
) | Out-Null
} catch {
Write-Log "Send-EnvironmentChanged failed: $($_.Exception.Message)"
}
}
function Get-UserEnvironmentValue {
param([string]$Name)
$key = "HKCU:\Environment"
$property = Get-ItemProperty -Path $key -Name $Name -ErrorAction SilentlyContinue
if ($null -eq $property) {
return [pscustomobject]@{ Exists = $false; Value = $null }
}
[pscustomobject]@{ Exists = $true; Value = $property.$Name }
}
function Set-UserEnvironmentValue {
param(
[string]$Name,
[AllowNull()][string]$Value,
[bool]$Exists
)
$key = "HKCU:\Environment"
if ($Exists) {
Set-ItemProperty -Path $key -Name $Name -Value $Value
} else {
Remove-ItemProperty -Path $key -Name $Name -ErrorAction SilentlyContinue
}
}
function Get-CodexAppxInfo {
try {
$package = Get-AppxPackage -Name "OpenAI.Codex" -ErrorAction SilentlyContinue | Select-Object -First 1
if (-not $package) {
return $null
}
$manifestPath = Join-Path $package.InstallLocation "AppxManifest.xml"
if (-not (Test-Path -LiteralPath $manifestPath)) {
return $null
}
[xml]$manifest = Get-Content -LiteralPath $manifestPath
$application = $manifest.Package.Applications.Application | Select-Object -First 1
if (-not $application) {
return $null
}
[pscustomobject]@{
PackageFamilyName = $package.PackageFamilyName
AppId = $application.Id
InstallLocation = $package.InstallLocation
Executable = (Join-Path $package.InstallLocation $application.Executable)
ShellTarget = "shell:AppsFolder\$($package.PackageFamilyName)!$($application.Id)"
}
} catch {
Write-Log "Get-CodexAppxInfo failed: $($_.Exception.Message)"
return $null
}
}
function Get-CodexExecutable {
$candidates = New-Object System.Collections.Generic.List[string]
$codexExe = Get-ConfigEnvironmentValue -Name "CODEX_EXE"
$codexApp = Get-ConfigEnvironmentValue -Name "CODEX_APP"
if ($codexExe) {
$candidates.Add($codexExe)
}
if ($codexApp) {
if (Test-Path -LiteralPath $codexApp -PathType Leaf) {
$candidates.Add($codexApp)
} elseif (Test-Path -LiteralPath $codexApp -PathType Container) {
$candidates.Add((Join-Path $codexApp "Codex.exe"))
$candidates.Add((Join-Path $codexApp "app\Codex.exe"))
}
}
Get-CimInstance Win32_Process -Filter "Name = 'Codex.exe'" -ErrorAction SilentlyContinue |
Where-Object {
$_.ExecutablePath -and
$_.ExecutablePath -like "*\app\Codex.exe" -and
($_.CommandLine -notmatch "--type=")
} |
Select-Object -ExpandProperty ExecutablePath -First 5 |
ForEach-Object { $candidates.Add($_) }
$appx = Get-CodexAppxInfo
if ($appx) {
$candidates.Add($appx.Executable)
}
$knownDirs = @(
(Join-Path $env:LOCALAPPDATA "Programs\Codex"),
(Join-Path $env:LOCALAPPDATA "Codex"),
(Join-Path $env:ProgramFiles "Codex")
)
if (${env:ProgramFiles(x86)}) {
$knownDirs += (Join-Path ${env:ProgramFiles(x86)} "Codex")
}
foreach ($dir in $knownDirs) {
$candidates.Add((Join-Path $dir "Codex.exe"))
}
$shortcutDirs = @(
(Join-Path $env:APPDATA "Microsoft\Windows\Start Menu\Programs"),
(Join-Path $env:ProgramData "Microsoft\Windows\Start Menu\Programs")
)
foreach ($dir in $shortcutDirs) {
if (Test-Path -LiteralPath $dir -PathType Container) {
Get-ChildItem -LiteralPath $dir -Filter "Codex*.lnk" -Recurse -ErrorAction SilentlyContinue |
Select-Object -First 10 |
ForEach-Object {
$target = Resolve-ShortcutTarget -ShortcutPath $_.FullName
if ($target) {
$candidates.Add($target)
}
}
}
}
foreach ($candidate in ($candidates | Select-Object -Unique)) {
if ($candidate -and (Test-Path -LiteralPath $candidate -PathType Leaf)) {
return (Resolve-Path -LiteralPath $candidate).Path
}
}
throw "Cannot find Codex.exe. Set CODEX_EXE to the full Codex.exe path and retry."
}
function Test-IsAppxExecutable {
param([string]$Exe)
$appx = Get-CodexAppxInfo
if (-not $appx) {
return $false
}
try {
$resolvedExe = (Resolve-Path -LiteralPath $Exe).Path
$resolvedAppxExe = (Resolve-Path -LiteralPath $appx.Executable).Path
return $resolvedExe -eq $resolvedAppxExe
} catch {
return $false
}
}
function Get-CodexProcesses {
param([string]$Exe)
Get-CimInstance Win32_Process -Filter "Name = 'Codex.exe'" -ErrorAction SilentlyContinue |
Where-Object { $_.ExecutablePath -eq $Exe } |
ForEach-Object {
[pscustomobject]@{
Id = $_.ProcessId
ProcessName = [System.IO.Path]::GetFileNameWithoutExtension($_.Name)
Path = $_.ExecutablePath
CommandLine = $_.CommandLine
IsMain = ($_.CommandLine -notmatch "--type=")
}
}
}
function Stop-Codex {
param([string]$Exe)
Write-Host "Stopping Codex..."
Write-Log "Stopping Codex"
$processes = @(Get-CodexProcesses -Exe $Exe)
foreach ($process in ($processes | Where-Object { $_.IsMain })) {
try {
$nativeProcess = Get-Process -Id $process.Id -ErrorAction Stop
$nativeProcess.CloseMainWindow() | Out-Null
} catch {
Write-Log "CloseMainWindow failed for PID $($process.Id): $($_.Exception.Message)"
}
}
Start-Sleep -Seconds 1
$remaining = @(Get-CodexProcesses -Exe $Exe)
foreach ($process in $remaining) {
try {
Stop-Process -Id $process.Id -Force
} catch {
Write-Log "Stop-Process failed for PID $($process.Id): $($_.Exception.Message)"
}
}
Remove-Item -LiteralPath $PidFile -Force -ErrorAction SilentlyContinue
}
function Invoke-WithProxyEnvironment {
param([scriptblock]$Script)
$proxyNames = @(
"HTTP_PROXY", "HTTPS_PROXY", "ALL_PROXY",
"http_proxy", "https_proxy", "all_proxy",
"NO_PROXY", "no_proxy"
)
$oldValues = @{}
foreach ($name in $proxyNames) {
$oldValues[$name] = [Environment]::GetEnvironmentVariable($name, "Process")
}
try {
$env:HTTP_PROXY = $HttpProxy
$env:HTTPS_PROXY = $HttpProxy
$env:ALL_PROXY = $AllProxy
$env:http_proxy = $HttpProxy
$env:https_proxy = $HttpProxy
$env:all_proxy = $AllProxy
$env:NO_PROXY = $NoProxy
$env:no_proxy = $NoProxy
& $Script
} finally {
foreach ($name in $proxyNames) {
[Environment]::SetEnvironmentVariable($name, $oldValues[$name], "Process")
}
}
}
function Start-AppxCodex {
param([string]$Exe)
$appx = Get-CodexAppxInfo
if (-not $appx) {
throw "Cannot find Codex Appx package metadata."
}
Write-Log "Launching Appx Codex through $($appx.ShellTarget)"
$proxyValues = @(
[pscustomobject]@{ Name = "HTTP_PROXY"; Value = $HttpProxy },
[pscustomobject]@{ Name = "HTTPS_PROXY"; Value = $HttpProxy },
[pscustomobject]@{ Name = "ALL_PROXY"; Value = $AllProxy },
[pscustomobject]@{ Name = "NO_PROXY"; Value = $NoProxy }
)
$oldUserValues = @{}
foreach ($proxyValue in $proxyValues) {
$oldUserValues[$proxyValue.Name] = Get-UserEnvironmentValue -Name $proxyValue.Name
}
try {
foreach ($proxyValue in $proxyValues) {
Set-ItemProperty -Path "HKCU:\Environment" -Name $proxyValue.Name -Value $proxyValue.Value
}
Send-EnvironmentChanged
Invoke-WithProxyEnvironment {
Start-Process explorer.exe $appx.ShellTarget
}
$deadline = (Get-Date).AddSeconds(10)
do {
Start-Sleep -Milliseconds 500
$running = @(Get-CodexProcesses -Exe $Exe | Where-Object { $_.IsMain })
} while ($running.Count -eq 0 -and (Get-Date) -lt $deadline)
if ($running.Count -gt 0) {
Set-Content -Path $PidFile -Value $running[0].Id -Encoding ASCII
Write-Log "Started Appx Codex PID: $($running[0].Id)"
}
} finally {
foreach ($proxyValue in $proxyValues) {
$oldValue = $oldUserValues[$proxyValue.Name]
Set-UserEnvironmentValue -Name $proxyValue.Name -Value $oldValue.Value -Exists $oldValue.Exists
}
Send-EnvironmentChanged
}
}
function Start-Codex {
$exe = Get-CodexExecutable
Write-Host "Starting Codex with proxy..."
Write-Host "Executable: $exe"
Write-Host "HTTP_PROXY: $HttpProxy"
Write-Host "ALL_PROXY: $AllProxy"
Write-Host "Log: $LogFile"
Write-Log "Starting Codex with proxy"
Write-Log "Executable: $exe"
Write-Log "HTTP_PROXY: $HttpProxy"
Write-Log "ALL_PROXY: $AllProxy"
Stop-Codex -Exe $exe
if (Test-IsAppxExecutable -Exe $exe) {
Start-AppxCodex -Exe $exe
} else {
Invoke-WithProxyEnvironment {
$process = Start-Process -FilePath $exe -WorkingDirectory (Split-Path -Parent $exe) -PassThru
Set-Content -Path $PidFile -Value $process.Id -Encoding ASCII
Write-Log "Started Codex PID: $($process.Id)"
}
}
Start-Sleep -Seconds 1
$running = @(Get-CodexProcesses -Exe $exe)
if ($running.Count -gt 0) {
Write-Host "Codex started."
$running | Select-Object Id, ProcessName, Path | Format-Table -AutoSize
} else {
Write-Host "Codex may not have started. Check log: $LogFile"
exit 1
}
}
function Show-Status {
$exe = Get-CodexExecutable
$running = @(Get-CodexProcesses -Exe $exe)
if ($running.Count -gt 0) {
Write-Host "Codex is running."
$running | Select-Object Id, ProcessName, Path | Format-Table -AutoSize
} else {
Write-Host "Codex is not running."
}
}
function Show-Log {
if (!(Test-Path -LiteralPath $LogFile)) {
New-Item -ItemType File -Force -Path $LogFile | Out-Null
}
Get-Content -Path $LogFile -Tail 100 -Wait
}
switch ($Command) {
"start" { Start-Codex }
"stop" { Stop-Codex -Exe (Get-CodexExecutable) }
"restart" {
$exe = Get-CodexExecutable
Stop-Codex -Exe $exe
Start-Codex
}
"status" { Show-Status }
"log" { Show-Log }
}