diklabu_poll.psm1
<#
VERBEN: get .... set .... new .... delete . add.... remove ... enable disable list... NOMEN: poll pollquestion pollanswer pollresults #> <# .Synopsis Umfragen abfragen .DESCRIPTION Listet die Umfragen auf .EXAMPLE Get-Polls .EXAMPLE Get-Polls -uri http://localhost:8080/Diklabu/api/v1/ #> function Get-Polls { Param ( # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Get -Uri ($uri+"umfrage") -Headers $headers return $r; } catch { Write-Host "Get-Polls: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Fragen und Antwortsmöglichkeiten einer Umfrage abfragen .DESCRIPTION Liefert die Fragen und die Antworten zu einer Umfrage zurück .EXAMPLE Get-Poll -ID 1 .EXAMPLE Get-Poll -ID 2 -uri http://localhost:8080/Diklabu/api/v1/ .EXAMPLE 0,1 | Get-Poll #> function Get-Poll { Param ( # ID der umfrage [Parameter(Mandatory=$true,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true,Position=0)] [int]$ID, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Get -Uri ($uri+"umfrage/fragen/"+$ID) -Headers $headers return $r; } catch { Write-Host "Get-Poll: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Auswertung einer Umfrage abfragenb .DESCRIPTION Liefert die Anzahl der Antworten für die jeweilige Klasse und der entsprechenden Umfrage .EXAMPLE Get-Pollresults -ID 1 -KNAME FISI14A .EXAMPLE Get-Pollresults -ID 2 -KNAME FISI14A -uri http://localhost:8080/Diklabu/api/v1/ .EXAMPLE "FISI15A","FISI14%" | Get-Pollresults -ID 1 .EXAMPLE Get-Pollresults -ID 1 -KNAME 'FISI14A;FISI14B' Ermittelt die Ergebnisse der Klassen FISI14A und FISI14B .EXAMPLE Get-Pollresults -ID 1 -KNAME 'FISI14% Ermittelt die Ergebnisse aller FISI14 Klassen #> function Get-Pollresults { Param ( # ID der umfrage [Parameter(Mandatory=$true,ValueFromPipelineByPropertyName=$true,Position=0)] [int]$ID, # Name der Klasse [Parameter(Mandatory=$true,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true,Position=1)] [string]$KNAME, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $Encode = [System.Web.HttpUtility]::UrlEncode($KNAME) $r=Invoke-RestMethod -Method Get -Uri ($uri+"umfrage/auswertung/"+$ID+"/"+$Encode) -Headers $headers foreach ($row in $r) { $out = echo "" | Select-Object -Property "frage" $out.frage=$row.frage; $n=1; $row.skalen=$row.skalen | Sort-Object -Property id foreach ($skala in $row.skalen) { $out | Add-Member -NotePropertyName $skala.name -NotePropertyValue $skala.anzahl #$out | Add-Member -NotePropertyName Value$n -NotePropertyValue $skala.anzahl $n++; } $out } } catch { Write-Host "Get-Pollresults: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Legt eine oder mehrere neue(n) Fragen an .DESCRIPTION Erzeugt eine oder mehrere neue(n) Fragen. Als Import kann z.B. eine CSV Datei genutzt werden mit folgenden Einträgen "FRAGE" .EXAMPLE New-PollQuestion -FRAGE "Wie fandest Du den Unterricht?" .EXAMPLE Import-Csv fragen.csv | New-PollQuestion #> function New-PollQuestion { Param ( # Frage [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] [String]$frage, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { $f=echo "" | Select-Object -Property "frage" $f.frage=$frage try { $r=Invoke-RestMethod -Method Post -Uri ($uri+"umfrage/admin/frage") -Headers $headers -Body (ConvertTo-Json $f) return $r; } catch { Write-Host "New-PollQuestion: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Ändert eine oder mehrere Fragen .DESCRIPTION Ändert eine oder mehrere Fragen. .EXAMPLE Set-PollQuestion -id 1 -FRAGE "Wie fandest Du den Unterricht?" #> function Set-PollQuestion { Param ( #ID der Frage [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $ID, # Frage [Parameter(Mandatory=$true,Position=1,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] [String]$FRAGE, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { $f=echo "" | Select-Object -Property "id","frage" $f.frage=$FRAGE $f.id=$ID try { $r=Invoke-RestMethod -Method Put -Uri ($uri+"umfrage/admin/frage") -Headers $headers -Body (ConvertTo-Json $f) return $r; } catch { Write-Host "Set-PollQuestion: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Löscht eine oder mehrere Fragen .DESCRIPTION Löscht eine oder mehrere Fragen. .EXAMPLE delete-PollQuestion -id 1 .EXAMPLE 1,2,3| delete-PollQuestion Löscht die Fragen mit der ID 1 und ID 2 und ID 3 #> function Delete-PollQuestion { Param ( #ID der Frage [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $ID, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Delete -Uri ($uri+"umfrage/admin/frage/"+$ID) -Headers $headers return $r; } catch { Write-Host "Delete-PollQuestion: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Abfrage einer oder mehrere Fragen .DESCRIPTION Abfrage einer oder mehrere Fragen. .EXAMPLE Get-PollQuestion -id 1 .EXAMPLE 1,2,3| Get-PollQuestion #> function Get-PollQuestion { Param ( #ID der Frage [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $ID, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Get -Uri ($uri+"umfrage/admin/frage/"+$ID) -Headers $headers return $r; } catch { Write-Host "Get-PollQuestion: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Abfrage aller Fragen .DESCRIPTION Abfrage aller Fragen .EXAMPLE Get-PollQuestions #> function Get-PollQuestions { Param ( # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Get -Uri ($uri+"umfrage/admin/frage") -Headers $headers return $r; } catch { Write-Host "Get-PollQuestions: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Legt eine oder mehrere neue(n) Antworten an .DESCRIPTION Erzeugt eine oder mehrere neue(n) Antworten. Als Import kann z.B. eine CSV Datei genutzt werden mit folgenden Einträgen "ANTWORT" .EXAMPLE New-PollAnswer -ANTWORT "sehr gut!" .EXAMPLE Import-Csv antworten.csv | New-PollAnswer #> function New-PollAnswer { Param ( # Antwort [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] [String]$ANTWORT, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { $a=echo "" | Select-Object -Property "name" $a.name=$ANTWORT try { $r=Invoke-RestMethod -Method Post -Uri ($uri+"umfrage/admin/antwort") -Headers $headers -Body (ConvertTo-Json $a) return $r; } catch { Write-Host "New-PollAnswer: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Ändert eine oder mehrere Antworten .DESCRIPTION Ändert eine oder mehrere Antworten. .EXAMPLE Set-PollAnswer -id 1 -ANTWORT "Sehr gut!" #> function Set-PollAnswer { Param ( #ID der Antwort [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $ID, # Antowrt [Parameter(Mandatory=$true,Position=1,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] [String]$ANTWORT, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { $a=echo "" | Select-Object -Property "id","name" $a.name=$ANTWORT $a.id=$ID try { $r=Invoke-RestMethod -Method Put -Uri ($uri+"umfrage/admin/antwort") -Headers $headers -Body (ConvertTo-Json $a) return $r; } catch { Write-Host "Set-PollAnswer: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Löscht eine oder mehrere Antworten .DESCRIPTION Löscht eine oder mehrere Antworten. .EXAMPLE delete-PollAnswer -id 1 .EXAMPLE 1,2,3| delete-PollAnswer Löscht die Antworten mit der ID 1 und ID 2 und ID 3 #> function Delete-PollAnswer { Param ( #ID der Antwort [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $ID, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Delete -Uri ($uri+"umfrage/admin/antwort/"+$ID) -Headers $headers return $r; } catch { Write-Host "Delete-PollAnswer: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Abfrage einer oder mehrere Antworten .DESCRIPTION Abfrage einer oder mehrere Antworten. .EXAMPLE Get-PollAnswer -id 1 .EXAMPLE 1,2,3| Get-PollAnswer #> function Get-PollAnswer { Param ( #ID der Antwort [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $ID, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Get -Uri ($uri+"umfrage/admin/antwort/"+$ID) -Headers $headers return $r; } catch { Write-Host "Get-PollAnswer: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Abfrage aller Antworten .DESCRIPTION Abfrage aller Antworten .EXAMPLE Get-PollAnswers #> function Get-PollAnswers { Param ( # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Get -Uri ($uri+"umfrage/admin/antwort") -Headers $headers return $r; } catch { Write-Host "Get-PollAnswers: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Fügt eine Antwort einer Frage hinzu .DESCRIPTION Fügt eine Antwort einer Frage hinzu .EXAMPLE Add-PollAnswer -IDFRage 1 -IDAntwort 1 .EXAMPLE 1,2,3| Add-PollAnswer -IDAntwort 2 Fügt den Fagen mit der ID 1,2 und 3 die Antwort mit der ID 2 hinzu #> function Add-PollAnswer { Param ( #IDFrage [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $IDFrage, #IDAntwort [Parameter(Mandatory=$true,Position=1,ValueFromPipelineByPropertyName=$true)] $IDAntwort, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Post -Uri ($uri+"umfrage/admin/add/"+$IDFrage+"/"+$IDAntwort) -Headers $headers return $r; } catch { Write-Host "Add-PollAnswer: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Entfernt eine Antwort aus einer Frage .DESCRIPTION Entfernt eine Antwort aus einer Frage .EXAMPLE Remove-PollAnswer -IDFRage 1 -IDAntwort 1 .EXAMPLE 1,2,3| Remove-PollAnswer -IDAntwort 2 Entfernt aus den Fagen mit der ID 1,2 und 3 die Antwort mit der ID 2 #> function Remove-PollAnswer { Param ( #IDFrage [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $IDFrage, #IDAntwort [Parameter(Mandatory=$true,Position=1,ValueFromPipelineByPropertyName=$true)] $IDAntwort, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Post -Uri ($uri+"umfrage/admin/remove/"+$IDFrage+"/"+$IDAntwort) -Headers $headers return $r; } catch { Write-Host "Remove-PollAnswer: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Legt eine neue Umfrage an .DESCRIPTION Erzeugt eine neue Umfrage .EXAMPLE New-Poll -TITEL "Schülerbefragung 2018" #> function New-Poll { Param ( # Titel [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] [String]$TITEL, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { $p=echo "" | Select-Object -Property "titel" $p.titel=$TITEL try { $r=Invoke-RestMethod -Method Post -Uri ($uri+"umfrage/admin") -Headers $headers -Body (ConvertTo-Json $p) return $r; } catch { Write-Host "New-Poll: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Ändert eine Umfrage .DESCRIPTION Ändert eine Umfrage .EXAMPLE Set-Poll -id 1 -TITEL "Schülerbefragung 2018/19" #> function Set-Poll { Param ( #ID der Umfrage [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $ID, # Titel der Umfage [Parameter(ValueFromPipelineByPropertyName=$true)] [String]$TITEL, # Aktive Umfage (1=ja) [Parameter(ValueFromPipelineByPropertyName=$true)] [String]$ACTIVE, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { $p=echo "" | Select-Object -Property "id" if ($TITEL) { $p | Add-Member -NotePropertyName "titel" -NotePropertyValue $TITEL } $p.id=$ID if ($ACTIVE) { $p | Add-Member -NotePropertyName "active" -NotePropertyValue $ACTIVE } try { $r=Invoke-RestMethod -Method Put -Uri ($uri+"umfrage/admin") -Headers $headers -Body (ConvertTo-Json $p) return $r; } catch { Write-Host "Set-Poll: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Löscht eine Umfrage .DESCRIPTION Löscht eine Umfrage .EXAMPLE Delete-Poll -id 1 #> function Delete-Poll { Param ( #ID der Antwort [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $ID, [switch]$force=$false, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Delete -Uri ($uri+"umfrage/admin/"+$ID+"/"+$force) -Headers $headers return $r; } catch { Write-Host "Delete-Poll: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Fügt eine Frage eine Umfrage hinzu .DESCRIPTION Fügt eine Frage eine Umfrage hinzu .EXAMPLE Add-PollQuestion -IDUmfrage 1 -IDFrage 1 .EXAMPLE 1,2,3| Add-PollAnswer -IDUmfrage 2 Fügt den Fagen mit der ID 1,2 und 3 die Umfrage mit der ID 2 hinzu #> function Add-PollQuestion { Param ( #IDFrage [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $IDFrage, #IDAntwort [Parameter(Mandatory=$true,Position=1,ValueFromPipelineByPropertyName=$true)] $IDUmfrage, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Post -Uri ($uri+"umfrage/admin/addUmfrage/"+$IDFrage+"/"+$IDUmfrage) -Headers $headers return $r; } catch { Write-Host "Add-PollQuestion: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Entfernt eine Frage aus einer Umfrage .DESCRIPTION Entfernt eine Frage aus einer Umfrage .EXAMPLE Remove-PollQuestion -IDFrage 1 -IDUmfrage 1 .EXAMPLE 1,2,3| Remove-PollQuestion -IDUmfrage 2 Entfernt die Fagen mit der ID 1,2 und 3 aus der Umfrage mit der ID 2 #> function Remove-PollQuestion { Param ( #IDFrage [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $IDFrage, #IDUmfrage [Parameter(Mandatory=$true,Position=1,ValueFromPipelineByPropertyName=$true)] $IDUmfrage, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Post -Uri ($uri+"umfrage/admin/removeUmfrage/"+$IDFrage+"/"+$IDUmfrage) -Headers $headers return $r; } catch { Write-Host "Remove-PollQuestion: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Legt eine oder mehrere neue(n) Teilnehmer für einer Umfrage an .DESCRIPTION Erzeugt eine oder mehrere neue(n) Teilnehmer für eine Umfrage .EXAMPLE New-PollSubscriber -ID_UMFRAGE 1 -ID 2 -TYPE SCHUELER .EXAMPLE find-Course -KNAME "FISI14A" | Get-Coursemember | ForEach-Object {$_.id} | New-PollSubscriber -ID_UMFRAGE 1 -TYPE SCHÜLER Alle Schüler der FISI14A werden zur Umfrage 1 hinzugefügt #> function New-PollSubscriber { Param ( # Umfrage [Parameter(Mandatory=$true,Position=0,ValueFromPipelineByPropertyName=$true)] [int]$ID_UMFRAGE, # ID-Subscriber [Parameter(Mandatory=$true,Position=1,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] $id, # TYPE [Parameter(Mandatory=$true,Position=2,ValueFromPipelineByPropertyName=$true)] [ValidateSet('SCHÜLER','BETRIEB','LEHRER')] [String]$TYPE, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { if ($TYPE -eq "SCHÜLER") { $t=echo "" | Select-Object -Property "idUmfrage","idSchueler" $t.idSchueler=$id } elseif ($TYPE -eq "BETRIEB") { $t=echo "" | Select-Object -Property "idUmfrage","idBetrieb" $t.idBetrieb=$id } elseif ($TYPE -eq "LEHRER") { $t=echo "" | Select-Object -Property "idUmfrage","idLehrer" $t.idLehrer=$id } $t.idUmfrage=$ID_UMFRAGE try { $r=Invoke-RestMethod -Method Post -Uri ($uri+"umfrage/admin/subscriber") -Headers $headers -Body (ConvertTo-Json $t) return $r; } catch { Write-Host "New-PollSubscriber: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Fragt die Teilnehmer an einer Umfrage ab .DESCRIPTION Fragt die Teilnehmer an einer Umfrage ab .EXAMPLE Get-PollSubscribers -ID_UMFRAGE 1 #> function Get-PollSubscribers { Param ( # Umfrage [Parameter(Mandatory=$true,Position=0,ValueFromPipelineByPropertyName=$true)] [String]$ID_UMFRAGE, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Get -Uri ($uri+"umfrage/admin/subscriber/"+$ID_UMFRAGE) -Headers $headers return $r; } catch { Write-Host "Get-PollSubscribers: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Löscht einen Teilnehmer einer Umfrage ab .DESCRIPTION Löscht einen Teilnehmer einer Umfrage ab .EXAMPLE Delete-PollSubscriber -KEY abcd .EXAMPLE Get-PollSubscribers -ID_UMFRAGE 1 | ForEach-Object {$_.key} | Delete-PollSubscriber Löscht alle Teilnehmer aus der Umfrage 1, die noch keine Antworten abgegeben haben #> function Delete-PollSubscriber { Param ( # key [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] [String]$KEY, [switch]$force=$false, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Delete -Uri ($uri+"umfrage/admin/subscriber/"+$Key+"/"+$force) -Headers $headers return $r; } catch { Write-Host "Delete-PollSubscriber: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } <# .Synopsis Schickt eine EMail an einen Teilnehmer der Umfrage .DESCRIPTION Schickt eine EMail an einen Teilnehmer der Umfrage .EXAMPLE Invite-PollSubscriber -KEY abcd .EXAMPLE "abcd","cdef" | Invite-PollSubscriber .EXAMPLE Import-Csv keys.csv | Invite-PollSubscriber #> function Invite-PollSubscriber { Param ( # KEY [Parameter(Mandatory=$true,Position=0,ValueFromPipeline=$true,ValueFromPipelineByPropertyName=$true)] [String]$KEY, # Adresse des Diklabu Servers [String]$uri=$global:server ) Begin { $headers=@{} $headers["content-Type"]="application/json;charset=iso-8859-1" $headers["auth_token"]=$global:auth_token; } Process { try { $r=Invoke-RestMethod -Method Get -Uri ($uri+"umfrage/admin/invite/"+$KEY) -Headers $headers return $r; } catch { Write-Host "Invite-PollSubscriber: Status-Code"$_.Exception.Response.StatusCode.value__ " "$_.Exception.Response.StatusDescription -ForegroundColor red } } } |