DSCResources/MSFT_SPOTheme/MSFT_SPOTheme.psm1
function Get-TargetResource { [CmdletBinding()] [OutputType([System.Collections.Hashtable])] param ( [Parameter(Mandatory = $true)] [System.String] $Name, [Parameter()] [System.Boolean] $IsInverted, [Parameter()] [Microsoft.Management.Infrastructure.CimInstance[]] $Palette, [Parameter()] [ValidateSet("Present", "Absent")] [System.String] $Ensure = "Present", [Parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] $GlobalAdminAccount ) Write-Verbose -Message "Getting configuration for SPO Theme $Name" #region Telemetry $data = [System.Collections.Generic.Dictionary[[String], [String]]]::new() $data.Add("Resource", $MyInvocation.MyCommand.ModuleName) $data.Add("Method", $MyInvocation.MyCommand) Add-M365DSCTelemetryEvent -Data $data #endregion Test-MSCloudLogin -CloudCredential $GlobalAdminAccount ` -Platform PnP $nullReturn = @{ Name = $Name IsInverted = $null Palette = $null Ensure = "Absent" GlobalAdminAccount = $GlobalAdminAccount } Write-Verbose -Message "Getting theme $Name" $theme = Get-PnPTenantTheme | Where-Object -FilterScript { $_.Name -eq $Name } if ($null -eq $theme) { Write-Verbose -Message "The specified theme doesn't exist." return $nullReturn } $convertedPalette = Convert-ExistingThemePaletteToHashTable -Palette ([System.Collections.Hashtable]$theme.Palette) return @{ Name = $theme.Name IsInverted = $theme.IsInverted Palette = $convertedPalette GlobalAdminAccount = $GlobalAdminAccount Ensure = "Present" } } function Set-TargetResource { [CmdletBinding()] param ( [Parameter(Mandatory = $true)] [System.String] $Name, [Parameter()] [System.Boolean] $IsInverted, [Parameter()] [Microsoft.Management.Infrastructure.CimInstance[]] $Palette, [Parameter()] [ValidateSet("Present", "Absent")] [System.String] $Ensure = "Present", [Parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] $GlobalAdminAccount ) Write-Verbose -Message "Setting configuration for SPO Theme $Name" #region Telemetry $data = [System.Collections.Generic.Dictionary[[String], [String]]]::new() $data.Add("Resource", $MyInvocation.MyCommand.ModuleName) $data.Add("Method", $MyInvocation.MyCommand) Add-M365DSCTelemetryEvent -Data $data #endregion Test-MSCloudLogin -CloudCredential $GlobalAdminAccount ` -Platform PnP $CurrentPalette = Get-TargetResource @PSBoundParameters if ($Ensure -eq "Present") { Write-Verbose "Converting Received Palette Values into Hashtable" $HashPalette = Convert-NewThemePaletteToHashTable -Palette $Palette $AddParameters = @{ Identity = $Name IsInverted = $IsInverted Palette = $HashPalette } try { $existingTheme = Get-PnPTenantTheme -Name $Name -ErrorAction SilentlyContinue } catch { Write-Verbose -Message "Theme $($Name) does not yet exist." } if ($null -eq $existingTheme) { Write-Verbose -Message "Theme {$Name} doesn't already exist. Creating it." Add-PnPTenantTheme @AddParameters } else { Write-Verbose -Message "Theme {$Name} already exists. Updating it" Add-PnPTenantTheme @AddParameters -Overwrite } } elseif ($Ensure -eq 'Absent' -and $CurrentPalette.Ensure -eq 'Present') { Write-Verbose -Message "Removing theme $($Name)" try { Remove-PnPTenantTheme -Identity $Name -Confirm:$false } catch { $Message = "The SPOTheme $($theme) does not exist and for that cannot be removed." New-M365DSCLogEntry -Error $_ -Message $Message -Source $MyInvocation.MyCommand.ModuleName Write-Error $Message } } } function Test-TargetResource { [CmdletBinding()] [OutputType([System.Boolean])] param ( [Parameter(Mandatory = $true)] [System.String] $Name, [Parameter()] [System.Boolean] $IsInverted, [Parameter()] [Microsoft.Management.Infrastructure.CimInstance[]] $Palette, [Parameter()] [ValidateSet("Present", "Absent")] [System.String] $Ensure = "Present", [Parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] $GlobalAdminAccount ) Write-Verbose -Message "Testing configuration for SPO Theme $Name" $CurrentValues = Get-TargetResource @PSBoundParameters Write-Verbose -Message "Current Values: $(Convert-M365DscHashtableToString -Hashtable $CurrentValues)" Write-Verbose -Message "Target Values: $(Convert-M365DscHashtableToString -Hashtable $PSBoundParameters)" $ValuesToCheck = $PSBoundParameters $ValuesToCheck.Remove("GlobalAdminAccount") | Out-Null $ValuesToCheck.Remove("Palette") | Out-Null $TestResult = Test-Microsoft365DSCParameterState -CurrentValues $CurrentValues ` -Source $($MyInvocation.MyCommand.Source) ` -DesiredValues $PSBoundParameters ` -ValuesToCheck $ValuesToCheck.Keys if ($TestResult) { $TestResult = Compare-SPOTheme -existingThemePalette $currentValues.Palette -configThemePalette $Palette } Write-Verbose -Message "Test-TargetResource returned $TestResult" return $TestResult } function Export-TargetResource { [CmdletBinding()] [OutputType([System.String])] param ( [Parameter(Mandatory = $true)] [System.Management.Automation.PSCredential] $GlobalAdminAccount ) $InformationPreference = 'Continue' #region Telemetry $data = [System.Collections.Generic.Dictionary[[String], [String]]]::new() $data.Add("Resource", $MyInvocation.MyCommand.ModuleName) $data.Add("Method", $MyInvocation.MyCommand) Add-M365DSCTelemetryEvent -Data $data #endregion Test-MSCloudLogin -CloudCredential $GlobalAdminAccount ` -Platform PnP $themes = Get-PnPTenantTheme $content = "" $i = 1 foreach ($theme in $themes) { $params = @{ Name = $theme.Name GlobalAdminAccount = $GlobalAdminAccount } $result = Get-TargetResource @params $result.GlobalAdminAccount = Resolve-Credentials -UserName "globaladmin" $result.Palette = ConvertTo-SPOThemePalettePropertyString -Palette $result.Palette $content += " SPOTheme " + (New-GUID).ToString() + "`r`n" $content += " {`r`n" $currentDSCBlock = Get-DSCBlock -Params $result -ModulePath $PSScriptRoot $currentDSCBlock = Convert-DSCStringParamToVariable -DSCBlock $currentDSCBlock -ParameterName "Palette" $currentDSCBlock = Convert-DSCStringParamToVariable -DSCBlock $currentDSCBlock -ParameterName "GlobalAdminAccount" $content += $currentDSCBlock $content += " }`r`n" $i++ } return $content } function Convert-ExistingThemePaletteToHashTable { [CmdletBinding()] [OutputType([System.Collections.Hashtable])] param( [Parameter(Mandatory = $true)] [System.Collections.Hashtable] $Palette ) $themeHash = @{ } foreach ($entry in $Palette.GetEnumerator()) { $themeHash[$entry.Key] = $entry.Value } return $themeHash } function Convert-NewThemePaletteToHashTable { [CmdletBinding()] [OutputType([System.Collections.Hashtable])] param( [Parameter(Mandatory = $true)] [Microsoft.Management.Infrastructure.CimInstance[]] $Palette ) $results = @{ } foreach ($entry in $Palette) { $results.Add($entry.Property, $entry.Value) } return $results } function ConvertTo-SPOThemePalettePropertyString { [CmdletBinding()] [OutputType([System.String])] param ( [Parameter(Mandatory = $true)] [System.Collections.Hashtable] $Palette ) $StringContent = "@(" foreach ($property in $Palette.Keys) { $StringContent += " MSFT_SPOThemePaletteProperty`r`n {`r`n" $StringContent += " Property = '$($property)'`r`n" $StringContent += " Value = '$($Palette[$property])'`r`n" $StringContent += " }`r`n" } $StringCOntent += " )`r`n" return $StringContent } function Compare-SPOTheme { [CmdletBinding()] [OutputType([System.String])] param( [Parameter(Mandatory = $true)] [System.Object] $existingThemePalette, [Parameter(Mandatory = $true)] [System.Object] $configThemePalette ) $existingThemePalette = $existingThemePalette.GetEnumerator() | Sort-Object -Property Name $configThemePalette = $configThemePalette.GetEnumerator() | Sort-Object -Property Name $existingThemePaletteCount = 0 $configThemePaletteCount = 0 foreach ($val in $existingThemePalette.Value) { if ($configThemePalette.Value.Contains($val)) { $configThemePaletteCount++ } } foreach ($val in $configThemePalette.Value) { if ($existingThemePalette.value.Contains($val)) { $existingThemePaletteCount++ } } if (($existingThemePalette.Count -eq $configThemePaletteCount) -and ($configThemePalette.Count -eq $existingThemePaletteCount)) { return "Themes are identical" } else { return "Themes are not identical" } } Export-ModuleMember -Function *-TargetResource |