You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

456 line
12KB

  1. <#
  2. .NOTES
  3. ===========================================================================
  4. Created with: SAPIEN Technologies, Inc., PowerShell Studio 2019 v5.6.157
  5. Created on: 3/14/2025 12:29 PM
  6. Created by: danielc
  7. Organization:
  8. Filename:
  9. ===========================================================================
  10. .DESCRIPTION
  11. A description of the file.
  12. #>
  13. function Start-IISAppRemote
  14. {
  15. param (
  16. [string]$RemoteServer = "KCI-APP01",
  17. # Remote machine name or IP
  18. [string]$AppPoolName = "Tracking",
  19. [string]$SiteName = "Tracking",
  20. # Optional username
  21. [string]$CredentialUser = "",
  22. [securestring]$CredentialPassword # Optional password
  23. )
  24. # Create credentials if username and password are provided
  25. if ($CredentialUser -and $CredentialPassword)
  26. {
  27. $Credential = New-Object System.Management.Automation.PSCredential ($CredentialUser, $CredentialPassword)
  28. }
  29. else
  30. {
  31. $Credential = $null
  32. }
  33. # Define script block for remote execution
  34. $ScriptBlock = {
  35. param ($AppPoolName,
  36. $SiteName)
  37. Import-Module WebAdministration -ErrorAction Stop
  38. Write-Host "Starting IIS Application Pool: $AppPoolName"
  39. if ((Get-WebAppPoolState -Name $AppPoolName).Value -ne "Started")
  40. {
  41. Start-WebAppPool -Name $AppPoolName
  42. Write-Host "Application Pool '$AppPoolName' started successfully."
  43. }
  44. else
  45. {
  46. Write-Host "Application Pool '$AppPoolName' is already running."
  47. }
  48. Write-Host "Starting IIS Site: $SiteName"
  49. if ((Get-WebSiteState -Name $SiteName).Value -ne "Started")
  50. {
  51. Start-WebSite -Name $SiteName
  52. Write-Host "IIS Site '$SiteName' started successfully."
  53. }
  54. else
  55. {
  56. Write-Host "IIS Site '$SiteName' is already running."
  57. }
  58. }
  59. # Execute on remote server
  60. if ($Credential)
  61. {
  62. Invoke-Command -ComputerName $RemoteServer -Credential $Credential -ScriptBlock $ScriptBlock -ArgumentList $AppPoolName, $SiteName
  63. }
  64. else
  65. {
  66. Invoke-Command -ComputerName $RemoteServer -ScriptBlock $ScriptBlock -ArgumentList $AppPoolName, $SiteName
  67. }
  68. }
  69. function Deploy-ZipRemote
  70. {
  71. param (
  72. [string]$RemoteServer = "KCI-APP01",
  73. # Remote machine name or IP
  74. [string]$TransferFolder = "\\KCI-SYN-CL01\PC Transfer\",
  75. # Local folder containing zip
  76. [string]$RemoteDeployPath = "C:\inetpub\tracking\",
  77. # Remote target path
  78. [string]$ZipFileName = "zzip.zip",
  79. [string]$CredentialUser = "",
  80. [securestring]$CredentialPassword
  81. )
  82. # Create credentials if provided
  83. if ($CredentialUser -and $CredentialPassword)
  84. {
  85. $Credential = New-Object System.Management.Automation.PSCredential ($CredentialUser, $CredentialPassword)
  86. }
  87. else
  88. {
  89. $Credential = $null
  90. }
  91. $LocalZipPath = Join-Path -Path $TransferFolder -ChildPath $ZipFileName
  92. $RemoteZipPath = Join-Path -Path $RemoteDeployPath -ChildPath $ZipFileName
  93. Write-Host "Copying ZIP file to remote server..."
  94. # Copy ZIP file using PowerShell Remoting (or direct UNC path if available)
  95. if ($Credential)
  96. {
  97. Copy-Item -Path $LocalZipPath -Destination "\\$RemoteServer\$($RemoteDeployPath.Replace(':', '$'))" -Credential $Credential -Force
  98. }
  99. else
  100. {
  101. Copy-Item -Path $LocalZipPath -Destination "\\$RemoteServer\$($RemoteDeployPath.Replace(':', '$'))" -Force
  102. }
  103. Write-Host "Extracting ZIP file on remote server..."
  104. # Run the extraction on the remote machine
  105. $ScriptBlock = {
  106. param ($RemoteZipPath,
  107. $RemoteDeployPath)
  108. if (-Not (Test-Path $RemoteZipPath))
  109. {
  110. Write-Host "Error: ZIP file not found at $RemoteZipPath"
  111. return
  112. }
  113. Expand-Archive -Path $RemoteZipPath -DestinationPath $RemoteDeployPath -Force
  114. Write-Host "ZIP extracted to $RemoteDeployPath"
  115. # Optionally, delete the ZIP after extraction
  116. Remove-Item -Path $RemoteZipPath -Force -ErrorAction SilentlyContinue
  117. Write-Host "ZIP file deleted after extraction."
  118. }
  119. if ($Credential)
  120. {
  121. Invoke-Command -ComputerName $RemoteServer -Credential $Credential -ScriptBlock $ScriptBlock -ArgumentList $RemoteZipPath, $RemoteDeployPath
  122. }
  123. else
  124. {
  125. Invoke-Command -ComputerName $RemoteServer -ScriptBlock $ScriptBlock -ArgumentList $RemoteZipPath, $RemoteDeployPath
  126. }
  127. Write-Host "Deployment completed on $RemoteServer."
  128. }
  129. function Clear-RemoteDirectory
  130. {
  131. param (
  132. [string]$RemoteServer = "KCI-APP01",
  133. # Remote machine name or IP
  134. [string]$TargetDirectory = "C:\inetpub\tracking\",
  135. # Directory to clear
  136. [string]$CredentialUser = "",
  137. # Optional username
  138. [securestring]$CredentialPassword # Optional password
  139. )
  140. # Create credentials if username and password are provided
  141. if ($CredentialUser -and $CredentialPassword)
  142. {
  143. $Credential = New-Object System.Management.Automation.PSCredential ($CredentialUser, $CredentialPassword)
  144. }
  145. else
  146. {
  147. $Credential = $null
  148. }
  149. # Define script block for remote execution
  150. $ScriptBlock = {
  151. param ($TargetDirectory)
  152. if (Test-Path $TargetDirectory)
  153. {
  154. Write-Host "Clearing all items from: $TargetDirectory"
  155. # Remove all files and subdirectories
  156. Get-ChildItem -Path $TargetDirectory -Recurse -Force | Remove-Item -Recurse -Force -ErrorAction SilentlyContinue
  157. # Confirm cleanup
  158. if (-Not (Get-ChildItem -Path $TargetDirectory -Force))
  159. {
  160. Write-Host "Cleanup successful: $TargetDirectory is now empty."
  161. }
  162. else
  163. {
  164. Write-Host "Warning: Some files may not have been removed."
  165. }
  166. }
  167. else
  168. {
  169. Write-Host "Error: Directory $TargetDirectory does not exist."
  170. }
  171. }
  172. # Execute on remote server
  173. if ($Credential)
  174. {
  175. Invoke-Command -ComputerName $RemoteServer -Credential $Credential -ScriptBlock $ScriptBlock -ArgumentList $TargetDirectory
  176. }
  177. else
  178. {
  179. Invoke-Command -ComputerName $RemoteServer -ScriptBlock $ScriptBlock -ArgumentList $TargetDirectory
  180. }
  181. }
  182. function Stop-IISAppRemote
  183. {
  184. param (
  185. [string]$RemoteServer = "KCI-APP01",
  186. # Remote machine name or IP
  187. [string]$AppPoolName = "Tracking",
  188. [string]$SiteName = "Tracking",
  189. [string]$CredentialUser = "",
  190. [securestring]$CredentialPassword
  191. )
  192. # Create credentials if username and password are provided
  193. if ($CredentialUser -and $CredentialPassword)
  194. {
  195. $Credential = New-Object System.Management.Automation.PSCredential ($CredentialUser, $CredentialPassword)
  196. }
  197. else
  198. {
  199. $Credential = $null
  200. }
  201. # Run IIS stop commands on the remote machine
  202. $ScriptBlock = {
  203. param ($AppPoolName,
  204. $SiteName)
  205. Import-Module WebAdministration -ErrorAction Stop
  206. Write-Host "Stopping IIS Application Pool: $AppPoolName"
  207. if ((Get-WebAppPoolState -Name $AppPoolName).Value -ne "Stopped")
  208. {
  209. Stop-WebAppPool -Name $AppPoolName
  210. Write-Host "Application Pool '$AppPoolName' stopped successfully."
  211. }
  212. else
  213. {
  214. Write-Host "Application Pool '$AppPoolName' is already stopped."
  215. }
  216. Write-Host "Stopping IIS Site: $SiteName"
  217. if ((Get-WebSiteState -Name $SiteName).Value -ne "Stopped")
  218. {
  219. Stop-WebSite -Name $SiteName
  220. Write-Host "IIS Site '$SiteName' stopped successfully."
  221. }
  222. else
  223. {
  224. Write-Host "IIS Site '$SiteName' is already stopped."
  225. }
  226. }
  227. # Execute on remote server
  228. if ($Credential)
  229. {
  230. Invoke-Command -ComputerName $RemoteServer -Credential $Credential -ScriptBlock $ScriptBlock -ArgumentList $AppPoolName, $SiteName
  231. }
  232. else
  233. {
  234. Invoke-Command -ComputerName $RemoteServer -ScriptBlock $ScriptBlock -ArgumentList $AppPoolName, $SiteName
  235. }
  236. }
  237. function Cleanup
  238. {
  239. param (
  240. [string]$DeployRoot = "F:\Development\CICD_TESTS\Tracking\",
  241. [string]$RemoteFile = "\\KCI-SYN-CL01\PC Transfer\zzip.zip",
  242. [string]$RepoDir = "test",
  243. [string]$ZipFileName = "zzip.zip"
  244. )
  245. $RepoPath = Join-Path -Path $DeployRoot -ChildPath $RepoDir
  246. $ZipFilePath = Join-Path -Path $DeployRoot -ChildPath $ZipFileName
  247. Write-Host "Starting cleanup..."
  248. # Kill any processes using the folder
  249. Write-Host "Checking for processes using the folder..."
  250. Get-Process | Where-Object { $_.Path -like "$RepoPath\*" } | Stop-Process -Force -ErrorAction SilentlyContinue
  251. # Use Remove-Item with error handling
  252. if (Test-Path $RepoPath)
  253. {
  254. Write-Host "Removing directory: $RepoPath"
  255. Try
  256. {
  257. Remove-Item -Path $RepoPath -Recurse -Force -Confirm:$false -ErrorAction Stop
  258. Remove-Item -Path $RemoteFile -Recurse -Force -Confirm:$false -ErrorAction Stop
  259. Write-Host "Successfully deleted: $RepoPath"
  260. }
  261. Catch
  262. {
  263. Write-Host "Warning: Unable to delete using Remove-Item. Trying RD command..."
  264. Start-Process -NoNewWindow -Wait -FilePath "cmd.exe" -ArgumentList "/c RD /S /Q `"$RepoPath`"" -ErrorAction SilentlyContinue
  265. }
  266. }
  267. # Delete the ZIP file
  268. if (Test-Path $ZipFilePath)
  269. {
  270. Write-Host "Deleting file: $ZipFilePath"
  271. Try
  272. {
  273. Remove-Item -Path $ZipFilePath -Force -Confirm:$false -ErrorAction Stop
  274. Write-Host "Successfully deleted: $ZipFilePath"
  275. }
  276. Catch
  277. {
  278. Write-Host "Warning: Unable to delete ZIP file. It may be in use."
  279. }
  280. }
  281. Write-Host "Force cleanup complete."
  282. }
  283. function Zip-Repo
  284. {
  285. param (
  286. [string]$DeployRoot = "F:\Development\CICD_TESTS\Tracking\",
  287. [string]$RepoDir = "test",
  288. [string]$ZipFileName = "zzip.zip",
  289. [string]$TransferFolder = "\\KCI-SYN-CL01\PC Transfer\"
  290. )
  291. $RepoPath = Join-Path -Path $DeployRoot -ChildPath $RepoDir
  292. $ZipFilePath = Join-Path -Path $DeployRoot -ChildPath $ZipFileName
  293. $TransferZipPath = Join-Path -Path $TransferFolder -ChildPath $ZipFileName
  294. # Ensure the repository exists
  295. if (-Not (Test-Path $RepoPath))
  296. {
  297. Write-Host "Error: Repository folder not found at $RepoPath"
  298. return
  299. }
  300. Write-Host "Zipping repository contents..."
  301. Compress-Archive -Path "$RepoPath\*" -DestinationPath $ZipFilePath -Force
  302. Write-Host "Copying ZIP to transfer folder..."
  303. if (-Not (Test-Path $TransferFolder))
  304. {
  305. New-Item -ItemType Directory -Path $TransferFolder -Force
  306. }
  307. Copy-Item -Path $ZipFilePath -Destination $TransferZipPath -Force
  308. Write-Host "Zipping complete! ZIP saved to: $TransferZipPath"
  309. }
  310. # Define the Clone-Repo function
  311. function Clone-Repo
  312. {
  313. param (
  314. [string]$DeployRoot = "F:\Development\CICD_TESTS\Tracking\",
  315. [string]$RepoURL = "https://dcovington:_3ggUSA6YELP@onefortheroadgit.sytes.net/dcovington/tracking_kits",
  316. [string]$RepoDir = "test"
  317. )
  318. $RepoPath = Join-Path -Path $DeployRoot -ChildPath $RepoDir
  319. $SparseCheckoutFile = "$RepoPath\.git\info\sparse-checkout"
  320. $ConfigFilePath = "$RepoPath\App\app.config.asp"
  321. $ImportServicePath = "$RepoPath\ImportService\TrackingDataImport.vbs"
  322. Write-Host "Initializing Git repository..."
  323. Start-Process -NoNewWindow -Wait -FilePath "git" -ArgumentList "init $RepoPath"
  324. Start-Sleep -Seconds 2.5
  325. Write-Host "Setting current directory to $RepoPath"
  326. Set-Location -Path $RepoPath
  327. Write-Host "Adding remote repository..."
  328. Start-Process -NoNewWindow -Wait -FilePath "git" -ArgumentList "remote add -f origin $RepoURL"
  329. Write-Host "Enabling sparse checkout..."
  330. Start-Process -NoNewWindow -Wait -FilePath "git" -ArgumentList "config core.sparseCheckout true"
  331. Write-Host "Writing sparse checkout paths..."
  332. $SparseCheckoutPaths = @(
  333. "App/",
  334. "Data/arrow ne.jpg",
  335. "Data/Label_Report.rep",
  336. "Data/png-transparent-arrow-arrow-angle-triangle-black-thumbnail.jpg",
  337. "Data/purple_envelope_sample_Page_1.jpg",
  338. "Data/purple_envelope_sample_Page_2.jpg",
  339. "Data/Custom Office Copies Proof.rep",
  340. "Data/Proofs.rep",
  341. "dist/",
  342. "MVC/",
  343. "Dependancies/",
  344. "ImportService/",
  345. "index.asp"
  346. # "web.config"
  347. )
  348. # Ensure the directory exists
  349. if (-Not (Test-Path "$RepoPath\.git\info"))
  350. {
  351. New-Item -ItemType Directory -Path "$RepoPath\.git\info" -Force
  352. }
  353. # Write sparse checkout paths
  354. $SparseCheckoutPaths | Set-Content -Path $SparseCheckoutFile -Force
  355. Write-Host "Pulling latest changes from master..."
  356. Start-Process -NoNewWindow -Wait -FilePath "git" -ArgumentList "pull origin master"
  357. # Wait for file existence
  358. Write-Host "Waiting for app.config.asp to be available..."
  359. while (-Not (Test-Path $ConfigFilePath))
  360. {
  361. Start-Sleep -Milliseconds 250
  362. }
  363. Write-Host "Updating app.config.asp..."
  364. $configContent = Get-Content -Path $ConfigFilePath -Raw
  365. $updatedConfigContent = $configContent -replace "dev = true", "dev = false"
  366. $updatedConfigContent | Set-Content -Path $ConfigFilePath -Force
  367. Write-Host "Updating ImportService.vbs..."
  368. $ImportServiceScript = Get-Content -Path $ImportServicePath -Raw
  369. $updatedImportServiceScript = $ImportServiceScript -replace 'Dim dev:dev = "local"', 'Dim dev:dev = false'
  370. $updatedImportServiceScript | Set-Content -Path $ImportServicePath -Force
  371. Write-Host "Repository cloned and configured successfully."
  372. }
  373. # Run the function
  374. Clone-Repo
  375. Zip-Repo
  376. Stop-IISAppRemote
  377. Clear-RemoteDirectory
  378. Deploy-ZipRemote
  379. Start-IISAppRemote
  380. Cleanup

Powered by TurnKey Linux.