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
+13 -16
View File
@@ -1,7 +1,5 @@
using System;
using Disco.Models.ClientServices.EnrolmentInformation;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Disco.Models.ClientServices
{
@@ -12,21 +10,20 @@ namespace Disco.Models.ClientServices
get { return "Enrol"; }
}
public string DeviceSerialNumber { get; set; }
public string DeviceUUID { get; set; }
public string SerialNumber { get; set; }
public string DeviceDNSDomainName { get; set; }
public string DeviceComputerName { get; set; }
public bool DeviceIsPartOfDomain { get; set; }
public string DeviceManufacturer { get; set; }
public string DeviceModel { get; set; }
public string DeviceModelType { get; set; }
public string DNSDomainName { get; set; }
public string ComputerName { get; set; }
public bool IsPartOfDomain { get; set; }
public string DeviceLanMacAddress { get; set; }
public string DeviceWlanMacAddress { get; set; }
public string RunningUserName { get; set; }
public string RunningUserDomain { get; set; }
public bool RunningInteractively { get; internal set; }
public List<string> DeviceCertificates { get; set; }
public DeviceHardware Hardware { get; set; }
public List<Certificate> Certificates { get; set; }
public List<WirelessProfile> WirelessProfiles { get; set; }
}
}