Certificate/wireless plugins; major refactoring

Migrate much of BI to Services.
Added Wireless Profile Provider plugin feature.
Added Certificate Authority Provider plugin feature.
Modified Certificate Provider plugin feature.
Database migration v17, for Device Profiles.
Enrolment Client Updated to support CA Certificates, Wireless Profiles
and Hardware Info.
New Client Enrolment Protocol to support new features.
Plugin Manifest Generator added to main solution.
Improved AD search performance.
This commit is contained in:
Gary Sharp
2016-09-28 20:16:25 +10:00
parent 489a5df7cc
commit 27c21175d7
210 changed files with 9822 additions and 6675 deletions
+14 -17
View File
@@ -1,7 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Disco.Models.ClientServices.EnrolmentInformation;
namespace Disco.Models.ClientServices
{
@@ -9,22 +6,22 @@ namespace Disco.Models.ClientServices
{
public string SessionId { get; set; }
public string DeviceDomainName { get; set; }
public string DeviceComputerName { get; set; }
public string DeviceAssignedUserDomain { get; set; }
public string DeviceAssignedUserName { get; set; }
public string DeviceAssignedUserSID { get; set; }
public string DeviceAssignedUserUsername { get; set; }
public string DomainName { get; set; }
public string ComputerName { get; set; }
public bool DeviceAssignedUserIsLocalAdmin { get; set; }
public string AssignedUserDomain { get; set; }
public string AssignedUserUsername { get; set; }
public string AssignedUserSID { get; set; }
public string AssignedUserDescription { get; set; }
public string OfflineDomainJoin { get; set; }
public string DeviceCertificate { get; set; }
public List<string> DeviceCertificateRemoveExisting { get; set; }
public bool AssignedUserIsLocalAdmin { get; set; }
public string OfflineDomainJoinManifest { get; set; }
public CertificateStore Certificates { get; set; }
public WirelessProfileStore WirelessProfiles { get; set; }
// Actions
public bool AllowBootstrapperUninstall { get; set; }
public bool RequireReboot { get; set; }