-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrun.ps1
51 lines (47 loc) · 1.83 KB
/
run.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
# run.ps1 auto-generated by EasyAzureFunction module, https://github.com/iricigor/EasyAzureFunction, [email protected]
'run.ps1 start'
# POST method: $req
$requestContent = Get-Content $req -Raw
try {
$requestBody = $requestContent | ConvertFrom-Json
$Failed = $false
"Params (JSON): $($requestBody.PSObject.Properties.Name -join `",`")"
$EzInvokeCommand = $requestBody.EzInvokeCommand
$EzName = $requestBody.EzName
} catch {$Failed = $true}
if ($Failed) {
"Params (URLEncoded): $requestContent"
$requestContent -split '&' | % {
$v = $_ -split '='
if ($v[1]) {Set-Variable -Name $v[0] -Value $v[1]}
}
}
# prepare output, either default web-page or invoke command
if (!$EzInvokeCommand) {
'show default web page'
cd $EXECUTION_CONTEXT_FUNCTIONDIRECTORY
$Output = Get-Content .\index.html -Raw
} else {
'invoke command'
try {
$ParamsHash = @{}
if ($EzName) {$ParamsHash.Add('Name',$EzName)}
function Hello([string]$Name="World"){"Hello $Name"}
"Params: $($ParamsHash.Keys -join `",`")"
$Output = Hello @ParamsHash | Out-String
if ($Output) {$Color = 'white'}
else {$Color = 'gray'; $Output = 'Command run successfully, but it returned no output'}
} catch {
$Output = $_
$Color = 'red'
}
$Head = "<head><style>body {background-color: #012456; color: $Color;}</style><title>EasyAzureFunction - Hello running example</title></head>"
$Back = '<p><a href="javascript:history.back()" style="color:yellow;">Go Back</a></p>'
$Output = $Head + '<pre>' + $Output + $Back + '</pre>'
$Output = $Output -replace "`n",'</br>'
}
# parse and send back output
$Output2 = [PSCustomObject]@{Status = 200; Body = ''; Headers = @{}}
$Output2.Headers.Add('content-type','text/html')
$Output2.Body = $Output -replace '"',"'"
Out-File -Encoding utf8 -FilePath $res -inputObject ($Output2 | ConvertTo-JSON)