InstanceCreationPlugins/service-plugin.psm1
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 |
#requires -version 4 function ModuleRoot { $MyInvocation.ScriptName | Split-Path -Parent } $PrivPath = $(Join-Path $(ModuleRoot | Split-Path -Parent) "\Private") . $PrivPath\HelperFunctions.ps1 <# .SYNOPSIS Plugin for creating services as defined in the ISPSInstance.config .DESCRIPTION This plugin only acts on nodes with the Name attribute of "Service". This element is an instruction to create a regular Windows service. Both the executable- and configuration file path is concatenated with the instance directory. The service name will be named after the instance name, prepending "IntelliSearch" The startup argument is required. If you want to create a service without using a startup argument you can do something similar to this: "{0}{1}" Example from ISPSInstance.config: <Service Executable="\bin\someexecutablefile.exe" ConfigurationFile="\cfg\someconfigfile.exe.config" StartupArgument="{0} --config {1}" /> .EXAMPLE $Splat = @{ Node = @{ Executable = "\bin\someexecutablefile.exe" ConfigurationFile = "\cfg\someconfigfile.exe.config" StartupArgument = "{0} --config {1}" } InstanceName = "NameOfService" InstanceDirectory = "C:\ProgramData\IntelliSearch\MyInstance\" ComponentDirectory "C:\ProgramFiles\IntelliSearch\IntelliSearch.Server.IndexManager.4.0.2\" } service.plugin @Splat .PARAMETER Node The XML node currently being iterated over .PARAMETER InstanceName A string with the name of the instance. This plugin ignores this parameter. .PARAMETER InstanceDirectory The root directory of the new instance .PARAMETER ComponentDirectory The root directory of the installed component .INPUTS System.String .OUTPUTS System.ServiceProcess.ServiceController #> function service-plugin { param ( # XML node from ISPSInstance.config [Parameter( Mandatory = $true, Position = 0, ValueFromPipelineByPropertyName = $true, HelpMessage = "XML node from ISPSInstance.config")] $Node, # The name representing the new instance [Parameter( Mandatory = $true, Position = 1, ValueFromPipelineByPropertyName = $true, HelpMessage = "Instance name")] [ValidateNotNullOrEmpty()] [string] $InstanceName, # Path to the directory of the new instance [Parameter( Mandatory = $true, Position = 2, ValueFromPipelineByPropertyName = $true, HelpMessage = "Path to the directory of the new instance")] [ValidateNotNullOrEmpty()] [ValidateScript( {Test-Path -Path $_ -PathType Container})] [string] $InstanceDirectory, # Path to the component nuget package directory [Parameter( Mandatory = $true, Position = 3, ValueFromPipelineByPropertyName = $true, HelpMessage = "Path to the component nuget package directory")] [ValidateNotNullOrEmpty()] [ValidateScript( {Test-Path -Path $_ -PathType Container})] [string] $ComponentDirectory ) if ($Node.Name -ne "Service") { return } $BinaryPath = Join-Path $InstanceDirectory $Node.Executable $ConfigPath = Join-Path $InstanceDirectory $Node.ConfigurationFile $ServiceName = "IntelliSearch " + $InstanceName #region Validation $Errors = New-Object System.Collections.ArrayList if (-not (ValidatePathExists $BinaryPath)) { $Errors.Add("Path to binary file not valid. Got $BinaryPath") } if (-not (ValidatePathExists $ConfigPath)) { $Errors.Add("Path to configuration file not valid. Got $ConfigPath") } if (-not (ValidateServiceName $ServiceName)) { $Errors.Add("Service name is not valid. Got $ServiceName") } if (-not (ValidateServiceUnique $ServiceName)) { $Errors.Add("Service name is not unique. Another service has the same name. Got $ServiceName") } if (-not (ValidateStartupArgument $Node.StartupArgument)) { $Errors.Add("The startup argument from the ISPSInstance.config file was not valid. Got $($Node.StartupArgument)") } if ($Errors.Count -gt 0) { $ErrorMessage = "$($Errors.Count) errors were found creating the service.`n" + ($Errors -Join "`n") Throw $ErrorMessage } #endregion Validation $ServiceSplat = @{ Name = $ServiceName BinaryPathName = $Node.StartupArgument -f $BinaryPath, $ConfigPath DisplayName = $ServiceName StartupType = "Automatic" } New-Service @ServiceSplat } Export-ModuleMember -Function "service-plugin" function ValidateServiceName ($ServiceName) { # Validates that the service name consists of allowed characters return [bool]($ServiceName -Match "^[\w\-_()\. ]+$") } function ValidateServiceUnique ($ServiceName) { # Validates that the service name is unique return -not [bool](Get-Service -Name $ServiceName -ErrorAction:SilentlyContinue) } function ValidateStartupArgument ($ArgumentString) { # Validates startup argument for service return [bool]($ArgumentString -Match ".*\{0\}.*") } |