GrpPrdLOGexportSQL.ps1 : Différence entre versions

De Ensuelma
Aller à : navigation, rechercher
(Page créée avec « ''Ce script permet d'extraire les informations des groupes d'appartenance des utilisateurs reliés aux logiciels ou progiciels de l'Active Directory de la RAMQ et de les i... »)
 
 
Ligne 4 : Ligne 4 :
 
  #Concepteur: Frédéric Côté (fcote@outlook.fr)
 
  #Concepteur: Frédéric Côté (fcote@outlook.fr)
 
  #Réréfence: http://blog.briankmarsh.com/postgresql-powershell-part-1/
 
  #Réréfence: http://blog.briankmarsh.com/postgresql-powershell-part-1/
 
+
 
  #Variables
 
  #Variables
 
  #Dépot de l'exécution LOG
 
  #Dépot de l'exécution LOG
 
  $log="C:\temp\GrpPrdLOGexport.log"
 
  $log="C:\temp\GrpPrdLOGexport.log"
 
  $temps=(date).DateTime
 
  $temps=(date).DateTime
 
+
 
  #Fonction pour générer le log
 
  #Fonction pour générer le log
Function LogWrite
+
Function LogWrite
 
  {
 
  {
 
   Param ([string]$logstring)
 
   Param ([string]$logstring)
 
+
 
   Add-content $Log -value $logstring
 
   Add-content $Log -value $logstring
 
  }
 
  }
 
+
 
  # Requêtes pour PostgreSQL 'obtenir les infos'
 
  # Requêtes pour PostgreSQL 'obtenir les infos'
Function Get-ODBCData{   
+
Function Get-ODBCData{   
 
     param(
 
     param(
 
           [string]$query,
 
           [string]$query,
Ligne 27 : Ligne 27 :
 
           [string]$dbPass  = "invposte"    # Mot de Passe pour l'utilisateur de $dbUser
 
           [string]$dbPass  = "invposte"    # Mot de Passe pour l'utilisateur de $dbUser
 
         )
 
         )
 
+
 
     $conn = New-Object System.Data.Odbc.OdbcConnection
 
     $conn = New-Object System.Data.Odbc.OdbcConnection
 
     $conn.ConnectionString = "Driver={PostgreSQL Unicode(x64)};Server=$dbServer;Port=5432;Database=$dbName;Uid=$dbUser;Pwd=$dbPass;"
 
     $conn.ConnectionString = "Driver={PostgreSQL Unicode(x64)};Server=$dbServer;Port=5432;Database=$dbName;Uid=$dbUser;Pwd=$dbPass;"
Ligne 38 : Ligne 38 :
 
  }
 
  }
 
  # Requêtes pour PostgreSQL 'définir les infos'
 
  # Requêtes pour PostgreSQL 'définir les infos'
Function Set-ODBCData{   
+
Function Set-ODBCData{   
 
     param(
 
     param(
 
           [string]$query,
 
           [string]$query,
Ligne 46 : Ligne 46 :
 
           [string]$dbPass  = "invposte"    # Mot de Passe pour l'utilisateur de $dbUser
 
           [string]$dbPass  = "invposte"    # Mot de Passe pour l'utilisateur de $dbUser
 
         )
 
         )
 
+
 
     $conn = New-Object System.Data.Odbc.OdbcConnection
 
     $conn = New-Object System.Data.Odbc.OdbcConnection
 
     $conn.ConnectionString= "Driver={PostgreSQL Unicode(x64)};Server=$dbServer;Port=5432;Database=$dbName;Uid=$dbUser;Pwd=$dbPass;"
 
     $conn.ConnectionString= "Driver={PostgreSQL Unicode(x64)};Server=$dbServer;Port=5432;Database=$dbName;Uid=$dbUser;Pwd=$dbPass;"
Ligne 61 : Ligne 61 :
 
     $conn.close()
 
     $conn.close()
 
  }
 
  }
 
+
 
  #------------------------------------------------------------------------------------------
 
  #------------------------------------------------------------------------------------------
 
  ##Création de la Table 'xxx'
 
  ##Création de la Table 'xxx'
Ligne 88 : Ligne 88 :
 
     }
 
     }
 
  }
 
  }
 
+
 
  ##### ALIMENTATION DE LA BD #####
 
  ##### ALIMENTATION DE LA BD #####
 
+
 
  # Requête pour obtenir les colonnes de la table
 
  # Requête pour obtenir les colonnes de la table
 
  $query  = "SELECT * FROM information_schema.columns WHERE table_schema = 'public' AND table_name = '$NomTable';"
 
  $query  = "SELECT * FROM information_schema.columns WHERE table_schema = 'public' AND table_name = '$NomTable';"
Ligne 96 : Ligne 96 :
 
  # Déversement des noms de colonnes dans un tableau
 
  # Déversement des noms de colonnes dans un tableau
 
  $props  = $columns.column_name
 
  $props  = $columns.column_name
 
+
 
  #CHECK ET ALIMENTE
 
  #CHECK ET ALIMENTE
 
  #----------Source des données-----------
 
  #----------Source des données-----------
Ligne 116 : Ligne 116 :
 
  $LOGsPrd = $LOGsPrd | select GrpLogiciel,Description,Nom,UID,Type
 
  $LOGsPrd = $LOGsPrd | select GrpLogiciel,Description,Nom,UID,Type
 
  #----------Traitement des données
 
  #----------Traitement des données
Foreach ($item in $LOGsPrd)
+
Foreach ($item in $LOGsPrd)
{
+
  {
 
     $dbQuery = $Null
 
     $dbQuery = $Null
 
+
 
     # Vérification si la valeure n'existe pas déjà
 
     # Vérification si la valeure n'existe pas déjà
 
     $exists = Get-ODBCData -query "SELECT * from `"$NomTable`" WHERE `"GrpLogiciel`" LIKE '$($item.GrpLogiciel)' AND `"UID`" LIKE '$($item.UID)';"
 
     $exists = Get-ODBCData -query "SELECT * from `"$NomTable`" WHERE `"GrpLogiciel`" LIKE '$($item.GrpLogiciel)' AND `"UID`" LIKE '$($item.UID)';"
Ligne 138 : Ligne 138 :
 
             }
 
             }
 
         }
 
         }
 
+
 
         # Si les valeurs ne sont pas identiques, on doit mettre à jour
 
         # Si les valeurs ne sont pas identiques, on doit mettre à jour
 
         If (!$identical)
 
         If (!$identical)
 
         {
 
         {
 
             #Update ces valeurs
 
             #Update ces valeurs
             Write-Host -ForegroundColor Magenta "[$temps] Cet item existe déjà, cependant les propriétés sont différentes. On doit mettre à jour ces valeurs pour la table $NomTable à la ligne contenant le GrpLogiciel: $($item.GrpLogiciel) La différence est au niveau: $diffProps"
+
             Write-Host -ForegroundColor Magenta "[$temps] Cet item existe déjà, cependant les propriétés sont différentes. On doit mettre à jour ces valeurs pour la table $NomTable à la ligne contenant le GrpLogiciel:  
 +
$($item.GrpLogiciel) La différence est au niveau: $diffProps"
 
             $dbQuery = "UPDATE `"$NomTable`" SET "
 
             $dbQuery = "UPDATE `"$NomTable`" SET "
 
             Foreach ($diffProp in $diffProps)
 
             Foreach ($diffProp in $diffProps)
Ligne 164 : Ligne 165 :
 
             #$dbQuery = $dbQuery.Substring(0,$dbQuery.Length - 1) + " WHERE `"SamAccountName`" LIKE '$($item.SamAccountName)' AND `"Enabled`" LIKE '$($item.Enabled)';"
 
             #$dbQuery = $dbQuery.Substring(0,$dbQuery.Length - 1) + " WHERE `"SamAccountName`" LIKE '$($item.SamAccountName)' AND `"Enabled`" LIKE '$($item.Enabled)';"
 
             $dbQuery = $dbQuery + "`"Etat`" = 'MAJ' WHERE `"GrpLogiciel`" LIKE '$($item.GrpLogiciel)' AND `"Enabled`" LIKE '$($item.UID)';"
 
             $dbQuery = $dbQuery + "`"Etat`" = 'MAJ' WHERE `"GrpLogiciel`" LIKE '$($item.GrpLogiciel)' AND `"Enabled`" LIKE '$($item.UID)';"
 
+
 
         }
 
         }
 
     }
 
     }
Ligne 170 : Ligne 171 :
 
     Else
 
     Else
 
     {
 
     {
 
+
 
         # Préparation de la requête de démarrage pour insérer les valeurs dans la table avec les bonnes propriétés/colonnes
 
         # Préparation de la requête de démarrage pour insérer les valeurs dans la table avec les bonnes propriétés/colonnes
 
         $dbQuery = "INSERT INTO public.`"$NomTable`" (`"$($props -join '", "')`") VALUES ('"
 
         $dbQuery = "INSERT INTO public.`"$NomTable`" (`"$($props -join '", "')`") VALUES ('"
 
+
 
         # Passe à travers chacune des propriétés et ajoute la valeur correspondante
 
         # Passe à travers chacune des propriétés et ajoute la valeur correspondante
 
         Foreach ($property in $props)
 
         Foreach ($property in $props)
Ligne 192 : Ligne 193 :
 
             #    Write-Host "ATTENTION PLUS D'UN VALEUR! $($item.$property), utilisation de la 1ère valeur"
 
             #    Write-Host "ATTENTION PLUS D'UN VALEUR! $($item.$property), utilisation de la 1ère valeur"
 
             #    $dbQuery += [string]$($item.$property | Select -First 1)+"', '"
 
             #    $dbQuery += [string]$($item.$property | Select -First 1)+"', '"
 
+
 
             #}
 
             #}
 
             Else
 
             Else
Ligne 199 : Ligne 200 :
 
             }
 
             }
 
         }
 
         }
 
+
 
+
 
+
 
         # Finalisation de la requête
 
         # Finalisation de la requête
 
         If($CT)
 
         If($CT)
Ligne 214 : Ligne 215 :
 
         }
 
         }
 
     }
 
     }
 
+
 
     #Exécution de la requête
 
     #Exécution de la requête
 
     If ($dbQuery)
 
     If ($dbQuery)

Version actuelle datée du 20 décembre 2022 à 20:23

Ce script permet d'extraire les informations des groupes d'appartenance des utilisateurs reliés aux logiciels ou progiciels de l'Active Directory de la RAMQ et de les injecter dans un tableau dans une BD. COPIER et COLLER ces informations dans un script nommé GrpPrdLOGexportSQL.ps1

#RAMQ REQUETE SQL (PostgreSQL) **** Déversement de l'AD Groupes Logiciels (OU Groupes Logiciels sous production) ****
#Projet Windows 10
#Concepteur: Frédéric Côté (fcote@outlook.fr)
#Réréfence: http://blog.briankmarsh.com/postgresql-powershell-part-1/

#Variables
#Dépot de l'exécution LOG
$log="C:\temp\GrpPrdLOGexport.log"
$temps=(date).DateTime

#Fonction pour générer le log
Function LogWrite
{
  Param ([string]$logstring)

  Add-content $Log -value $logstring
}

# Requêtes pour PostgreSQL 'obtenir les infos'
Function Get-ODBCData{  
   param(
         [string]$query,
         [string]$dbServer = "localhost",   # Serveur BD (IP ou hostname)
         [string]$dbName   = "invposte",    # Nom de la BD
         [string]$dbUser   = "invposte",    # Utisateur défini dans la BD
         [string]$dbPass   = "invposte"     # Mot de Passe pour l'utilisateur de $dbUser
        )

   $conn = New-Object System.Data.Odbc.OdbcConnection
   $conn.ConnectionString = "Driver={PostgreSQL Unicode(x64)};Server=$dbServer;Port=5432;Database=$dbName;Uid=$dbUser;Pwd=$dbPass;"
   $conn.open()
   $cmd = New-object System.Data.Odbc.OdbcCommand($query,$conn)
   $ds = New-Object system.Data.DataSet
   (New-Object system.Data.odbc.odbcDataAdapter($cmd)).fill($ds) | out-null
   $conn.close()
   $ds.Tables[0]
}
# Requêtes pour PostgreSQL 'définir les infos'
Function Set-ODBCData{  
   param(
         [string]$query,
         [string]$dbServer = "localhost",   # Serveur BD (IP ou hostname)
         [string]$dbName   = "invposte",    # Nom de la BD
         [string]$dbUser   = "invposte",    # Utisateur défini dans la BD
         [string]$dbPass   = "invposte"     # Mot de Passe pour l'utilisateur de $dbUser
        )

   $conn = New-Object System.Data.Odbc.OdbcConnection
   $conn.ConnectionString= "Driver={PostgreSQL Unicode(x64)};Server=$dbServer;Port=5432;Database=$dbName;Uid=$dbUser;Pwd=$dbPass;"
   $cmd = new-object System.Data.Odbc.OdbcCommand($query,$conn)
   $conn.open()
   Try
   {
       $cmd.ExecuteNonQuery()
   }
   Catch
   {
       Throw "REQUÊTE ERRONÉE: $query"
   }
   $conn.close()
}

#------------------------------------------------------------------------------------------
##Création de la Table 'xxx'
$NomTable = 'GrpPrdLOG'
$CreationTableADUID=@"
CREATE TABLE "GrpPrdLOG" (
   "GrpLogiciel" TEXT,
   "Description" TEXT,
   "Nom" TEXT,
   "UID" TEXT,
   "Type" TEXT
)
;
"@
if (!(Get-ODBCData -query "SELECT relname FROM pg_class WHERE relname='$NomTable'"))  
{
   $CT = $True
   # Création de la nouvelle table
   try
   {
       $output = Set-ODBCData -query $CreationTableADUID
   }
   catch
   {
       Write-Host -ForegroundColor Red "ERROR! $($_.Exception)"
   }
}

##### ALIMENTATION DE LA BD #####

# Requête pour obtenir les colonnes de la table
$query   = "SELECT * FROM information_schema.columns WHERE table_schema = 'public' AND table_name = '$NomTable';"
$columns = Get-ODBCData -query $query
# Déversement des noms de colonnes dans un tableau
$props   = $columns.column_name

#CHECK ET ALIMENTE
#----------Source des données-----------
$ADGroupesLOGsPROD=Get-ADGroup -Filter {name -like "GGLGI*"} -Properties *
$LOGsPrd = ForEach($grpLOG in $ADGroupesLOGsPROD)
{
   ForEach($ADMembre in $grpLOG.Members)
   {
   $jobData = @{
       'GrpLogiciel' = $grpLOG.Name
       'Description' = $grpLOG.Description
       'Nom' = $grpLOG.Name.Replace('GGLGI_',"").Replace('_Prod',"").Replace('_',' ')
       'UID' = (Get-ADUser $ADMembre).SamAccountName
       'Type' = $grpLOG.Name.Split('_')[$grpLOG.Name.Split('_').count - 1]
       }
   Write-Output ([PSCustomObject]$jobData)
   }
}
$LOGsPrd = $LOGsPrd | select GrpLogiciel,Description,Nom,UID,Type
#----------Traitement des données
Foreach ($item in $LOGsPrd)
 {
   $dbQuery = $Null

   # Vérification si la valeure n'existe pas déjà
   $exists = Get-ODBCData -query "SELECT * from `"$NomTable`" WHERE `"GrpLogiciel`" LIKE '$($item.GrpLogiciel)' AND `"UID`" LIKE '$($item.UID)';"
   If ($exists)
   {
       # Si c'est identique
       $identical = $true
       $diffProps = @()
       
       # Va à l'intérieur de chaque valeur des propriétés et les compare
       Foreach ($prop in $($exists |gm -MemberType Properties |select -ExpandProperty Name))
       {
           # Si cet item et l'entrée existante ne sont pas identiques 
           If (($item.$prop | Select -First 1) -notlike $exists.$prop)
           {
               $identical = $false
               $diffProps += $prop
           }
       }

       # Si les valeurs ne sont pas identiques, on doit mettre à jour
       If (!$identical)
       {
           #Update ces valeurs
           Write-Host -ForegroundColor Magenta "[$temps] Cet item existe déjà, cependant les propriétés sont différentes. On doit mettre à jour ces valeurs pour la table $NomTable à la ligne contenant le GrpLogiciel: 
$($item.GrpLogiciel) La différence est au niveau: $diffProps"
           $dbQuery = "UPDATE `"$NomTable`" SET "
           Foreach ($diffProp in $diffProps)
           {
               If ($item.$diffProp -match "'")
               {
               Write-Host -ForegroundColor Green "[$temps] Ooops, on retrouve un `"'`" : $($item.$diffProp)"
               $dbQuery += "`"$diffProp`" = '"+$($item.$diffProp).Replace("'","°")+"',"
                               }
               ElseIf ($item.$diffProp -like "")
               {
               Write-Host -ForegroundColor Green "[$temps] Ooops, on retrouve un champs vide du compte : $($item.GrpLogiciel) sur la propriété: $diffProp)"
               $dbQuery += "`"$diffProp`" = NULL,"
               }
               Else
               {
               $dbQuery += "`"$diffProp`" = '$($item.$diffProp)',"
               }
           }
           #$dbQuery = $dbQuery.Substring(0,$dbQuery.Length - 1) + " WHERE `"SamAccountName`" LIKE '$($item.SamAccountName)' AND `"Enabled`" LIKE '$($item.Enabled)';"
           $dbQuery = $dbQuery + "`"Etat`" = 'MAJ' WHERE `"GrpLogiciel`" LIKE '$($item.GrpLogiciel)' AND `"Enabled`" LIKE '$($item.UID)';"

       }
   }
   # Si les valeurs n'existe pas dans la base de données, alors on l'ajoute...
   Else
   {

       # Préparation de la requête de démarrage pour insérer les valeurs dans la table avec les bonnes propriétés/colonnes
       $dbQuery = "INSERT INTO public.`"$NomTable`" (`"$($props -join '", "')`") VALUES ('"

       # Passe à travers chacune des propriétés et ajoute la valeur correspondante
       Foreach ($property in $props)
       {
           If ($item.$property -match "'")
           {
               Write-Host -ForegroundColor Green "[$temps] Ooops, on retrouve un `"'`" : $($item.$property)"
               $dbQuery += $($item.$property).Replace("'","°")+"', '"
           }
           ElseIf (($item.$property -like "") -And ($property -notlike "Etat"))
           {
               Write-Host -ForegroundColor Green "[$temps] Ooops, on retrouve un champs vide du compte : $($item.GrpLogiciel) sur la propriété: $property"
               $dbQuery = $dbQuery.Substring(0,$dbQuery.Length - 1)
               $dbQuery += "NULL, '"
           }
           #If ($($item.$property).count -gt 1)
           #{
           #    Write-Host "ATTENTION PLUS D'UN VALEUR! $($item.$property), utilisation de la 1ère valeur"
           #    $dbQuery += [string]$($item.$property | Select -First 1)+"', '"

           #}
           Else
           {
               $dbQuery += [string]$($item.$property)+"', '"
           }
       }



       # Finalisation de la requête
       If($CT)
       {
       $dbQuery = $dbQuery.Substring(0,$dbQuery.Length - 3)
       $dbQuery = $dbQuery + ");"
       }
       Else
       {
       $dbQuery = $dbQuery.Substring(0,$dbQuery.Length - 3)
       $dbQuery = $dbQuery + "NEUF');"
       }
   }

   #Exécution de la requête
   If ($dbQuery)
   {
       $output = Set-ODBCData -query $dbQuery
   }
}