private void cmdOK_Click(object sender, EventArgs e) { Element = new ReportingPolicyElementSMART(); Element.SkipAttribUpdateReport = new List <int>(); Element.NotifyOnAdd = chkNotifyOnAdd.Checked; Element.NotifyOnRemove = chkNotifyOnRemove.Checked; Element.NotifyOnUpdate = chkNotifyOnUpdate.Checked; Element.NotifyOnError = chkNotifyError.Checked; foreach (string s in txtSkipAttrib.Text.Split(',')) { if (s.Trim() == "") { continue; } int Cat; if (int.TryParse(s, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out Cat) == false) { MessageBox.Show(this, "Invalid Attribute.", Program.Title, MessageBoxButtons.OK, MessageBoxIcon.Exclamation); return; } Element.SkipAttribUpdateReport.Add(Cat); } this.DialogResult = DialogResult.OK; this.Close(); }
public frmSMARTConfig(string Element) { if (Element == null) { this.Element = null; } else { this.Element = JsonConvert.DeserializeObject <ReportingPolicyElementSMART>(Element); } InitializeComponent(); }
string Explain(string e) { string res = "Missing description: " + e; switch (lstType.SelectedIndex) { case 1: { ReportingPolicyElementDisk d = JsonConvert.DeserializeObject <ReportingPolicyElementDisk>(e); res = (d.DriveLetter == "$" ? "(SYSTEM DRIVE)" : d.DriveLetter + ":\\") + " - Size < " + d.MinimumSize.ToString() + " " + (d.Method == 1 ? "%" : "bytes"); break; } case 2: { ReportingPolicyElementEventLog d = JsonConvert.DeserializeObject <ReportingPolicyElementEventLog>(e); res = ""; if (d.Book == null) { d.Book = new List <string>(); } if (d.Sources == null) { d.Sources = new List <string>(); } if (d.CategoryNumbers == null) { d.CategoryNumbers = new List <int>(); } if (d.EventLogTypes == null) { d.EventLogTypes = new List <int>(); } if (d.Book.Count == 0) { res += "Book: (all)"; } else { res += "Book: "; foreach (string s in d.Book) { res += s + ", "; } if (res.EndsWith(", ") == true) { res = res.Substring(0, res.Length - 2); } } if (d.Sources.Count == 0) { res += " Sources: (any)"; } else { res += " Sources: "; foreach (string s in d.Sources) { res += s + ", "; } if (res.EndsWith(", ") == true) { res = res.Substring(0, res.Length - 2); } } if (d.EventLogTypes.Count == 0) { res += " Types: (any)"; } else { bool GotInfo = false; res += " Types: "; foreach (int s in d.EventLogTypes) { switch (s) { case 0: case 4: res += GotInfo == false ? " Information, " : ""; GotInfo = true; break; case 1: res += " Error, "; break; case 2: res += " Warning, "; break; case 8: res += " Success Audit, "; break; case 16: res += " Failure Audit, "; break; default: res += " ??? " + d.ToString() + ", "; break; } } if (res.EndsWith(", ") == true) { res = res.Substring(0, res.Length - 2); } } if (d.CategoryNumbers.Count == 0) { res += " Event IDs: (any)"; } else { res += " Event IDs: "; foreach (int s in d.CategoryNumbers) { res += s.ToString() + ", "; } if (res.EndsWith(", ") == true) { res = res.Substring(0, res.Length - 2); } } break; } case 3: { ReportingPolicyElementAddRemovePrograms d = JsonConvert.DeserializeObject <ReportingPolicyElementAddRemovePrograms>(e); if (d.Names == null) { d.Names = new List <string>(); } res = ""; switch (d.SearchNameIn) { case 0: res += "Programs with their exact IDs: "; break; case 1: res += "Programs containing: "; break; case 2: res += "Programs starting with: "; break; default: res += "????? " + d.SearchNameIn.ToString() + ": "; break; } if (d.Names.Count == 0) { res += "(any)"; } else { foreach (string s in d.Names) { res += "\"" + s + "\", "; } if (res.EndsWith(", ") == true) { res = res.Substring(0, res.Length - 2); } } res += " "; switch (d.SearchBits) { case 0: break; case 1: res += "(32 bit only)"; break; case 2: res += "(64 bit only)"; break; } res += " Notify on: "; if (d.NotifyOnAdd == true) { res += "Add, "; } if (d.NotifyOnRemove == true) { res += "Removal, "; } if (d.NotifyOnUpdate == true) { res += "Update, "; } if (res.EndsWith(", ") == true) { res = res.Substring(0, res.Length - 2); } break; } case 4: { ReportingPolicyElementStartup d = JsonConvert.DeserializeObject <ReportingPolicyElementStartup>(e); if (d.Names == null) { d.Names = new List <string>(); } res = ""; switch (d.SearchNameIn) { case 0: res += "Startup Item with their exact text: "; break; case 1: res += "Startup Item containing: "; break; case 2: res += "Startup Item starting with: "; break; default: res += "????? " + d.SearchNameIn.ToString() + ": "; break; } if (d.Names.Count == 0) { res += "(any)"; } else { foreach (string s in d.Names) { res += "\"" + s + "\", "; } if (res.EndsWith(", ") == true) { res = res.Substring(0, res.Length - 2); } } res += " "; if (string.IsNullOrWhiteSpace(d.SearchLocations) == false) { res += " Locations: " + d.SearchLocations; } res += " Notify on: "; if (d.NotifyOnAdd == true) { res += "Add, "; } if (d.NotifyOnRemove == true) { res += "Removal, "; } if (d.NotifyOnUpdate == true) { res += "Update, "; } if (res.EndsWith(", ") == true) { res = res.Substring(0, res.Length - 2); } break; } case 5: { ReportingPolicyElementSMART d = JsonConvert.DeserializeObject <ReportingPolicyElementSMART>(e); res = ""; res += " Notify on: "; if (d.NotifyOnAdd == true) { res += "Add, "; } if (d.NotifyOnRemove == true) { res += "Removal, "; } if (d.NotifyOnUpdate == true) { res += "Update"; if (d.SkipAttribUpdateReport != null) { if (d.SkipAttribUpdateReport.Count > 0) { res += " (Skip Attributes: "; foreach (int s in d.SkipAttribUpdateReport) { res += "0x" + s.ToString("X") + ", "; } if (res.EndsWith(", ") == true) { res = res.Substring(0, res.Length - 2); } res += "), "; } else { res += ", "; } } else { res += ", "; } } if (d.NotifyOnError == true) { res += "Error, "; } if (res.EndsWith(", ") == true) { res = res.Substring(0, res.Length - 2); } break; } case 6: { res = "Simple Task is completed"; break; } } return(res); }
void ReportingThread(object SmartDataListO) { try { using (SQLLib sql = SQLTest.ConnectSQL("Fox SDC Server for SMART Device Data")) { if (sql == null) { FoxEventLog.WriteEventLog("Cannot connect to SQL Server for SMART Device Reporting!", System.Diagnostics.EventLogEntryType.Error); return; } SmartDataLst SmartDataList = (SmartDataLst)SmartDataListO; ComputerData computerdata = Computers.GetComputerDetail(sql, SmartDataList.MachineID); if (computerdata == null) { FoxEventLog.WriteEventLog("Cannot get any computer data for SMART Device Reporting!", System.Diagnostics.EventLogEntryType.Error); return; } List <PolicyObject> Pol = Policies.GetPolicyForComputerInternal(sql, SmartDataList.MachineID); Dictionary <string, Int64> AlreadyReported = new Dictionary <string, long>(); foreach (PolicyObject PolO in Pol) { if (PolO.Type != PolicyIDs.ReportingPolicy) { continue; } ReportingPolicyElement RepElementRoot = JsonConvert.DeserializeObject <ReportingPolicyElement>(Policies.GetPolicy(sql, PolO.ID).Data); if (RepElementRoot.Type != ReportingPolicyType.SMART) { continue; } if (RepElementRoot.ReportToAdmin == null) { RepElementRoot.ReportToAdmin = false; } if (RepElementRoot.ReportToClient == null) { RepElementRoot.ReportToClient = false; } if (RepElementRoot.UrgentForAdmin == null) { RepElementRoot.UrgentForAdmin = false; } if (RepElementRoot.UrgentForClient == null) { RepElementRoot.UrgentForClient = false; } if (RepElementRoot.ReportToAdmin == false && RepElementRoot.ReportToClient == false && RepElementRoot.UrgentForAdmin == false && RepElementRoot.UrgentForClient == false) { continue; } foreach (string Element in RepElementRoot.ReportingElements) { ReportingPolicyElementSMART arprep = JsonConvert.DeserializeObject <ReportingPolicyElementSMART>(Element); if (arprep.NotifyOnAdd == false && arprep.NotifyOnRemove == false && arprep.NotifyOnUpdate == false && arprep.NotifyOnError == false) { continue; } if (arprep.NotifyOnAdd == true) { foreach (VulpesSMARTInfo ar in SmartDataList.Added) { ReportThings(sql, SmartDataList.MachineID, "Add", ar, ref AlreadyReported, RepElementRoot); } } if (arprep.NotifyOnUpdate == true) { foreach (VulpesSMARTInfo ar in SmartDataList.Updated) { foreach (VulpesSMARTInfo indbvsm in SmartDataList.InDB) { if (indbvsm.PNPDeviceID == ar.PNPDeviceID) { if (SMARTDescription.CompareFull(ar, indbvsm, arprep.SkipAttribUpdateReport) == false) { if (indbvsm.Attributes != null) { List <int> UpdatedAttribs = new List <int>(); if (ar.Attributes == null) { ar.Attributes = new Dictionary <int, VulpesSMARTAttribute>(); } foreach (KeyValuePair <int, VulpesSMARTAttribute> indb in indbvsm.Attributes) { if (ar.Attributes.ContainsKey(indb.Key) == true) { if (ar.Attributes[indb.Key].FailureImminent != indb.Value.FailureImminent || ar.Attributes[indb.Key].Flags != indb.Value.Flags || ar.Attributes[indb.Key].ID != indb.Value.ID || ar.Attributes[indb.Key].Threshold != indb.Value.Threshold || ar.Attributes[indb.Key].Value != indb.Value.Value || ar.Attributes[indb.Key].Vendordata != indb.Value.Vendordata || ar.Attributes[indb.Key].Worst != indb.Value.Worst) { UpdatedAttribs.Add(indb.Key); } } } ReportThings(sql, SmartDataList.MachineID, "Update", ar, ref AlreadyReported, RepElementRoot, UpdatedAttribs); } } } } } } if (arprep.NotifyOnRemove == true) { foreach (VulpesSMARTInfo ar in SmartDataList.Removed) { ReportThings(sql, SmartDataList.MachineID, "Remove", ar, ref AlreadyReported, RepElementRoot); } } if (arprep.NotifyOnError == true) { foreach (VulpesSMARTInfo ar in SmartDataList.Added) { if (SMARTDescription.IsInError(ar) == true) { ReportThings(sql, SmartDataList.MachineID, "Error", ar, ref AlreadyReported, RepElementRoot); } } foreach (VulpesSMARTInfo ar in SmartDataList.Updated) { if (SMARTDescription.IsInError(ar) == true) { foreach (VulpesSMARTInfo indbvsm in SmartDataList.InDB) { if (indbvsm.PNPDeviceID == ar.PNPDeviceID) { if (SMARTDescription.CompareFullCriticalOnly(indbvsm, ar) == false) { ReportThings(sql, SmartDataList.MachineID, "Error", ar, ref AlreadyReported, RepElementRoot); } break; } } } } } } } } } catch (Exception ee) { FoxEventLog.WriteEventLog("SEH in SMART Data Reporting " + ee.ToString(), System.Diagnostics.EventLogEntryType.Error); } }