-
Notifications
You must be signed in to change notification settings - Fork 2
/
Export-SchoolDataSync.ps1
631 lines (560 loc) · 28.1 KB
/
Export-SchoolDataSync.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
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
<#
.SYNOPSIS
TeamSync script Export-SchoolDataSync.ps1; koppeling tussen Magister en School Data Sync.
.DESCRIPTION
TeamSync is een koppeling tussen Magister en School Data Sync.
TeamSync script Export-SchoolDataSync.ps1 (transformeren en uitvoeren)
bepaalt actieve teams en genereert CSV-bestanden ten behoeve van
School Data Sync.
Versie: zie variabele
Auteur Paul Wiegmans (p.wiegmans@svok.nl)
naar een voorbeeld door Wim den Ronde, Eric Redegeld, Joppe van Daalen
.PARAMETER Inifilename
bepaalt de bestandsnaam van het configuratiebestand, relatief ten opzichte van het pad van dit script.
.INPUTS
Diverse; Zie README.adoc
.OUTPUTS
Diverse; Zie README.adoc
.LINK
https://github.com/sikkepitje/teamsync
.NOTES
TO DO
* vermijdt '@' in SIS ID
#>
[CmdletBinding()]
param (
[Parameter(
HelpMessage="Geef de naam van de te gebruiken INI-file, bij verstek 'Export-SchoolDataSync.ini'"
)]
[Alias('Inifile','Inibestandsnaam','Config','Configfile','Configuratiebestand')]
[String] $Inifilename = "Export-SchoolDataSync.ini"
)
$versie = '20240906'
$pathsep = [IO.Path]::DirectorySeparatorChar # bevat de door OS gedefinieerde padscheidingsteken (path separator)
$stopwatch = [Diagnostics.Stopwatch]::StartNew()
$herePath = Split-Path -parent $MyInvocation.MyCommand.Definition
# scriptnaam in venstertitel
$selfpath_base = $MyInvocation.MyCommand.Path.replace(".ps1","") # compleet pad zonder extensie
$host.ui.RawUI.WindowTitle = Split-Path -Leaf $selfpath_base
$logCountLimit = 7
$selfpath = $MyInvocation.MyCommand.Path
$selfdir = Split-Path -Parent $selfpath
$selfbasename = [System.IO.Path]::GetFileNameWithoutExtension($selfpath)
$logBaseFilename = $selfdir + $pathsep + "Log" + $pathsep + $selfbasename
$currentLogFilename = "$logBaseFilename.log"
# variabelen initialisatie
$importdatamap = "ImportData"
$exportfiltermap = "ExportFilter"
$exportkladmap = "ExportKlad"
$exportdatamap = "Exportdata"
$exportverzamelmap = "Exportverzamelmap"
$schoolid = $null
$schoolnaam = $null
$teamid_prefix = ""
$teamnaam_prefix = ""
$teamnaam_suffix = ""
$maakklassenteams = "1" # configuratieparameter die niets doet
$samenvoegen = "0"
$logtag = "INIT"
$toonresultaat = "0"
$bon_match_docentlesgroep_aan_leerlingklas = "0"
$docenten_per_team_limiet = "0" # maximum toegestaan aantal docenten per team. 0 betekent geen limiet
#region Functies
function PreviousLogFilename($Number) {
return ("$logBaseFilename.{0:d2}.log" -f $Number)
}
function LogRotate() {
# Keep 9 logs, delete oldest, rename the rest
Write-Host "Rotating the logs..." -ForegroundColor Cyan
New-Item -Path "$selfdir" -ItemType Directory -Name "Log" -ErrorAction SilentlyContinue | Out-Null
Remove-Item -Path (PreviousLogFilename -Number $logCountLimit) -Force -Confirm:$False -ea:SilentlyContinue
($logCountLimit)..1 | ForEach-Object {
$oud = PreviousLogFilename -Number $_
$nieuw = PreviousLogFilename -Number ($_ + 1)
#Write-Host " Renaming ($oud) to ($nieuw)" -ForegroundColor cyan
Rename-Item -Path $oud -NewName $nieuw -ea:SilentlyContinue
}
Rename-Item -Path $currentLogFilename -NewName (PreviousLogFilename -Number 1) -ea:SilentlyContinue
}
Function Write-Log {
Param (
[Parameter(Position=0)][Alias('Message')][string]$Tekst="`n"
)
#Write-Host $Tekst
$log = "$(Get-Date -f "yyyy-MM-ddTHH:mm:ss.fff") [$logtag] $tekst"
$log | Out-File -FilePath $currentLogFilename -Append
Write-Host $log
}
$illegal_characters = "[^\S]|[\~\""\#\%\&\*\:\<\>\?\/\\{\|}\.]"
$safe_character = "_"
function ConvertTo-SISID([string]$Naam) {
return $Naam -replace $illegal_characters, $safe_character
# https://support.microsoft.com/en-us/office/invalid-file-names-and-file-types-in-onedrive-and-sharepoint-64883a5d-228e-48f5-b3d2-eb39e07630fa
}
Function ConvertTo-ASCII([string]$naam) {
# Verwijder alle tekens anders dan a-z, A-Z, 0-9, underscore en punt
$naam -replace '[^a-zA-Z0-9_.]', ''
}
#endregion Functies
#region hoofdprogramma
LogRotate
Write-Log ""
Write-Log ("START " + $MyInvocation.MyCommand.Name + " versie $versie")
Try {
#region init
# Lees instellingen uit bestand met key=value
$filename_settings = $herePath + $pathsep + $Inifilename
Write-Log ("Configuratiebestand: " + $filename_settings)
$settings = Get-Content $filename_settings -Encoding UTF8 | ConvertFrom-StringData
foreach ($key in $settings.Keys) {
Set-Variable -Name $key -Value $settings.$key -Scope global
Write-Log ("Configuratieparameter: " + $key + "=" + $settings.$key)
}
# validatie van configuratievariabelen
<# $teamid_prefix = $settings.teamid_prefix #>
if (!$schoolid) { Throw "Configuratieparameter 'schoolid' is vereist"}
if (!$schoolnaam) { Throw "Configuratieparameter 'schoolnaam' is vereist"}
if (!$teamid_prefix) { Throw "Configuratieparameter 'teamid_prefix' is vereist"}
$teamid_prefix = $teamid_prefix.trim() + " "
if ($teamnaam_prefix) {
$teamnaam_prefix = $teamnaam_prefix.trim() + " "
}
if ($teamnaam_suffix) {
$teamnaam_suffix = " " + $teamnaam_suffix.trim()
}
if ($exportdatamap -eq $exportverzamelmap) {
Throw "Exportdatamap kan niet gelijk zijn aan ExportVerzamelmap: $exportdatamap"
}
$toonresultaat = $toonresultaat -ne "0" # maak boolean
$bon_match_docentlesgroep_aan_leerlingklas = $bon_match_docentlesgroep_aan_leerlingklas -ne "0" # maak boolean
[int]$docenten_per_team_limiet = $docenten_per_team_limiet # maak integer
$samenvoegen = $samenvoegen -ne "0" # maak boolean
$logtag = $teamid_prefix.Trim()
$host.ui.RawUI.WindowTitle = ((Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace ".ps1") + " " + $logtag
Write-Log ("Schoolnaam : " + $schoolnaam)
# datamappen
$importPath = "$herePath$pathsep$importdatamap"
$filterPath = "$herePath$pathsep$exportfiltermap"
$tempPath = "$herePath$pathsep$exportkladmap"
$outputPath = "$herePath$pathsep$exportdatamap"
$outputCollectPath = "$herePath$pathsep$exportverzamelmap"
New-Item -path $tempPath -ItemType Directory -ea:Silentlycontinue | Out-Null
New-Item -path $outputPath -ItemType Directory -ea:Silentlycontinue | Out-Null
New-Item -path $outputCollectPath -ItemType Directory -ea:Silentlycontinue | Out-Null
if (($herepath+$pathsep+$exportdatamap) -eq ($herepath+$pathsep+$exportverzamelmap)) {
Throw "Exportdatamap kan niet wijzen naar dezelfde map als ExportVerzamelmap: $($herepath+$pathsep+$exportdatamap)"
}
# Import
$filename_mag_leerling_xml = $importPath + $pathsep + "magister_leerling.clixml"
$filename_mag_docent_xml = $importPath + $pathsep + "magister_docent.clixml"
$filename_mag_vak_xml = $importPath + $pathsep + "magister_vak.clixml"
# Filters
$filename_excl_docent = $filterPath + $pathsep + "excl_docent.csv"
$filename_incl_docent = $filterPath + $pathsep + "incl_docent.csv"
$filename_excl_klas = $filterPath + $pathsep + "excl_klas.csv"
$filename_incl_klas = $filterPath + $pathsep + "incl_klas.csv"
$filename_excl_studie = $filterPath + $pathsep + "excl_studie.csv"
$filename_incl_studie = $filterPath + $pathsep + "incl_studie.csv"
$filename_incl_locatie = $filterPath + $pathsep + "incl_locatie.csv"
$filename_excl_teamnaam = $filterPath + $pathsep + "excl_teamnaam.csv"
$filename_incl_teamnaam = $filterPath + $pathsep + "incl_teamnaam.csv"
# Kladbestanden
$hteamid = $teamid_prefix.trim() -replace(" ","_")
$filename_t_hteamfull = $tempPath + $pathsep + "hteamfull_" + $hteamid + ".csv"
$filename_t_hteamactief = $tempPath + $pathsep + "hteamactief_" + $hteamid + ".csv"
$filename_t_hteam0ll = $tempPath + $pathsep + "hteam0ll_" + $hteamid + ".csv"
$filename_t_hteam0doc = $tempPath + $pathsep + "hteam0doc_" + $hteamid + ".csv"
$filename_t_teamunfiltered = $tempPath + $pathsep + "teamunfiltered_" + $hteamid + ".json"
# Files OUT
$filename_School = $outputPath + $pathsep + "School.csv"
$filename_Section = $outputPath + $pathsep + "Section.csv"
$filename_Student = $outputPath + $pathsep + "Student.csv"
$filename_StudentEnrollment = $outputPath + $pathsep + "StudentEnrollment.csv"
$filename_Teacher = $outputPath + $pathsep + "Teacher.csv"
$filename_TeacherRoster = $outputPath + $pathsep + "TeacherRoster.csv"
# Files OUT
$filename_CollectedSchool = $outputCollectPath + $pathsep + "School.csv"
$filename_CollectedSection = $outputCollectPath + $pathsep + "Section.csv"
$filename_CollectedStudent = $outputCollectPath + $pathsep + "Student.csv"
$filename_CollectedStudentEnrollment = $outputCollectPath + $pathsep + "StudentEnrollment.csv"
$filename_CollectedTeacher = $outputCollectPath + $pathsep + "Teacher.csv"
$filename_CollectedTeacherRoster = $outputCollectPath + $pathsep + "TeacherRoster.csv"
# controleer vereiste bestanden
if (!(Test-Path -Path $filename_mag_leerling_xml)) { Throw "Vereist bestand ontbreekt: " + $filename_mag_leerling_xml }
if (!(Test-Path -Path $filename_mag_docent_xml)) { Throw "Vereist bestand ontbreekt: " + $filename_mag_docent_xml }
if (!(Test-Path -Path $filename_mag_vak_xml)) { Throw "Vereist bestand ontbreekt: " + $filename_mag_vak_xml }
#endregion init
################# LEES DATA van Import-Magister
#region invoer
$mag_leer = Import-Clixml -Path $filename_mag_leerling_xml
# velden: Stamnr, Id, Login, Roepnaam, Tussenv, Achternaam, Lesperiode,
# Leerjaar, Klas, Studie, Profiel, Groepen, Vakken, Email, Locatie
$mag_doc = Import-Clixml -Path $filename_mag_docent_xml
# velden: Stamnr, Id, Login, Roepnaam, Tussenv, Achternaam, Naam, Code,
# Functie, Groepvakken, Klasvakken, Docentvakken, Locatie
# velden van mag_doc[].Groepvakken: Klas, Vakcode
$mag_vak = Import-Clixml -Path $filename_mag_vak_xml
# $mag_vak['Vakcode'] = 'VakOmschrijving'
# Zet om in hashtabel, kapitaliseer alle woorden in vakomschrijving, behalve en en and
$vakoms = @{}
foreach ($kvp in $mag_vak.GetEnumerator()) {
$vakoms[$kvp.key] = (Get-Culture).TextInfo.ToTitleCase($kvp.value).replace(" En "," en ").replace(" And "," and ")
}
$mag_vak = $vakoms
# sorteer voor de mooi
foreach ($docent in $mag_doc) {
$docent.Groepvakken = $docent.Groepvakken | Sort-Object -Property "Klas"
$docent.Klasvakken = $docent.Klasvakken | Sort-Object
$docent.Docentvakken = $docent.Docentvakken | Sort-Object
}
if ($mag_doc.count -eq 0) {
Throw "Er zijn nul docenten. Er is niets te doen"
}
# filters toepassen op leerlingen
if (Test-Path $filename_excl_studie) {
$filter_excl_studie = $(Get-Content -Path $filename_excl_studie -Encoding UTF8) -join '|'
$mag_leer = $mag_leer | Where-Object {$_.Studie -notmatch $filter_excl_studie}
Write-Log ("L na uitsluiting studie: " + $mag_leer.count)
}
if (Test-Path $filename_incl_studie) {
$filter_incl_studie = $(Get-Content -Path $filename_incl_studie -Encoding UTF8) -join '|'
$mag_leer = $mag_leer | Where-Object {$_.Studie -match $filter_incl_studie}
Write-Log ("L na insluiting studie : " + $mag_leer.count)
}
if (Test-Path $filename_excl_klas) {
$filter_excl_klas = $(Get-Content -Path $filename_excl_klas -Encoding UTF8) -join '|'
$mag_leer = $mag_leer | Where-Object {$_.Klas -notmatch $filter_excl_klas}
Write-Log ("L na uitsluiting klas : " + $mag_leer.count)
}
if (Test-Path $filename_incl_klas) {
$filter_incl_klas = $(Get-Content -Path $filename_incl_klas -Encoding UTF8) -join '|'
$mag_leer = $mag_leer | Where-Object {$_.Klas -match $filter_incl_klas}
Write-Log ("L na insluiting klas : " + $mag_leer.count)
}
if (Test-Path $filename_incl_locatie) {
$filter_incl_locatie = $(Get-Content -Path $filename_incl_locatie -Encoding UTF8) -join '|'
$mag_leer = $mag_leer | Where-Object {$_.Locatie -match $filter_incl_locatie}
Write-Log ("L na insluiting locatie: " + $mag_leer.count)
}
# filter toepassen op docent
if (Test-Path $filename_excl_docent) {
$filter_excl_docent = $(Get-Content -Path $filename_excl_docent -Encoding UTF8) -join '|'
$mag_doc = $mag_doc | Where-Object {$_.Id -notmatch $filter_excl_docent}
Write-Log ("D na uitsluiting docent: " + $mag_doc.count)
}
if (Test-Path $filename_incl_docent) {
$filter_incl_docent = $(Get-Content -Path $filename_incl_docent -Encoding UTF8) -join '|'
$mag_doc = $mag_doc | Where-Object {$_.Id -match $filter_incl_docent}
Write-Log ("D na insluiting docent : " + $mag_doc.count)
}
#endregion invoer
#region docentteams
################# Teams bepalen aan de hand van docent groepvakken (a la WootsSyncReadPhase.ps1)
$team = @{}
# associatieve array van records:
# Id :
# groep : groep van docent.groepvak[n]
# vak : vakcode van docent.groepvak[n]
# VakOms : omschrijving bij vakcode
# Doctal : aantal docenten
# Docent : lijst van docentid's
# Lltal : aantal leerlingen
# TypeL : type groep : "lgrp" of "klas" oftewel waarom deze leerling hierin zit
# Leerling : lijst van leerlingid's
# index is groep
function New-Team($id, $groep, $vak)
{
# maak een nieuw teamrecord met $naam, geindexeerd op Teamid (dit wordt 'Section SIS ID')
return [PSCustomObject]@{
Id = $id
Naam = $id
Groep = $groep
Vak = $vak
VakOms = $mag_vak[$vak]
Doctal = 0
Docent = [System.Collections.Generic.List[object]]::new()
Lltal = 0
TypeL = ""
Leerling = [System.Collections.Generic.List[object]]::new()
}
}
$activity = "Teams voor docenten maken ..."
$teller = 0
$docentprocent = 100 / [Math]::Max($mag_doc.count, 1)
foreach ($docent in $mag_doc) {
foreach ($groepvak in $docent.groepvakken) {
if ($groepvak.vakcode.length -ge 1) { # skip null-items
$groep = $groepvak.Klas
$vak = $groepvak.Vakcode
$id = "{0}@{1}" -f ($groep, $vak) # tijdelijk identifier uniek voor de combinatie van groep en vak
if ($team.Keys -notcontains $id) {
$tm = New-Team -id $id -groep $groep -vak $vak
$team[$id] = $tm
} else {
$tm = $team[$id]
}
if ($tm.Docent -notcontains $docent.id) {
$tm.Docent.Add($docent.id)
$tm.Doctal += 1
}
}
}
if (!(++$teller % 10)) {
Write-Progress -PercentComplete ($docentprocent * $teller) `
-Activity $activity -Status "Docent $teller van $($mag_doc.count)"
}
}
Write-Progress -Activity $activity -status "Docent" -Completed
# maak opzoektabel groep->team
$groepteams = @{}
$team.Values | ForEach-Object {
if ($groepteams.Keys -notcontains $_.Groep) {
$grpteam = [PSCustomObject]@{
Groep = $_.Groep
Aantal = 0
Teams = [System.Collections.Generic.List[object]]::new()
}
$groepteams[$_.Groep] = $grpteam
} else {
$grpteam = $groepteams[$_.Groep]
}
$grpteam.Teams.Add($_.naam)
$grpteam.Aantal += 1
}
function ToevoegenAanTeam ($Leerling, $Groep, $Label) {
$teams = $groepteams[$groep].Teams # zoek bijbehorend teamindex(en) in opzoektabel
if ($teams) {
foreach ($samegroup in $teams) {
$tm = $team[$samegroup]
if ($tm) {
$tm.Leerling.Add($leerling.id)
$tm.Lltal += 1
if (!$tm.TypeL.contains($Label)){
$tm.TypeL += "$Label"
}
} else {
Write-Warning "Team niet gevonden voor $groep"
}
}
}
}
#endregion docentteams
#region leerlingteams
$activity = "Teams voor leerlingen maken ..."
$teller = 0
$leerlingprocent = 100 / [Math]::Max($mag_leer.count, 1)
foreach ($leerling in $mag_leer) {
ToevoegenAanTeam -Leerling $leerling -Groep $leerling.klas -Label "klas"
foreach ($groep in $leerling.groepen) {
ToevoegenAanTeam -Leerling $leerling -Groep $groep -Label "groep"
}
if (!(++$teller % 50)) {
Write-Progress -PercentComplete ($leerlingprocent * $teller) `
-Activity $activity -status "Leerling $teller van $($mag_leer.count)"
}
}
Write-Progress -Activity $activity -status "Leerling" -Completed
$team = $team.Values | Sort-Object id
#endregion leerlingteams
# Teamnaam en Id bepalen volgens gewenst formaat
foreach ($t in $team) {
$t.Naam = "{0}{1} {2} {3}" -f ($teamnaam_prefix, $t.Groep, $t.VakOms, $teamnaam_suffix)
$t.Id = ConvertTo-ASCII (("{0}{1} {2}" -f ($teamid_prefix, $t.Groep, $t.Vak)) -replace $illegal_characters, $safe_character)
}
Write-Log ("Teams totaal: {0} " -f $team.count)
# export ongefilterde teamslijst naar bestand voor inspectie
$team | Where-Object {$_.Docent.Count -gt 0 -and $_.Leerling.count -gt 0} |
ConvertTo-Json | Out-File ($filename_t_teamunfiltered)
# Filteren op teamnaam
if (Test-Path $filename_excl_teamnaam) {
$filter_excl_teamnaam = $(Get-Content -Path $filename_excl_teamnaam -Encoding UTF8) -join '|'
$team = $team | Where-Object {$_.Naam -notmatch $filter_excl_teamnaam}
Write-Log (" na uitsluiting teamnaam: " + $team.count)
}
if (Test-Path $filename_incl_teamnaam) {
$filter_incl_teamnaam = $(Get-Content -Path $filename_incl_teamnaam -Encoding UTF8) -join '|'
$team = $team | Where-Object {$_.Naam -match $filter_incl_teamnaam}
Write-Log (" na insluiting teamnaam : " + $team.count)
}
# filter op aantal docenten
if ($docenten_per_team_limiet -gt 0) {
$team = $team | Where-Object {$_.doctal -le $docenten_per_team_limiet}
Write-Log (" na toepassen docentenlimiet : " + $team.count)
}
# Maak makkelijk leesbare lijsten om te helpen bij foutzoeken en fijnafstelling.
$hteam = $team | Select-Object Id, Naam, Groep,Vak,VakOms,
@{Name = 'Aantal_docenten'; Expression = {$_.Doctal}},
TypeL,
@{Name = 'Aantal_leerlingen'; Expression = {$_.Lltal}},
@{Name = 'Docenten'; Expression = {($_.docent | Sort-Object) -join ","}},
@{Name = 'Leerlingen'; Expression = {($_.leerling | Sort-Object) -join ","}}
# Splits de teams in 3 lijsten: actief, zonder leerlingen, zonder docenten.
$hteamactief = $hteam | Where-Object {($_.Aantal_leerlingen -gt 0) -and ($_.Aantal_docenten -gt 0)}
$hteam0ll = $hteam | Where-Object {$_.Aantal_docenten -eq 0}
$hteam0doc = $hteam | Where-Object {$_.Aantal_leerlingen -eq 0}
Write-Log ("Teams actief : " + $hteamactief.count )
Write-Log ("Teams zonder leerling : " + $hteam0ll.count )
Write-Log ("Teams zonder docent : " + $hteam0doc.count)
# Bewaar human readable lijsten in CSV om te helpen bij foutzoeken en fijnafstelling.
$hteam | Export-Csv -Path $filename_t_hteamfull -NoTypeInformation -Encoding UTF8 -Delimiter ";"
$hteamactief | Export-Csv -Path $filename_t_hteamactief -NoTypeInformation -Encoding UTF8 -Delimiter ";"
$hteam0doc | Export-CSV -Path $filename_t_hteam0doc -NoTypeInformation -Encoding UTF8 -Delimiter ";"
$hteam0ll | Export-Csv -Path $filename_t_hteam0ll -NoTypeInformation -Encoding UTF8 -Delimiter ";"
# Bewaar actieve teams ook als clixml
$hteamactief | Export-Clixml -Path ($filename_t_hteamactief + ".clixml")
# voor visuele controle
if ($toonresultaat) {
$hteamactief | Out-GridView # dit zijn de actieve teams
}
################# UITVOER
#region uitvoer
$activity = "School Data Sync CSV v1 lijsten samenstellen ..."
# Ik maak de uiteindelijke bestanden aan, die naar School Data Sync worden geupload.
# In Id hebben we nu de UserPrincipalName van de gebruikers.
# Voeg nu een property toe met een speciale id die veilig is voor
# gebruik in School Data Sync door @ te vervangen door _.
# Plaats "uid_" ervóór zodat het herkenbaar is gebruiker.
# Combineer ook een achternaam met tussenvoegsel
$mag_leer | Add-Member -MemberType NoteProperty -Name 'sisid' -Value ""
$mag_leer | Add-Member -MemberType NoteProperty -Name 'achternaamlang' -Value ""
foreach ($l in $mag_leer) {
$l.sisid = 'uid_' + $l.id.replace('@','_')
if ($l.Tussenv -ne '') {
$l.achternaamlang = $l.Tussenv + ' ' + $l.Achternaam
} else {
$l.achternaamlang = $l.Achternaam
}
}
$mag_doc | Add-Member -MemberType NoteProperty -Name 'sisid' -Value ""
$mag_doc | Add-Member -MemberType NoteProperty -Name 'achternaamlang' -Value ""
foreach ($d in $mag_doc) {
$d.sisid = 'uid_' + $d.id.replace('@','_')
if ($d.Tussenv -ne '') {
$d.achternaamlang = $d.Tussenv + ' ' + $d.Achternaam
} else {
$d.achternaamlang = $d.Achternaam
}
}
# voorbereiden SDS formaat CSV bestanden
$school = [System.Collections.Generic.List[object]]::new() # 'SIS ID','Name' bijv "20MH","Jac P. Thijsse College"
$section = [System.Collections.Generic.List[object]]::new() # 'SIS ID','School SIS ID','Section Name' bijv 'SDS_1920_1A_ak','20MH','SDS 1920 1A ak'
$student = [System.Collections.Generic.List[object]]::new() # 'SIS ID','School SIS ID','Username' bijv '10935','20MH','10935'
$studentenrollment = [System.Collections.Generic.List[object]]::new() # 'Section SIS ID','SIS ID' bijv 'SDS_1920_1A','11210'
$teacher = [System.Collections.Generic.List[object]]::new() # 'SIS ID','School SIS ID','Username','First Name','Last Name' bijv "ABl","20MH","ABl","Aaaaaa","Bbbbb"
$teacherroster = [System.Collections.Generic.List[object]]::new() # 'Section SIS ID','SIS ID' bijv "SDS_1920_1A","DZn"
# actieve leerlingen actieve docenten tabel
$teamdoc = [System.Collections.Generic.List[object]]::new()
$teamleer = [System.Collections.Generic.List[object]]::new()
# maak docentopzoektabel
$hashdoc = @{}
$mag_doc | ForEach-Object { $hashdoc[$_.Id] = $_}
# maak leerlingopzoektabel
$hashleer = @{}
$mag_leer | ForEach-Object { $hashleer[$_.Id] = $_}
$teamactief = $team | Where-Object {($_.lltal -gt 0) -and ($_.doctal -gt 0)}
$teller = 0
$teamprocent = 100 / [Math]::Max($teamactief.count, 1)
foreach ($t in $teamactief) {
$rec = 1 | Select-Object 'SIS ID','School SIS ID','Section Name'
$rec.'SIS ID' = $t.id
$rec.'School SIS ID' = $schoolid
$rec.'Section Name' = $t.naam
$section.Add($rec)
foreach ($leerling in $t.leerling) {
$senroll = [PSCustomObject]@{
'Section SIS ID' = $t.id
'SIS ID' = $hashleer[$leerling].sisid
}
$studentenrollment.Add($senroll)
if ($teamleer -notcontains $leerling) {
$teamleer.Add($leerling) # bewaar upn in lijst
}
}
foreach ($docent in $t.docent) {
$troster = [PSCustomObject]@{
'Section SIS ID' = $t.id
'SIS ID' = $hashdoc[$docent].sisid
}
$teacherroster.Add($troster)
if ($teamdoc -notcontains $docent) {
$teamdoc.Add($docent) # bewaar upn in lijst
}
}
if (!(++$teller % 10)) {
Write-Progress -PercentComplete ($teamprocent * $teller) `
-Activity $activity -Status "Team $teller van $($teamactief.count)"
}
}
Write-Progress -Activity $activity -Completed
# actieve docenten opzoeken
foreach ($doc in $teamdoc) {
#record met velden 'SIS ID','School SIS ID','Username','First Name','Last Name'
$thisdoc = $hashdoc[$doc]
$teacher1 = [PSCustomObject]@{
'SIS ID' = $thisdoc.sisid
'School SIS ID' = $schoolid
'Username' = $thisdoc.Id
'First Name' = $thisdoc.Roepnaam
'Last Name' = $thisdoc.achternaamlang
}
$teacher.Add($teacher1)
}
# actieve leerlingen opzoeken
foreach ($leer in $teamleer) {
# record met velden 'SIS ID','School SIS ID','Username','First Name','Last Name'
$thisleer = $hashleer[$leer]
$rec = [PSCustomObject]@{
'SIS ID' = $thisleer.sisid
'School SIS ID' = $schoolid
'Username' = $thisleer.Id
'First Name' = $thisleer.Roepnaam
'Last Name' = $thisleer.achternaamlang
}
$student.Add($rec)
}
# Maak een school
$schoolrec = 1 | Select-Object 'SIS ID',Name
$schoolrec.'SIS ID' = $schoolid
$schoolrec.Name = $schoolnaam
$school.Add($schoolrec)
Write-Log ("School : " + $school.count)
Write-Log ("Student : " + $student.count)
Write-Log ("Studentenrollment : " + $Studentenrollment.count)
Write-Log ("Teacher : " + $teacher.count)
Write-Log ("Teacherroster : " + $teacherroster.count)
Write-Log ("Section : " + $section.count)
# Sorteer de teams voor de mooi
$section = $section | Sort-Object 'SIS ID'
$student = $student | Sort-Object 'SIS ID'
$studentenrollment = $studentenrollment | Sort-Object 'Section SIS ID','SIS ID'
$teacher = $teacher | Sort-Object 'SIS ID'
$teacherroster = $teacherroster | Sort-Object 'Section SIS ID','SIS ID'
# gegevens opslaan in ExportDatamap
$school | Export-Csv -Path $filename_School -Encoding UTF8 -NoTypeInformation
$section | Export-Csv -Path $filename_Section -Encoding UTF8 -NoTypeInformation
$student | Export-Csv -Path $filename_Student -Encoding UTF8 -NoTypeInformation
$studentenrollment | Export-Csv -Path $filename_StudentEnrollment -Encoding UTF8 -NoTypeInformation
$teacher | Export-Csv -Path $filename_Teacher -Encoding UTF8 -NoTypeInformation
$teacherroster | Export-Csv -Path $filename_TeacherRoster -Encoding UTF8 -NoTypeInformation
# gegevens opslaan/toevoegen in ExportVerzamelmap
if ($samenvoegen) {
$school | Export-Csv -Path $filename_CollectedSchool -Encoding UTF8 -NoTypeInformation -Append
$section | Export-Csv -Path $filename_CollectedSection -Encoding UTF8 -NoTypeInformation -Append
$student | Export-Csv -Path $filename_CollectedStudent -Encoding UTF8 -NoTypeInformation -Append
$studentenrollment | Export-Csv -Path $filename_CollectedStudentEnrollment -Encoding UTF8 -NoTypeInformation -Append
$teacher | Export-Csv -Path $filename_CollectedTeacher -Encoding UTF8 -NoTypeInformation -Append
$teacherroster | Export-Csv -Path $filename_CollectedTeacherRoster -Encoding UTF8 -NoTypeInformation -Append
}
#endregion uitvoer
$stopwatch.Stop()
Write-Log ("Klaar in " + $stopwatch.Elapsed.Hours + " uur " + $stopwatch.Elapsed.Minutes + " minuten " + $stopwatch.Elapsed.Seconds + " seconden ")
}
Catch {
$e = $_.Exception
$line = $_.InvocationInfo.ScriptLineNumber
$msg = $e.Message
"$(Get-Date -f "yyyy-MM-ddTHH:mm:ss:fff") [$logtag] caught exception: $msg at line $line" | Out-File -FilePath $currentLogFilename -Append
Write-Error "Caught exception: $msg at line $line"
exit 1
}
#endregion hoofdprogramma