-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProjectCreatorServicev4.ps1
executable file
·415 lines (241 loc) · 11.3 KB
/
ProjectCreatorServicev4.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
clear
Get-Variable -Exclude PWD,*Preference | Remove-Variable -EA 0
$keyList = @()
$keyList = ,@("erpa","pol1234+")
$keyList += ,@("info","blabala")
$keyOwner = $null
#Cheking key
function getKeyOwner($key) {
$keyOwner = $null
foreach ($keyName in $keyList)
{
if ($keyName[1] -eq $key )
{
$keyOwner= $keyName[0]
}
}
return $keyOwner
}
function isFoldersOk($templateDir,$template,$projectDest, $projectName){
$result = ""
write-host "testing if folders exit"
$templatePath = $templateDir +"\"+$template
$projectPath = $projectDest+"\"+"$projectName"
if(test-path $templateDir )
{
#template dir ok
if (test-path $templatePath)
{
#template exist
if (test-path $projectDest)
{
#destination exit
if(-not ([string]::IsNullOrEmpty($projectName))){
#impunt correct
$projectpath = $projectDest + "\" + $projectName
if (Test-Path $projectpath)
{
Write-Error "Project already exist"
$result = "705"
$msg= “Dossier de projet existe déja:"+$projectName
$add = " requette: "+ $request.Url.ToString()+" source:"+$request.RemoteEndPoint.ToString()
$msg = $msg +$add
Write-EventLog -LogName Application -EventId 705 -EntryType Error -Source "ProjectCreator" -Message $msg
}
else{
write-host "imput correct"
$result = "0"
#if project already exist
}
}else{
#no Project name
write-host "Project name not valid: " +$projectName
$msg= “Nom de projet non valide:"+$projectName
$add = " requette: "+ $request.Url.ToString()+" source:"+$request.RemoteEndPoint.ToString()
$msg = $msg +$add
Write-EventLog -LogName Application -EventId 704 -EntryType Error -Source "ProjectCreator" -Message $msg
$result = "704"
}
}else{
#project destination not found
write-host "Project destination not found " + $projectDest
$result = "703"
$msg= “Destination non trouvé :"+$projectDest
$add = " requette: "+ $request.Url.ToString()+" source:"+$request.RemoteEndPoint.ToString()
$msg = $msg +$add
Write-EventLog -LogName Application -EventId 703 -EntryType Error -Source "ProjectCreator" -Message $msg
}
}else{
write-host "Template folder not found : $templatePath"
#template folder not found
$msg= “Template non trouvé :"+$template
$add = " requette: "+ $request.Url.ToString()+" source:"+$request.RemoteEndPoint.ToString()
$msg = $msg +$add
Write-EventLog -LogName Application -EventId 702 -EntryType Error -Source "ProjectCreator" -Message $msg
$result = "702"
}
}else{
#template dir not ok
write-host "TemplateDir not found : " +$templateDir
$result = "701"
$result = "702"
$msg= “Emplacement des templates non trouvé :"+$templateDir
$add = " requette: "+ $request.Url.ToString()+" source:"+$request.RemoteEndPoint.ToString()
$msg = $msg +$add
Write-EventLog -LogName Application -EventId 701 -EntryType Error -Source "ProjectCreator" -Message $msg
}
write-host $result
return $result
}
function isPortUsed($port){
}
$codeblock = {
param($templateDir,$template,$projectDest, $projectName,$request)
function copyWithAcl($templateDir,$template,$projectDest,$projectName){
$templatePath = $templateDir +"\"+$template
$projectPath = $projectDest+"\"+"$projectName"
$contentList = New-Object System.Collections.ArrayList
$contentList = Get-ChildItem -Path $templatePath -Recurse | select -ExpandProperty fullname
#copy
Write-Host "copying folder"
Write-Error "a"
Copy-Item $templatePath -Destination $projectPath -Recurse
Write-Error "b"
#Acl assignation
#set acl of the project dir
Write-Host "applying ACL"
get-acl $templatePath | Set-Acl $projectPath
Write-Error "c"
#set acl of content
foreach ($citem in $contentList){
$pre = $citem
$mirror= ($pre -replace [regex]::Escape($templatePath), $projectPath)
get-acl $citem | Set-Acl $mirror
}
Write-error "Copy done"
$rst = "0"
return $rst
}
$projectPath = $projectDest+"\"+"$projectName"
if (Test-Path $projectpath)
{
Write-Error "Project already exist"
$message = "705"
}else{
$message=copyWithAcl -templateDir $templateDir -template $template -projectDest $projectDest -projectName $projectName
$msg= “Projet : "+$projectName+" créé dans "+$projectDest+" à partir de "+$template
$add = " requette: "+ $request.Url.ToString()+" source:"+$request.RemoteEndPoint.ToString()
$msg = $msg +$add
Write-Error "c"
Write-EventLog -LogName Application -EventId 0 -EntryType Information -Source "ProjectCreator" -Message $msg
}
}
function processRequest($request){
# Break from loop if GET request sent to /end
$addi = " requette recu: "+ $request.Url.ToString()+" source:"+$request.RemoteEndPoint.ToString()
Write-EventLog -LogName Application -EventId 1 -EntryType Information -Source "ProjectCreator" -Message $addi
Write-Host "processing request"
if ($request.Url -match '/end$') {
$message = "quitting service";
$response.ContentType = 'text/html' ;
break
}
else {
# Split request URL to get command and options
$requestvars = ([String]$request.Url).split("?");
$param1 = $requestvars[0].split("/")
$param2 = $requestvars[1].split("&")
$app=$param1[3]
$action = $param1[4]
Write-Host "app=" $app
Write-Host "action=" $action
Write-Host "param2=" $param2
if ( $request.HttpMethod -eq "GET"){
switch ( $app )
{
"erp"{
if ($action -eq "create")
{
Write-Host "creating project"
$parameters = [ordered]@{}
foreach ($ligne in $param2 ){
$po = $ligne.Split("=")
$parameters.add($po[0],$po[1])
}
$templateDir = $parameters["templateDir"]
$template = $parameters["template"]
$projectDest = $parameters["projectDest"]
$projectName = $parameters["projectName"]
$templateDir= $templateDir -replace "%5C","\"
$template= $template -replace "%5C","\"
$projectDest= $projectDest -replace "%5C","\"
$projectName= $projectName -replace "%5C","\"
Write-Host "templateDir=" $templateDir
Write-Host "template=" $template
Write-Host "projectDest=" $projectDest
Write-Host "projectName=" $projectName
#----------------------------
#$message=copyWithAcl -templateDir $templateDir -template $template -projectDest $projectDest -projectName $projectName
$message = isFoldersOk -templateDir $templateDir -template $template -projectDest $projectDest -projectName $projectName
write-host "test if ok"
if ($message -eq "0"){
write-host "ok continue"
Start-Job -ScriptBlock $codeblock -Name $projectName -ArgumentList $templateDir,$template,$projectDest, $projectName,$request
}
}else{
$message = "erreur:Action inconne"
$response.ContentType = 'application/json';
default{
# If no matching subdirectory/route is found generate a 404 message
$message = "-";
$response.ContentType = 'text/html' ;
}
}
}
}
}else{
$message= ""
write-host "not GET" + $response.HttpMethod
}
# If a request is sent to http:// :8888/erp
}
write-host "message = " $message
# Convert the data to UTF8 bytes
[byte[]]$buffer = [System.Text.Encoding]::UTF8.GetBytes($message)
# Set length of response
$response.ContentLength64 = $buffer.length
# Write response out and close
$output = $response.OutputStream
$output.Write($buffer, 0, $buffer.length)
$output.Close()
}
# Create a listener on port 8000
$listener = New-Object System.Net.HttpListener
$listener.Prefixes.Add('http://+:8888/')
$listener.Start()
Write-Host "litenening...."
# Run until you send a GET request to /end
while ($true) {
$context = $listener.GetContext()
# Capture the details about the request
$request = $context.Request
# Setup a place to deliver a response
$response = $context.Response
$response.AddHeader("Access-Control-Allow-Origin", '*');
$response.AddHeader("Access-Control-Allow-Headers", '*');
$response.AddHeader("Access-Control-Allow-Methods", '*');
#$key = $request.Headers['x-api-key']
#$keyOwner = getKeyOwner($key)
#if ($keyOwner -eq $null){
#Key not valid
# Write-Host "warning: key not valid"
#}else{
#Key valid
# Write-Host "info: key owner is" $keyOwner
# processRequest($request)
#}
processRequest($request)
}
#Terminate the listener
$listener.Stop()
Write-Host "listner closed"