forked from exactmike/OneShell
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProfileFunctions.ps1
More file actions
2773 lines (2766 loc) · 109 KB
/
Copy pathProfileFunctions.ps1
File metadata and controls
2773 lines (2766 loc) · 109 KB
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
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
##########################################################################################################
#Profile and Environment Initialization Functions
##########################################################################################################
#################################################
# Private Functions
#################################################
function GetPotentialOrgProfiles
{
[cmdletbinding()]
param
(
[parameter()]
[AllowNull()]
[string[]]$path
)
if ($null -eq $path)
{
throw('You must specify the Path parameter or run Set-OneShellOrgProfilePath')
}
$JSONProfiles = @(
foreach ($p in $Path)
{
Write-Verbose -Message "Getting JSON Files From $p"
(Get-ChildItem -Path "$p\*" -Include '*.json' -Exclude 'OneShellSystemSettings.json')
}
)
Write-Verbose -Message "Found $($jsonProfiles.count) json Files"
$PotentialOrgProfiles = @(
foreach ($file in $JSONProfiles)
{Import-JSON -Path $file.fullname | Add-Member -MemberType NoteProperty -Name DirectoryPath -Value $File.DirectoryName -PassThru}
)
Write-Verbose -Message "Found $($PotentialOrgProfiles.count) Potential Org Profiles"
if ($PotentialOrgProfiles.Count -lt 1)
{
throw('You must specify a folder path which contains OneShell Org Profiles with the Path parameter and/or you must create at least one Org Profile using New-OneShellOrgProfile.')
}
else
{
$PotentialOrgProfiles
}
}
#end funciton GetPotentialOrgProfiles
function GetPotentialUserProfiles
{
[cmdletbinding()]
param
(
[parameter()]
[AllowNull()]
[string[]]$path
)
if ($null -eq $path)
{
throw('You must specify the Path parameter or run Set-OneShellUserProfilePath')
}
$JSONProfiles = @(
foreach ($p in $Path)
{
Get-ChildItem -Path "$p\*" -Include '*.json' -Exclude 'OneShellUserSettings.json'
}
)
$PotentialUserProfiles = @(
foreach ($file in $JSONProfiles)
{
Get-Content -Path $file.fullname -Raw | ConvertFrom-Json
}
)
if ($PotentialUserProfiles.Count -lt 1)
{
throw('You must specify a folder path which contains OneShell User Profiles with the Path parameter and/or you must create at least one User Profile using New-OneShellUserProfile.')
}
else
{
$PotentialUserProfiles
}
}
#End function GetPotentialUserProfiles
function Get-OneShellServiceTypeName
{
$script:ServiceTypes.Name
}
#end function Get-OneShellServiceTypeName
function NewGenericOrgProfileObject
{
[cmdletbinding()]
param()
[pscustomobject]@{
Identity = [guid]::NewGuid()
Name = ''
ProfileType = 'OneShellOrgProfile'
ProfileTypeVersion = 1.2
Version = .01
OrganizationSpecificModules = @()
Systems = @()
}
}
#end function GetGenericNewOrgProfileObject
function NewGenericOrgSystemObject
{
[cmdletbinding()]
param()
[pscustomobject]@{
Identity = [guid]::NewGuid()
Name = ''
Description = ''
ServiceType = ''
SystemObjectVersion = .01
Version = .01
Defaults = [PSCustomObject]@{
ProxyEnabled = $null
AuthenticationRequired = $true
UseTLS = $null
AuthMethod = $null
CommandPrefix = $null
UsePSRemoting = $true
}
Endpoints = @()
ServiceTypeAttributes = [PSCustomObject]@{}
}
}
#end function NewGenericOrgSystemObject
function AddServiceTypeAttributesToGenericOrgSystemObject
{
[CmdletBinding()]
param
(
[parameter(Mandatory)]
$OrgSystemObject
,
[parameter(Mandatory)]
$ServiceType
,
[parameter()]
$dictionary
)#end param
#Get-CallerPreference -Cmdlet $PSCmdlet -SessionState $ExecutionContext.SessionState
if ($null -ne $dictionary)
{
Set-DynamicParameterVariable -dictionary $dictionary
}
$ServiceTypeDefinition = Get-OneShellServiceTypeDefinition -ServiceType $ServiceType
Write-Verbose -Message "Using ServiceTypeDefinition $($ServiceTypeDefinition.name)"
if ($null -ne $serviceTypeDefinition.OrgSystemServiceTypeAttributes -and $serviceTypeDefinition.OrgSystemServiceTypeAttributes.count -ge 1)
{
foreach ($a in $ServiceTypeDefinition.OrgSystemServiceTypeAttributes.name)
{
$Value = $(Get-Variable -Name $a -Scope Local).Value
Write-Verbose -Message "Value for $a is $($value -join ',')"
$OrgSystemObject.ServiceTypeAttributes | Add-Member -MemberType NoteProperty -Name $a -Value $Value
}
}
$OrgSystemObject
}
#end function AddServiceTypeAttributesToGenericOrgSystemObject
function NewGenericSystemEndpointObject
{
[cmdletbinding()]
param()
[PSCustomObject]@{
Identity = [guid]::NewGuid()
AddressType = $null
Address = $null
ServicePort = $null
UseTLS = $null
ProxyEnabled = $null
CommandPrefix = $null
AuthenticationRequired = $null
AuthMethod = $null
EndPointGroup = $null
Precedence = $null
EndPointType = $null
ServiceTypeAttributes = [PSCustomObject]@{}
ServiceType = $null
PSRemoting = $null
}
}
#end function NewGenericSystemEndpointObject
function NewGenericUserProfileObject
{
[cmdletbinding()]
param
(
$TargetOrgProfile
)
[pscustomobject]@{
Identity = [guid]::NewGuid()
ProfileType = 'OneShellUserProfile'
ProfileTypeVersion = 1.3
Name = $targetOrgProfile.name + '-' + $env:USERNAME + '-' + $env:COMPUTERNAME
Host = $env:COMPUTERNAME
User = $env:USERNAME
Organization = [pscustomobject]@{
Name = $targetOrgProfile.Name
Identity = $targetOrgProfile.identity
}
ProfileFolder = ''
LogFolder = ''
ExportDataFolder = ''
InputFilesFolder = ''
MailFromSMTPAddress = ''
Systems = @()
Credentials = @()
}
}#end function NewGenericUserProfileObject
function GetOrgProfileSystemForUserProfile
{
[cmdletbinding()]
param($OrgProfile)
foreach ($s in $OrgProfile.Systems)
{
[PSCustomObject]@{
Identity = $s.Identity
AutoConnect = $null
AutoImport = $null
Credentials = [PSCustomObject]@{
PSSession = $null
Service = $null
}
PreferredEndpoint = $null
PreferredPrefix = $null
}
}
}
#end function GetOrgProfileSystemForUserProfile
function UpdateUserProfileObjectVersion
{
[cmdletbinding()]
param
(
[parameter(Mandatory)]
$UserProfile
,
$DesiredProfileTypeVersion = 1.3
)
do
{
switch ($UserProfile.ProfileTypeVersion)
{
{$_ -lt 1}
{
#Upgrade ProfileVersion to 1
#MailFrom
if (-not (Test-Member -InputObject $UserProfile.General -Name MailFrom))
{
$UserProfile.General | Add-Member -MemberType NoteProperty -Name MailFrom -Value $null
}
#UserName
if (-not (Test-Member -InputObject $UserProfile.General -Name User))
{
$UserProfile.General | Add-Member -MemberType NoteProperty -Name User -Value $env:USERNAME
}
#MailRelayEndpointToUse
if (-not (Test-Member -InputObject $UserProfile.General -Name MailRelayEndpointToUse))
{
$UserProfile.General | Add-Member -MemberType NoteProperty -Name MailRelayEndpointToUse -Value $null
}
#ProfileTypeVersion
if (-not (Test-Member -InputObject $UserProfile -Name ProfileTypeVersion))
{
$UserProfile | Add-Member -MemberType NoteProperty -Name ProfileTypeVersion -Value 1.0
}
#Credentials add Identity
foreach ($Credential in $UserProfile.Credentials)
{
if (-not (Test-Member -InputObject $Credential -Name Identity))
{
$Credential | Add-Member -MemberType NoteProperty -Name Identity -Value $(New-OneShellGuid).guid
}
}
#SystemEntries
foreach ($se in $UserProfile.Systems)
{
if (-not (Test-Member -InputObject $se -Name Credentials))
{
$se | Add-Member -MemberType NoteProperty -Name Credentials -Value $null
}
foreach ($credential in $UserProfile.Credentials)
{
if (Test-Member -InputObject $credential -Name Systems)
{
if ($se.Identity -in $credential.systems)
{$se.credentials = @($credential.Identity)}
}
}
}
#Credentials Remove Systems
$UpdatedCredentialObjects = @(
foreach ($Credential in $UserProfile.Credentials)
{
if (Test-Member -InputObject $Credential -Name Systems)
{
$UpdatedCredential = $Credential | Select-Object -Property Identity, Username, Password
$UpdatedCredential
}
else
{
$Credential
}
}
)
$UserProfile.Credentials = $UpdatedCredentialObjects
}#end $_ -lt 1
{$_ -eq 1}
{
$NewMembers = ('ProfileFolder', 'Name', 'MailFromSMTPAddress')
foreach ($nm in $NewMembers)
{
if (-not (Test-Member -InputObject $UserProfile -Name $nm))
{
$UserProfile | Add-Member -MemberType NoteProperty -Name $nm -Value $null
}
switch ($nm)
{
'MailFromSMTPAddress'
{$UserProfile.$nm = $UserProfile.General.MailFrom}
Default
{$UserProfile.$nm = $UserProfile.General.$nm}
}
}
$UserProfile | Add-Member -MemberType NoteProperty -Value $([pscustomobject]@{Identity = $null; Name = $null}) -name Organization
$UserProfile.Organization.Identity = $UserProfile.General.OrganizationIdentity
$UserProfile | Remove-member -member General
$UserProfile.ProfileTypeVersion = 1.1
}
{$_ -eq 1.1}
{
#SystemEntries Update to user possibly separate credentials for PSSession and Service
foreach ($se in $UserProfile.Systems)
{
if (-not (Test-Member -InputObject $se -Name Credentials))
{
$se | Add-Member -MemberType NoteProperty -Name Credentials -Value $([pscustomobject]@{PSSession = $se.Credential; Service = $se.Credential})
$Se | Remove-Member -Member Credential
}
}
$UserProfile.ProfileTypeVersion = 1.2
}
{$_ -eq 1.2}
{
#Add attributes for discrete LogFolder, ExportDataFolder, and InputFilesFolder
$NewMembers = ('LogFolder', 'ExportDataFolder', 'InputFilesFolder')
foreach ($nm in $NewMembers)
{
if (-not (Test-Member -InputObject $UserProfile -name $nm))
{
$UserProfile | Add-Member -MemberType NoteProperty -Name $nm -Value $null
}
}
$UserProfile.ProfileTypeVersion = 1.3
}
}#end switch
}
Until ($UserProfile.ProfileTypeVersion -eq $DesiredProfileTypeVersion)
$UserProfile
}
#end function UpdateUserProfileObjectVersion
function AddUserProfileFolder
{
[cmdletbinding()]
param
(
$UserProfile
)
$profileFolder = $UserProfile.ProfileFolder
if ($null -eq $profileFolder -or [string]::IsNullOrEmpty($profileFolder))
{throw("User Profile $($UserProfile.Identity) Profile Folder is invalid.")}
if (-not (Test-Path -Path $profileFolder))
{
[void](New-Item -Path $profileFolder -ItemType Directory -ErrorAction Stop)
}
$profileSubfolders = $(join-path $profilefolder 'Logs'), $(join-path $profilefolder 'Export'), $(join-path $profileFolder 'InputFiles')
foreach ($folder in $profileSubfolders)
{
if (-not (Test-Path -Path $folder))
{
[void](New-Item -Path $folder -ItemType Directory -ErrorAction Stop)
}
}
}
#end function AddUserProfileFolder
function GetUserProfileSystemPropertySet
{
"Identity", "AutoConnect", "AutoImport", "Credentials", "PreferredEndpoint", "PreferredPrefix"
}
#end function GetUserProfileSystemPropertySet
function GetSelectProfile
{
[cmdletbinding()]
param
(
[parameter(Mandatory)]
[ValidateSet('Org', 'User')]
$ProfileType
,
[parameter(Mandatory)]
$Path
,
[parameter(Mandatory)]
[psobject[]]$PotentialProfiles
,
[parameter()]
[AllowNull()]
$Identity
,
[parameter(Mandatory)]
[ValidateSet('Remove', 'Edit', 'Associate', 'Get', 'Use')]
$Operation
)
if ($null -eq $Identity -or (Test-IsNullOrWhiteSpace -String $identity))
{
Select-Profile -Profiles $PotentialProfiles -Operation $Operation
}
else
{
$Profile = $(
switch ($ProfileType)
{
'Org'
{
$GetOrgProfileParams = @{
ErrorAction = 'Stop'
Identity = $Identity
Path = $Path
}
Get-OneShellOrgProfile @GetOrgProfileParams
}
'User'
{
$GetUserProfileParams = @{
ErrorAction = 'Stop'
Path = $Path
Identity = $Identity
}
Get-OneShellUserProfile @GetUserProfileParams
}
}
)
if ($null -eq $Profile -or $Profile.count -ge 2 -or $profile.count -eq 0)
{
throw("No valid $ProfileType Profile Identity was provided.")
}
else
{
$Profile
}
}
}
#end function GetSelectProfile
function GetSelectProfileSystem
{
[cmdletbinding()]
param
(
[parameter(Mandatory)]
[psobject[]]$PotentialSystems
,
[parameter()]
[AllowNull()]
$Identity
,
[parameter(Mandatory)]
[ValidateSet('Remove', 'Edit', 'Associate', 'Get', 'Use')]
$Operation
)
$System = $(
if ($null -eq $Identity -or (Test-IsNullOrWhiteSpace -String $identity))
{
Select-ProfileSystem -Systems $PotentialSystems -Operation $Operation
}
else
{
if ($Identity -in $PotentialSystems.Identity -or $Identity -in $PotentialSystems.Name)
{$PotentialSystems | Where-Object -FilterScript {$_.Identity -eq $Identity -or $_.Name -eq $Identity}}
}
)
if ($null -eq $system -or $system.count -ge 2 -or $system.count -eq 0)
{throw("Invalid SystemIdentity $Identity was provided. No such system exists or ambiguous system exists.")}
else
{$system}
}
#end function GetSelectProfile
#################################################
# Public Functions
#################################################
function Get-OneShellServiceTypeDefinition
{
[cmdletbinding()]
param
(
[parameter()]
[string]$ServiceType
)
$Script:ServiceTypes | where-object -FilterScript {$_.Name -eq $ServiceType -or (Test-IsNullOrWhiteSpace -String $ServiceType)}
}
#end function Get-OneShellServiceTypeDefinition
Function Get-OneShellOrgProfile
{
[cmdletbinding(DefaultParameterSetName = 'All')]
param
(
[parameter(ParameterSetName = 'Identity', Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)]
[string[]]$Identity
,
[parameter(ParameterSetName = 'All')]
[parameter(ParameterSetName = 'Identity')]
[ValidateScript( {Test-DirectoryPath -path $_})]
[string[]]$Path = $Script:OneShellOrgProfilePath
,
[parameter(ParameterSetName = 'All')]
[parameter(ParameterSetName = 'Identity')]
$OrgProfileType = 'OneShellOrgProfile'
,
[parameter(ParameterSetName = 'GetCurrent')]
[switch]$GetCurrent
)
Process
{
Write-Verbose -Message "Parameter Set is $($pscmdlet.ParameterSetName)"
switch ($PSCmdlet.ParameterSetName)
{
'GetCurrent'
{
$Script:CurrentOrgProfile
}
Default
{
$PotentialOrgProfiles = @(GetPotentialOrgProfiles -path $path)
if ($PotentialOrgProfiles.Count -ge 1)
{
$FoundOrgProfiles = @($PotentialOrgProfiles | Where-Object {$_.ProfileType -eq $OrgProfileType})
Write-Verbose -Message "Found $($FoundOrgProfiles.Count) Org Profiles."
switch ($PSCmdlet.ParameterSetName)
{
'Identity'
{
foreach ($i in $Identity)
{
Write-Verbose -Message "Identity is set to $"
@($FoundOrgProfiles | Where-Object -FilterScript {$_.Identity -eq $i -or $_.Name -eq $i})
}
}#Identity
'All'
{
@($FoundOrgProfiles)
}#All
}#switch
}#if
}#Default
}#switch
}#end Process
}
#end Function Get-OneShellOrgProfile
function New-OneShellOrgProfile
{
[cmdletbinding()]
param
(
[parameter(Mandatory)]
[string]$Name
,
[parameter()]
[string[]]$OrganizationSpecificModules
,
[parameter()]
[ValidateScript( {Test-DirectoryPath -path $_})]
[string]$Path = $script:OneShellOrgProfilePath
)
$GenericOrgProfileObject = NewGenericOrgProfileObject
$GenericOrgProfileObject.Name = $Name
$GenericOrgProfileObject.OrganizationSpecificModules = $OrganizationSpecificModules
Export-OneShellOrgProfile -profile $GenericOrgProfileObject -path $path -erroraction Stop
}
#end function New-OneShellOrgProfile
function Set-OneShellOrgProfile
{
[cmdletbinding(DefaultParameterSetName = 'Identity')]
param
(
[parameter(ParameterSetName = 'Identity', Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)]
[string]$Identity
,
[parameter(ValueFromPipelineByPropertyName)]
[ValidateNotNullOrEmpty()]
[string]$Name
,
[parameter(ValueFromPipelineByPropertyName)]
[ValidateNotNullOrEmpty()]
[psobject[]]$Systems #Enables copying systems from one org profile to another. No validation is implemented, however. Replaces all existing Systems when used so use or build an array of systems to use. Use with caution for existing profiles.
,
[parameter()]
[ValidateScript( {Test-DirectoryPath -path $_})]
[string[]]$Path = $Script:OneShellOrgProfilePath
)
Process
{
foreach ($i in $Identity)
{
#Get the Org Profile
$GetOrgProfileParams = @{
ErrorAction = 'Stop'
Identity = $Identity
Path = $Path
}
$OrgProfile = $(Get-OneShellOrgProfile @GetOrgProfileParams)
Write-Verbose -Message "Selected Org Profile is $($OrgProfile.Name)"
foreach ($p in $PSBoundParameters.GetEnumerator())
{
if ($p.key -in @('Name', 'Systems'))
{
$OrgProfile.$($p.key) = $p.value
}
}
Export-OneShellOrgProfile -profile $OrgProfile -Path $OrgProfile.DirectoryPath -ErrorAction 'Stop'
}
}
}
#end function Set-OneShellOrgProfile
Function Export-OneShellOrgProfile
{
[cmdletbinding(SupportsShouldProcess)]
param
(
[parameter(Mandatory)]
[psobject]$profile
,
[parameter(Mandatory)]
[AllowNull()]
[ValidateScript( {Test-DirectoryPath -path $_})]
$Path
)
$name = [string]$($profile.Identity.tostring()) + '.json'
if ($null -eq $Path)
{
Write-Verbose -Message "Using Default Profile Location"
$FilePath = Join-Path $script:OneShellOrgProfilePath[0] $name
}
else
{
$FilePath = Join-Path $Path $name
}
Write-Verbose -Message "Profile File Export Path is $FilePath"
$profile | Remove-Member -Member DirectoryPath
$JSONparams = @{
InputObject = $profile
ErrorAction = 'Stop'
Depth = 10
}
$OutParams = @{
ErrorAction = 'Stop'
FilePath = $FilePath
Encoding = 'ascii'
}
if ($whatifPreference -eq $false)
{$OutParams.Force = $true}
try
{
ConvertTo-Json @JSONparams | Out-File @OutParams
}#end try
catch
{
$_
throw "FAILED: Could not write Org Profile data to $FilePath"
}#end catch
}
#end Function Export-OneShellOrgProfile
Function Use-OneShellOrgProfile
{
[cmdletbinding(DefaultParameterSetName = 'Identity')]
param
(
[parameter(ParameterSetName = 'Identity', ValueFromPipeline, ValueFromPipelineByPropertyName)]
[string]$Identity
,
[parameter(ParameterSetName = 'Object')]
$profile
,
[parameter(ParameterSetName = 'Identity')]
[ValidateScript( {Test-DirectoryPath -path $_})]
[string[]]$Path = $Script:OneShellOrgProfilePath
)
end
{
switch ($PSCmdlet.ParameterSetName)
{
'Object'
{}
'Identity'
{
$PotentialOrgProfiles = @(GetPotentialOrgProfiles -path $Path)
if ($null -eq $Identity)
{
$Profile = Select-Profile -Profiles $PotentialOrgProfiles -Operation Edit
}
else
{
#Get the Org Profile
$GetOrgProfileParams = @{
ErrorAction = 'Stop'
Identity = $Identity
Path = $Path
}
$Profile = $(Get-OneShellOrgProfile @GetOrgProfileParams)
}
}
}# end switch
if ($null -ne $script:CurrentOrgProfile -and $profile.Identity -ne $script:CurrentOrgProfile.Identity)
{
$script:CurrentOrgProfile = $profile
Write-OneShellLog -message "Org Profile has been changed to $($script:CurrentOrgProfile.Identity), $($script:CurrentOrgProfile.name). Remove PSSessions and select an user Profile to load." -EntryType Notification -Verbose
}
else
{
$script:CurrentOrgProfile = $profile
Write-OneShellLog -Message "Org Profile has been set to $($script:CurrentOrgProfile.Identity), $($script:CurrentOrgProfile.name)." -EntryType Notification -Verbose
}
}
}
#end function Use-OneShellOrgProfile
function New-OneShellOrgProfileSystem
{
[cmdletbinding(SupportsShouldProcess)]
param
(
[parameter(ParameterSetName = 'Identity', Mandatory, ValueFromPipeline, ValueFromPipelineByPropertyName)]
[string]$ProfileIdentity
,
[parameter(Mandatory, ValueFromPipelineByPropertyName)]
[string]$Name
,
[parameter(ValueFromPipelineByPropertyName)]
[string]$Description
,
[parameter(Mandatory, ValueFromPipelineByPropertyName)]
[string]$ServiceType
,
[parameter(ValueFromPipelineByPropertyName)]
[validateset($true, $false)]
[bool]$ProxyEnabled
,
[parameter(ValueFromPipelineByPropertyName)]
[validateset($true, $false)]
[bool]$AuthenticationRequired
,
[parameter(ValueFromPipelineByPropertyName)]
[validateset($true, $false)]
[bool]$UseTLS
,
[parameter(ValueFromPipelineByPropertyName)]
[ValidateSet('Basic', 'Kerberos', 'Integrated')]
$AuthMethod
,
[parameter(ValueFromPipelineByPropertyName)]
[AllowEmptyString()]
[AllowNull()]
[string]$CommandPrefix
,
[parameter(ValueFromPipelineByPropertyName)]
[ValidateScript( {Test-DirectoryPath -path $_})]
[string[]]$Path = $Script:OneShellOrgProfilePath
)#end param
DynamicParam
{
#build any service type specific parameters that may be needed
$ServiceTypeDefinition = Get-OneShellServiceTypeDefinition -ServiceType $ServiceType
if ($null -ne $serviceTypeDefinition.OrgSystemServiceTypeAttributes -and $serviceTypeDefinition.OrgSystemServiceTypeAttributes.count -ge 1)
{
foreach ($a in $ServiceTypeDefinition.OrgSystemServiceTypeAttributes)
{
$dictionary = New-DynamicParameter -Name $a.name -Type $($a.type -as [type]) -Mandatory $a.mandatory -DPDictionary $dictionary
}
}
$dictionary
}#End DynamicParam
Begin
{
$PotentialOrgProfiles = @(GetPotentialOrgProfiles -path $Path)
if ($null -ne $dictionary)
{
Set-DynamicParameterVariable -dictionary $dictionary
}
#Get/Select the OrgProfile
$OrgProfile = GetSelectProfile -ProfileType Org -Path $path -PotentialProfiles $PotentialOrgProfiles -Identity $ProfileIdentity -Operation Edit
#Build the System Object
$GenericSystemObject = NewGenericOrgSystemObject
$GenericSystemObject.ServiceType = $ServiceType
#Edit the selected System
$AllValuedParameters = Get-AllParametersWithAValue -BoundParameters $PSBoundParameters -AllParameters $MyInvocation.MyCommand.Parameters
#Set the common System Attributes
foreach ($vp in $AllValuedParameters)
{
if ($vp.name -in 'Name', 'Description')
{$GenericSystemObject.$($vp.name) = $($vp.value)}
}
#set the default System Attributes
foreach ($vp in $AllValuedParameters)
{
if ($vp.name -in 'UseTLS', 'ProxyEnabled', 'CommandPrefix', 'AuthenticationRequired', 'AuthMethod')
{$GenericSystemObject.defaults.$($vp.name) = $($vp.value)}
}
$addServiceTypeAttributesParams = @{
OrgSystemObject = $GenericSystemObject
ServiceType = $ServiceType
}
if ($null -ne $Dictionary)
{$addServiceTypeAttributesParams.Dictionary = $Dictionary}
$GenericSystemObject = AddServiceTypeAttributesToGenericOrgSystemObject @addServiceTypeAttributesParams
$OrgProfile.Systems += $GenericSystemObject
Export-OneShellOrgProfile -profile $OrgProfile -Path $OrgProfile.DirectoryPath
}
}
#end function New-OrgSystemObject
function Set-OneShellOrgProfileSystem
{
[cmdletbinding()]
param
(
[parameter(ParameterSetName = 'Identity', ValueFromPipelineByPropertyName)]
[string]$ProfileIdentity
,
[parameter(ValueFromPipelineByPropertyName, ValueFromPipeline)]
[ValidateNotNullOrEmpty()]
[string[]]$Identity #System Identity or Name
#,switching service types of a system is not currently supported because of ServiceTypeAttributes for systems and endpoints
#[parameter(ValueFromPipelineByPropertyName)]
#[string]$ServiceType
,
[parameter(ValueFromPipelineByPropertyName)]
[string]$Name
,
[parameter(ValueFromPipelineByPropertyName)]
[string]$Description
,
[parameter(ValueFromPipelineByPropertyName)]
[validateset($true, $false)]
[bool]$ProxyEnabled
,
[parameter(ValueFromPipelineByPropertyName)]
[validateset($true, $false)]
[bool]$AuthenticationRequired
,
[parameter(ValueFromPipelineByPropertyName)]
[validateset($true, $false)]
[bool]$UseTLS
,
[parameter(ValueFromPipelineByPropertyName)]
[ValidateSet('Basic', 'Kerberos', 'Integrated')]
$AuthMethod
,
[parameter(ValueFromPipelineByPropertyName)]
[AllowEmptyString()]
[AllowNull()]
[string]$CommandPrefix
,
[parameter(ValueFromPipelineByPropertyName)]
[ValidateScript( {Test-DirectoryPath -path $_})]
[string[]]$Path = $Script:OneShellOrgProfilePath
)#end param
Begin
{
$PotentialOrgProfiles = @(GetPotentialOrgProfiles -path $Path)
}
Process
{
foreach ($i in $Identity)
{
#Get/Select the Org Profile
$OrgProfile = GetSelectProfile -ProfileType Org -Path $path -PotentialProfiles $PotentialOrgProfiles -Identity $ProfileIdentity -Operation Edit
#Get/Select the System
$System = GetSelectProfileSystem -PotentialSystems $OrgProfile.Systems -Identity $i -Operation Edit
#Edit the selected System
$AllValuedParameters = Get-AllParametersWithAValue -BoundParameters $PSBoundParameters -AllParameters $MyInvocation.MyCommand.Parameters
#Set the common System Attributes
foreach ($vp in $AllValuedParameters)
{
if ($vp.name -in 'Name', 'Description', 'ServiceType')
{$System.$($vp.name) = $($vp.value)}
}
#set the default System Attributes
foreach ($vp in $AllValuedParameters)
{
if ($vp.name -in 'UseTLS', 'ProxyEnabled', 'CommandPrefix', 'AuthenticationRequired', 'AuthMethod')
{$System.defaults.$($vp.name) = $($vp.value)}
}
#update the system entry in the org profile
$OrgProfile = Update-ExistingObjectFromMultivaluedAttribute -ParentObject $OrgProfile -ChildObject $System -MultiValuedAttributeName Systems -IdentityAttributeName Identity
Export-OneShellOrgProfile -profile $OrgProfile -Path $OrgProfile.DirectoryPath
}
}
}
#end function Set-OrgSystemObject
function Set-OneShellOrgProfileSystemServiceTypeAttribute
{
[cmdletbinding()]
param
(
[parameter(ParameterSetName = 'Identity', ValueFromPipelineByPropertyName, Mandatory)]
[string]$ProfileIdentity
,
[parameter(ValueFromPipelineByPropertyName, ValueFromPipeline, Mandatory)]
[ValidateNotNullOrEmpty()]
[string[]]$Identity #System Identity or Name
,
[parameter(Mandatory)]
[string]$ServiceType
,
[parameter(ValueFromPipelineByPropertyName)]
[ValidateScript( {Test-DirectoryPath -path $_})]
[string[]]$Path = $Script:OneShellOrgProfilePath
)#end param
DynamicParam
{
$ServiceTypeDefinition = Get-OneShellServiceTypeDefinition -ServiceType $ServiceType
if ($null -ne $serviceTypeDefinition.OrgSystemServiceTypeAttributes -and $serviceTypeDefinition.OrgSystemServiceTypeAttributes.count -ge 1)
{
foreach ($a in $ServiceTypeDefinition.OrgSystemServiceTypeAttributes)
{
$dictionary = New-DynamicParameter -Name $a.name -Type $($a.type -as [type]) -Mandatory $false -DPDictionary $dictionary -ValueFromPipelineByPropertyName $true
}
}
$dictionary
}#End DynamicParam
Begin
{
$PotentialOrgProfiles = GetPotentialOrgProfiles -path $Path
}
Process
{
foreach ($i in $Identity)
{
Set-DynamicParameterVariable -dictionary $dictionary
#Get/Select the Org Profile
$OrgProfile = GetSelectProfile -ProfileType Org -Path $path -PotentialProfiles $PotentialOrgProfiles -Identity $ProfileIdentity -Operation Edit
#Get/Select the System
$System = GetSelectProfileSystem -PotentialSystems $OrgProfile.Systems -Identity $i -Operation Edit
if ($ServiceType -ne $System.ServiceType) {throw("ServiceType specified does not match the system.")}
#Edit the selected System
$AllValuedParameters = Get-AllParametersWithAValue -BoundParameters $PSBoundParameters -AllParameters $MyInvocation.MyCommand.Parameters
#Set the ServiceType Specific System Attributes
$ServiceTypeDefinition = Get-OneShellServiceTypeDefinition -ServiceType $ServiceType
if ($null -ne $serviceTypeDefinition.OrgSystemServiceTypeAttributes -and $serviceTypeDefinition.OrgSystemServiceTypeAttributes.count -ge 1)
{
$ServiceTypeAttributeNames = @($ServiceTypeDefinition.OrgSystemServiceTypeAttributes.Name)
}
foreach ($vp in $AllValuedParameters)
{
if ($vp.name -in $ServiceTypeAttributeNames)
{$System.ServiceTypeAttributes.$($vp.name) = $($vp.value)}
}
#update the system entry in the org profile
$OrgProfile = Update-ExistingObjectFromMultivaluedAttribute -ParentObject $OrgProfile -ChildObject $System -MultiValuedAttributeName Systems -IdentityAttributeName Identity
Export-OneShellOrgProfile -profile $OrgProfile -Path $OrgProfile.DirectoryPath
}
}
}
#end function Set-OrgSystemObject
Function Get-OneShellOrgProfileSystem
{
[cmdletbinding(DefaultParameterSetName = 'All')]
param
(
[parameter(ParameterSetName = 'Identity', ValueFromPipeline, ValueFromPipelineByPropertyName)]
[ValidateNotNullOrEmpty()]
[string[]]$Identity #System Identity or Name
,
[parameter(ParameterSetName = 'Identity')]
[parameter(ParameterSetName = 'All')]
[ValidateScript( {Test-DirectoryPath -path $_})]
[string[]]$Path = $Script:OneShellOrgProfilePath
,
[parameter(ParameterSetName = 'GetCurrent')]
[switch]$GetCurrent
,
[parameter(ParameterSetName = 'All')]
[parameter(ParameterSetName = 'Identity')]
[string[]]$ServiceType
,
[parameter(ParameterSetName = 'Identity')]
[string[]]$ProfileIdentity
)
Begin
{
$profiles = @(
switch ($PSCmdlet.ParameterSetName)
{
'GetCurrent'
{
Get-OneShellOrgProfile -GetCurrent -ErrorAction Stop -Path $Path
}
'Identity'
{
if ($PsBoundParameters.ContainsKey('ProfileIdentity'))
{
Get-OneShellOrgProfile -Identity $ProfileIdentity -ErrorAction Stop -Path $Path
}
else
{
Get-OneShellOrgProfile -Path $Path -ErrorAction Stop
}
}
'All'