public List <AddSoftware> getInstalledSW() { lSoftware = new List <AddSoftware>(); if (oScan.bInitialScan) { oScan = new RZScan(false, false); oScan.SWScanAsync().Wait(); } return(oScan.InstalledSoftware); }
static void Main(string[] args) { tStart = DateTime.Now; RZRestAPIv2.CustomerID = "swtesting"; RZRestAPIv2.DisableBroadcast = true; RZRestAPIv2.GetURL(RZRestAPIv2.CustomerID); #if !DEBUG RZScan oScan = new RZScan(false, false); oScan.SWScanAsync().Wait(); if (oScan.InstalledSoftware.Count >= 5) { Console.WriteLine("Please run RZ.Bot.exe on a clean Machine !!!"); Console.ReadLine(); return; } #endif bool bLoop = true; while (bLoop) { int iCount = ProcessBotQueue(); //Console.WriteLine(iCount.ToString() + " processed"); if (iCount == 0) { Console.WriteLine("no failed installations in the queue.... Waiting 5min..."); #if !DEBUG Thread.Sleep(300000); //sleep 5min #endif #if DEBUG Thread.Sleep(60000); //sleep 60s #endif } if (iCount > 0) { Thread.Sleep(15000); } if (iCount < 0) { bLoop = false; } } return; }
static int Main(string[] args) { bool bError = false; //Get Proxy from IE WebRequest.DefaultWebProxy = WebRequest.GetSystemWebProxy(); if (!string.IsNullOrEmpty(Properties.Settings.Default.Customerid)) { RZRestAPIv2.CustomerID = Properties.Settings.Default.Customerid; } RZRestAPIv2.DisableBroadcast = Properties.Settings.Default.DisableBroadcast; List <string> lArgs = args.ToList(); if (lArgs.Contains("-?") | lArgs.Contains("/?") | lArgs.Count < 1) { Console.WriteLine("RuckZuck CommandLine Tool (c) 2021 by Roger Zander"); Console.WriteLine("Install:"); Console.WriteLine("Install a Software from Shortname : RZGet.exe install \"<Shortname>\"[;\"<Shortname2>\"]"); Console.WriteLine("Install a Software from JSON File : RZGet.exe install \"<JSON full path>\"[;\"<JSON full path>\"]"); Console.WriteLine("Install a Sepcific Version : RZGet.exe install --name \"<ProductName>\" --vendor \"<Manufacturer>\" --version \"<ProductVersion>\""); Console.WriteLine(""); Console.WriteLine("Update:"); Console.WriteLine("Update all missing updates : RZGet.exe update --all [--retry]"); Console.WriteLine("Update all missing updates : RZGet.exe update --all --exclude \"<Shortname>\"[;\"<Shortname2>\"] [--retry]"); Console.WriteLine("Show all missing updates : RZGet.exe update --list --all"); Console.WriteLine("check if a Software requires an update : RZGet.exe update --list \"<Shortname>\""); Console.WriteLine("Update a Software from Shortname : RZGet.exe update \"<Shortname>\"[;\"<Shortname2>\"] [--retry]"); Console.WriteLine(""); Console.WriteLine("Show:"); Console.WriteLine("Show Metadata : RZGet.exe show \"<Shortname>\""); Console.WriteLine("Show Metadata for a specific Version : RZGet.exe show --name \"<ProductName>\" --vendor \"<Manufacturer>\" --version \"<ProductVersion>\""); Console.WriteLine(""); Console.WriteLine("Search:"); Console.WriteLine("Show full Catalog JSON: RZGet.exe search"); Console.WriteLine("Search for a Keyword: RZGet.exe search zip"); Console.WriteLine("Search SW in a Category: RZGet.exe search --categories compression"); Console.WriteLine("Search for installed SW: RZGet.exe search --isinstalled true"); Console.WriteLine("Search for a manufacturer: RZGet.exe search --manufacturer zander"); Console.WriteLine("Search for a shortname and return PowerShell Object: RZGet.exe search --shortname ruckzuck | convertfrom-json"); return(0); } if (lArgs[0].ToLower() == "install") { if (lArgs.Contains("--name", StringComparer.CurrentCultureIgnoreCase) || lArgs.Contains("--vendor", StringComparer.CurrentCultureIgnoreCase) || lArgs.Contains("--version", StringComparer.CurrentCultureIgnoreCase)) { try { RZUpdater oRZSW = new RZUpdater(); string ProductName = lArgs[lArgs.FindIndex(t => t.IndexOf("--name", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; string Manufacturer = lArgs[lArgs.FindIndex(t => t.IndexOf("--vendor", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; if (string.IsNullOrEmpty(Manufacturer)) { Manufacturer = lArgs[lArgs.FindIndex(t => t.IndexOf("--manufacturer", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; } string ProductVersion = lArgs[lArgs.FindIndex(t => t.IndexOf("--version", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; oRZSW.SoftwareUpdate = new SWUpdate(ProductName, ProductVersion, Manufacturer); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + ProductName + "' is NOT available in RuckZuck...!"); return(99); } if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { oRZSW.SoftwareUpdate.GetInstallType(); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { Console.WriteLine("PreRequisites not valid for '" + oRZSW.SoftwareUpdate.SW.ShortName + "'...!"); return(91); } } if (Install(oRZSW)) { return(0); } } catch (Exception ex) { Console.WriteLine("Error: " + ex.Message); return(1); } } if (lArgs.Contains("--retry")) { bRetry = true; } if (lArgs.Contains("--noretry")) { bRetry = false; } foreach (string sArg in args.Skip(1)) { if (!sArg.StartsWith("--")) { if (File.Exists(sArg) || File.Exists(Path.Combine(Environment.ExpandEnvironmentVariables("%TEMP%"), sArg)) || File.Exists(Path.Combine(Environment.ExpandEnvironmentVariables("%TEMP%"), sArg + ".json"))) { string sJFile = sArg; if (!File.Exists(sJFile)) { sJFile = Path.Combine(Environment.ExpandEnvironmentVariables("%TEMP%"), sArg); } if (!File.Exists(sJFile)) { sJFile = Path.Combine(Environment.ExpandEnvironmentVariables("%TEMP%"), sArg + ".json"); } RZUpdater oRZSW = new RZUpdater(sJFile); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + sArg + "' is NOT available in RuckZuck...!"); bError = true; continue; } if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { oRZSW.SoftwareUpdate.GetInstallType(); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { Console.WriteLine("PreRequisites not valid for '" + sArg + "'...!"); bError = false; continue; } } if (Install(oRZSW)) { continue; } } else { try { RZUpdater oRZSW = new RZUpdater(); oRZSW.SoftwareUpdate = new SWUpdate(sArg.Trim('"').Trim()); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + sArg + "' is NOT available in RuckZuck...!"); bError = true; continue; } if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { oRZSW.SoftwareUpdate.GetInstallType(); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { Console.WriteLine("PreRequisites not valid for '" + sArg + "'...!"); bError = false; continue; } } if (Install(oRZSW)) { continue; } } catch (Exception ex) { Console.WriteLine("Error: " + ex.Message); bError = true; } } } } if (bError) { return(1); } else { return(0); } } if (lArgs[0].ToLower() == "update") { if (lArgs.Contains("--retry")) { bRetry = true; } if (lArgs.Contains("--noretry")) { bRetry = false; } bool bUpdateAll = false; bool bList = false; bool bExclude = false; List <string> lExclude = new List <string>(); if (lArgs.Contains("--all", StringComparer.CurrentCultureIgnoreCase)) { bUpdateAll = true; } if (lArgs.Contains("--list", StringComparer.CurrentCultureIgnoreCase)) { bList = true; } if (lArgs.Contains("--exclude", StringComparer.CurrentCultureIgnoreCase)) { bExclude = true; } RZScan oScan = new RZScan(false); oScan.GetSWRepository().Wait(10000); oScan.SWScanAsync().Wait(10000); oScan._CheckUpdates(null); List <string> lUpdate = new List <string>(); if (!bUpdateAll) { foreach (string sArg in args.Skip(1)) { if (oScan.NewSoftwareVersions.Count(t => t.ShortName.ToLower() == sArg.ToLower()) > 0) { lUpdate.Add(sArg); } } } else { if (!bExclude) { lUpdate = oScan.NewSoftwareVersions.Select(t => t.ShortName).ToList(); } else { int iex = lArgs.IndexOf("--exclude", 0); string scl = lArgs[iex + 1]; lExclude = scl.ToLower().Split(';').ToList(); lUpdate = oScan.NewSoftwareVersions.Where(r => !lExclude.Contains(r.ShortName.ToLower())).Select(t => t.ShortName.ToLower()).ToList(); } } foreach (string sArg in lUpdate) { if (bList) { Console.WriteLine(sArg); continue; } if (File.Exists(sArg)) { RZUpdater oRZSW = new RZUpdater(sArg); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + sArg + "' is NOT available in RuckZuck...!"); bError = true; continue; } if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { oRZSW.SoftwareUpdate.GetInstallType(); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { Console.WriteLine("PreRequisites not valid for '" + sArg + "'...!"); bError = false; continue; } } if (Install(oRZSW)) { continue; } } else { try { RZUpdater oRZSW = new RZUpdater(); oRZSW.SoftwareUpdate = new SWUpdate(sArg.Trim('"').Trim()); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + sArg + "' is NOT available in RuckZuck...!"); bError = true; continue; } if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { oRZSW.SoftwareUpdate.GetInstallType(); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { Console.WriteLine("PreRequisites not valid for '" + sArg + "'...!"); bError = false; continue; } } if (Install(oRZSW)) { continue; } } catch (Exception ex) { Console.WriteLine("Error: " + ex.Message); bError = true; } } } if (bError) { return(1); } else { return(0); } } //if (lArgs[0].ToLower() == "hash") //{ // Console.WriteLine("hash"); // Console.WriteLine(string.Join(";", args.Skip(1))); // return 0; //} if (lArgs[0].ToLower() == "search") { if (lArgs.Count > 1) { if (lArgs[1].StartsWith("--")) { string sProp = lArgs[1].ToLower().TrimStart('-'); string sSearch = lArgs[2].ToLower(); if (sProp == "shortname") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.ShortName.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "manufacturer") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.Manufacturer.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "productname" || sProp == "name") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.ProductName.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "description") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.Description.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "categories" || sProp == "category") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => string.Join(";", t.Categories.ToArray()).ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "producturl" || sProp == "url") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.ProductURL.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "productversion" || sProp == "version") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.ProductVersion.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "isinstalled") { oScan = new RZScan(false, false); oScan.SWScanAsync().Wait(); oScan.GetSWRepository().Wait(); foreach (var osw in oScan.InstalledSoftware) { var oItem = oScan.SoftwareRepository.FirstOrDefault(t => t.ProductName == osw.ProductName && t.Manufacturer == osw.Manufacturer && t.ProductVersion == osw.ProductVersion); if (oItem != null) { oItem.isInstalled = true; } } Console.WriteLine(JsonConvert.SerializeObject(oScan.SoftwareRepository.Where(t => t.isInstalled.ToString().ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } } else { string sSearch = lArgs[1].ToLower(); Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.ProductName.ToLower().Contains(sSearch) || t.Manufacturer.ToLower().Contains(sSearch) || t.ShortName.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } } else { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog(), Formatting.Indented).ToString()); } return(0); } if (lArgs[0].ToLower() == "show") { if (lArgs.Contains("--name", StringComparer.CurrentCultureIgnoreCase) || lArgs.Contains("--vendor", StringComparer.CurrentCultureIgnoreCase) || lArgs.Contains("--version", StringComparer.CurrentCultureIgnoreCase)) { try { RZUpdater oRZSW = new RZUpdater(); string ProductName = lArgs[lArgs.FindIndex(t => t.IndexOf("--name", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; string Manufacturer = lArgs[lArgs.FindIndex(t => t.IndexOf("--vendor", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; if (string.IsNullOrEmpty(Manufacturer)) { Manufacturer = lArgs[lArgs.FindIndex(t => t.IndexOf("--manufacturer", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; } string ProductVersion = lArgs[lArgs.FindIndex(t => t.IndexOf("--version", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; oRZSW.SoftwareUpdate = new SWUpdate(ProductName, ProductVersion, Manufacturer); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + ProductName + "' is NOT available in RuckZuck...!"); return(99); } Console.WriteLine(JsonConvert.SerializeObject(oRZSW.SoftwareUpdate.SW, Formatting.Indented).ToString()); return(0); } catch (Exception ex) { Console.WriteLine("Error: " + ex.Message); return(1); } } foreach (string sArg in args.Skip(1)) { if (File.Exists(sArg)) { RZUpdater oRZSW = new RZUpdater(sArg); Console.WriteLine(JsonConvert.SerializeObject(oRZSW.SoftwareUpdate.SW, Formatting.Indented).ToString()); } else { try { RZUpdater oRZSW = new RZUpdater(); oRZSW.SoftwareUpdate = new SWUpdate(sArg.Trim('"').Trim()); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + sArg + "' is NOT available in RuckZuck...!"); bError = true; continue; } Console.WriteLine(JsonConvert.SerializeObject(oRZSW.SoftwareUpdate.SW, Formatting.Indented).ToString()); return(0); } catch (Exception ex) { Console.WriteLine("Error: " + ex.Message); return(1); } } } return(0); } return(0); }
static int Main(string[] args) { bool bError = false; //Get Proxy from IE WebRequest.DefaultWebProxy = WebRequest.GetSystemWebProxy(); if (!string.IsNullOrEmpty(Properties.Settings.Default.Customerid)) { RZRestAPIv2.CustomerID = Properties.Settings.Default.Customerid; } RZRestAPIv2.DisableBroadcast = Properties.Settings.Default.DisableBroadcast; List <string> lArgs = args.ToList(); if (lArgs.Contains("-?") | lArgs.Contains("/?") | lArgs.Count < 1) { Console.WriteLine("RuckZuck CommandLine Tool (c) 2020 by Roger Zander"); Console.WriteLine("Install:"); Console.WriteLine("Install a Software from Shortname : RZGet.exe install \"<Shortname>\"[;\"<Shortname2>\"]"); Console.WriteLine("Install a Software from JSON File : RZGet.exe install \"<JSON full path>\"[;\"<JSON full path>\"]"); Console.WriteLine("Install a Sepcific Version : RZGet.exe install --name \"<ProductName>\" --vendor \"<Manufacturer>\" --version \"<ProductVersion>\""); Console.WriteLine(""); Console.WriteLine("Update:"); Console.WriteLine("Update all missing updates : RZGet.exe update --all"); Console.WriteLine("Show all missing updates : RZGet.exe update --list --all"); Console.WriteLine("check if a Software requires an update : RZGet.exe update --list \"<Shortname>\""); Console.WriteLine("Update a Software from Shortname : RZGet.exe update \"<Shortname>\"[;\"<Shortname2>\"]"); Console.WriteLine(""); Console.WriteLine("Show:"); Console.WriteLine("Show Metadata : RZGet.exe show \"<Shortname>\""); Console.WriteLine("Show Metadata for a specific Version : RZGet.exe show --name \"<ProductName>\" --vendor \"<Manufacturer>\" --version \"<ProductVersion>\""); Console.WriteLine(""); Console.WriteLine("Search:"); Console.WriteLine("Show full Catalog JSON: RZGet.exe search"); Console.WriteLine("Search for a Keyword: RZGet.exe search zip"); Console.WriteLine("Search SW in a Category: RZGet.exe search --categories compression"); Console.WriteLine("Search for installed SW: RZGet.exe search --isinstalled true"); Console.WriteLine("Search for a manufacturer: RZGet.exe search --manufacturer zander"); Console.WriteLine("Search for a shortname and return PowerShell Object: RZGet.exe search --shortname ruckzuck | convertfrom-json"); return(0); } if (lArgs[0].ToLower() == "install") { if (lArgs.Contains("--name", StringComparer.CurrentCultureIgnoreCase) || lArgs.Contains("--vendor", StringComparer.CurrentCultureIgnoreCase) || lArgs.Contains("--version", StringComparer.CurrentCultureIgnoreCase)) { try { RZUpdater oRZSW = new RZUpdater(); string ProductName = lArgs[lArgs.FindIndex(t => t.IndexOf("--name", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; string Manufacturer = lArgs[lArgs.FindIndex(t => t.IndexOf("--vendor", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; if (string.IsNullOrEmpty(Manufacturer)) { Manufacturer = lArgs[lArgs.FindIndex(t => t.IndexOf("--manufacturer", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; } string ProductVersion = lArgs[lArgs.FindIndex(t => t.IndexOf("--version", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; oRZSW.SoftwareUpdate = new SWUpdate(ProductName, ProductVersion, Manufacturer); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + ProductName + "' is NOT available in RuckZuck...!"); return(99); } if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { oRZSW.SoftwareUpdate.GetInstallType(); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { Console.WriteLine("PreRequisites not valid for '" + oRZSW.SoftwareUpdate.SW.ShortName + "'...!"); return(91); } } if (Install(oRZSW)) { return(0); } } catch (Exception ex) { Console.WriteLine("Error: " + ex.Message); return(1); } } foreach (string sArg in args.Skip(1)) { if (File.Exists(sArg)) { RZUpdater oRZSW = new RZUpdater(sArg); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + sArg + "' is NOT available in RuckZuck...!"); bError = true; continue; } if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { oRZSW.SoftwareUpdate.GetInstallType(); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { Console.WriteLine("PreRequisites not valid for '" + sArg + "'...!"); bError = false; continue; } } if (Install(oRZSW)) { continue; } } else { try { RZUpdater oRZSW = new RZUpdater(); oRZSW.SoftwareUpdate = new SWUpdate(sArg.Trim('"').Trim()); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + sArg + "' is NOT available in RuckZuck...!"); bError = true; continue; } if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { oRZSW.SoftwareUpdate.GetInstallType(); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { Console.WriteLine("PreRequisites not valid for '" + sArg + "'...!"); bError = false; continue; } } if (Install(oRZSW)) { continue; } } catch (Exception ex) { Console.WriteLine("Error: " + ex.Message); bError = true; } } } if (bError) { return(1); } else { return(0); } } if (lArgs[0].ToLower() == "update") { bool bUpdateAll = false; bool bList = false; if (lArgs.Contains("--all", StringComparer.CurrentCultureIgnoreCase)) { bUpdateAll = true; } if (lArgs.Contains("--list", StringComparer.CurrentCultureIgnoreCase)) { bList = true; } RZScan oScan = new RZScan(false); oScan.GetSWRepository().Wait(10000); oScan.SWScanAsync().Wait(10000); oScan._CheckUpdates(null); List <string> lUpdate = new List <string>(); if (!bUpdateAll) { foreach (string sArg in args.Skip(1)) { if (oScan.NewSoftwareVersions.Count(t => t.ShortName.ToLower() == sArg.ToLower()) > 0) { lUpdate.Add(sArg); } } } else { lUpdate = oScan.NewSoftwareVersions.Select(t => t.ShortName).ToList(); } foreach (string sArg in lUpdate) { if (bList) { Console.WriteLine(sArg); continue; } if (File.Exists(sArg)) { RZUpdater oRZSW = new RZUpdater(sArg); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + sArg + "' is NOT available in RuckZuck...!"); bError = true; continue; } if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { oRZSW.SoftwareUpdate.GetInstallType(); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { Console.WriteLine("PreRequisites not valid for '" + sArg + "'...!"); bError = false; continue; } } if (Install(oRZSW)) { continue; } } else { try { RZUpdater oRZSW = new RZUpdater(); oRZSW.SoftwareUpdate = new SWUpdate(sArg.Trim('"').Trim()); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + sArg + "' is NOT available in RuckZuck...!"); bError = true; continue; } if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { oRZSW.SoftwareUpdate.GetInstallType(); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) { Console.WriteLine("PreRequisites not valid for '" + sArg + "'...!"); bError = false; continue; } } if (Install(oRZSW)) { continue; } } catch (Exception ex) { Console.WriteLine("Error: " + ex.Message); bError = true; } } } if (bError) { return(1); } else { return(0); } } //if (lArgs[0].ToLower() == "hash") //{ // Console.WriteLine("hash"); // Console.WriteLine(string.Join(";", args.Skip(1))); // return 0; //} if (lArgs[0].ToLower() == "search") { if (lArgs[1] != null) { if (lArgs[1].StartsWith("--")) { string sProp = lArgs[1].ToLower().TrimStart('-'); string sSearch = lArgs[2].ToLower(); if (sProp == "shortname") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.ShortName.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "manufacturer") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.Manufacturer.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "productname" || sProp == "name") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.ProductName.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "description") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.Description.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "categories" || sProp == "category") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => string.Join(";", t.Categories.ToArray()).ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "producturl" || sProp == "url") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.ProductURL.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "productversion" || sProp == "version") { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.ProductVersion.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } if (sProp == "isinstalled") { oScan = new RZScan(false, false); oScan.SWScanAsync().Wait(); oScan.GetSWRepository().Wait(); foreach (var osw in oScan.InstalledSoftware) { var oItem = oScan.SoftwareRepository.FirstOrDefault(t => t.ProductName == osw.ProductName && t.Manufacturer == osw.Manufacturer && t.ProductVersion == osw.ProductVersion); if (oItem != null) { oItem.isInstalled = true; } } Console.WriteLine(JsonConvert.SerializeObject(oScan.SoftwareRepository.Where(t => t.isInstalled.ToString().ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } } else { string sSearch = lArgs[1].ToLower(); Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog().Where(t => t.ProductName.ToLower().Contains(sSearch) || t.Manufacturer.ToLower().Contains(sSearch) || t.ShortName.ToLower().Contains(sSearch)), Formatting.Indented).ToString()); } } else { Console.WriteLine(JsonConvert.SerializeObject(RZRestAPIv2.GetCatalog(), Formatting.Indented).ToString()); } return(0); } if (lArgs[0].ToLower() == "show") { if (lArgs.Contains("--name", StringComparer.CurrentCultureIgnoreCase) || lArgs.Contains("--vendor", StringComparer.CurrentCultureIgnoreCase) || lArgs.Contains("--version", StringComparer.CurrentCultureIgnoreCase)) { try { RZUpdater oRZSW = new RZUpdater(); string ProductName = lArgs[lArgs.FindIndex(t => t.IndexOf("--name", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; string Manufacturer = lArgs[lArgs.FindIndex(t => t.IndexOf("--vendor", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; if (string.IsNullOrEmpty(Manufacturer)) { Manufacturer = lArgs[lArgs.FindIndex(t => t.IndexOf("--manufacturer", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; } string ProductVersion = lArgs[lArgs.FindIndex(t => t.IndexOf("--version", StringComparison.CurrentCultureIgnoreCase) >= 0) + 1]; oRZSW.SoftwareUpdate = new SWUpdate(ProductName, ProductVersion, Manufacturer); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + ProductName + "' is NOT available in RuckZuck...!"); return(99); } Console.WriteLine(JsonConvert.SerializeObject(oRZSW.SoftwareUpdate.SW, Formatting.Indented).ToString()); return(0); } catch (Exception ex) { Console.WriteLine("Error: " + ex.Message); return(1); } } foreach (string sArg in args.Skip(1)) { if (File.Exists(sArg)) { RZUpdater oRZSW = new RZUpdater(sArg); Console.WriteLine(JsonConvert.SerializeObject(oRZSW.SoftwareUpdate.SW, Formatting.Indented).ToString()); } else { try { RZUpdater oRZSW = new RZUpdater(); oRZSW.SoftwareUpdate = new SWUpdate(sArg.Trim('"').Trim()); if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) { Console.WriteLine("'" + sArg + "' is NOT available in RuckZuck...!"); bError = true; continue; } Console.WriteLine(JsonConvert.SerializeObject(oRZSW.SoftwareUpdate.SW, Formatting.Indented).ToString()); return(0); } catch (Exception ex) { Console.WriteLine("Error: " + ex.Message); return(1); } } } return(0); } //if (lArgs[0].ToLower() == "source") //{ // Console.WriteLine("source"); // Console.WriteLine(string.Join(";", args.Skip(1))); // return 0; //} //if (lArgs[0].ToLower() == "validate") //{ // Console.WriteLine("validate"); // Console.WriteLine(string.Join(";", args.Skip(1))); // return 0; //} //if (lArgs.Count == 1) //{ // if (File.Exists(lArgs[0])) // { // RZUpdater oRZSW = new RZUpdater(lArgs[0]); // Console.WriteLine(oRZSW.SoftwareUpdate.SW.ProductName + " " + oRZSW.SoftwareUpdate.SW.ProductVersion + " :"); // Console.Write("Downloading..."); // if (oRZSW.SoftwareUpdate.Download().Result) // { // Console.WriteLine("... done."); // Console.Write("Installing..."); // if (oRZSW.SoftwareUpdate.Install(false,true).Result) // { // Console.WriteLine("... done."); // } // else // { // Console.WriteLine("... Error. The installation failed."); // } // } // } // else // { // if (lArgs[0].ToLower() == "/update" | lArgs[0].ToLower() == "-update") // { // oUpdate = new RZUpdater(); // oScan = new RZScan(true, true); // Console.Write("Detecting updates..."); // oScan.OnUpdScanCompleted += OScan_OnUpdScanCompleted; // while (bRunning) // { // System.Threading.Thread.Sleep(100); // } // } // else // { // foreach (string sArg in lArgs[0].Split(';')) // { // try // { // RZUpdater oRZSW = new RZUpdater(); // oRZSW.SoftwareUpdate = new SWUpdate(sArg.Trim('"').Trim()); // if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.ProductName)) // { // Console.WriteLine("'" + sArg + "' is NOT available in RuckZuck...!"); // bError = true; // continue; // } // Console.WriteLine("PS:" + oRZSW.SoftwareUpdate.SW.PSInstall); // if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) // { // oRZSW.SoftwareUpdate.GetInstallType(); // if (string.IsNullOrEmpty(oRZSW.SoftwareUpdate.SW.PSInstall)) // { // Console.WriteLine("PreRequisites not valid for '" + sArg + "'...!"); // bError = false; // continue; // } // } // Console.WriteLine(oRZSW.SoftwareUpdate.SW.Manufacturer + " " + oRZSW.SoftwareUpdate.SW.ProductName + " " + oRZSW.SoftwareUpdate.SW.ProductVersion); // Console.Write("Downloading..."); // foreach (string sPreReq in oRZSW.SoftwareUpdate.SW.PreRequisites) // { // if (!string.IsNullOrEmpty(sPreReq)) // { // RZUpdater oRZSWPreReq = new RZUpdater(); // oRZSWPreReq.SoftwareUpdate = new SWUpdate(sPreReq); // Console.WriteLine(); // Console.Write("\tDownloading dependencies (" + oRZSWPreReq.SoftwareUpdate.SW.ShortName + ")..."); // if (oRZSWPreReq.SoftwareUpdate.Download().Result) // { // Console.WriteLine("... done."); // Console.Write("\tInstalling dependencies (" + oRZSWPreReq.SoftwareUpdate.SW.ShortName + ")..."); // if (oRZSWPreReq.SoftwareUpdate.Install(false, true).Result) // { // Console.WriteLine("... done."); // } // else // { // Console.WriteLine("... Error. The installation failed."); // bError = true; // } // } // } // } // if (oRZSW.SoftwareUpdate.Download().Result) // { // Console.WriteLine("... done."); // Console.Write("Installing..."); // if (oRZSW.SoftwareUpdate.Install(false, true).Result) // { // Console.WriteLine("... done."); // } // else // { // Console.WriteLine("... Error. The installation failed."); // bError = true; // } // } // } // catch (Exception ex) // { // Console.WriteLine("Error: " + ex.Message); // bError = true; // } // } // } // } //} //if (lArgs.Count == 3) //{ // RZUpdater oRZUpdate = new RZUpdater(); // oRZUpdate.SoftwareUpdate = new SWUpdate(lArgs[0], lArgs[1], lArgs[2]); // if (oRZUpdate.SoftwareUpdate != null) // { // Console.WriteLine("New Version: " + oRZUpdate.SoftwareUpdate.SW.ProductVersion); // Console.Write("Downloading..."); // if (oRZUpdate.SoftwareUpdate.Download().Result) // { // Console.WriteLine("... done."); // Console.Write("Installing..."); // if (oRZUpdate.SoftwareUpdate.Install(false, true).Result) // { // Console.WriteLine("... done."); // return 0; // } // else // { // Console.WriteLine("... Error. The update installation failed."); // return 1; // } // } // return 99; // } // else // { // Console.WriteLine("No Update found..."); // return 0; // } //} //System.Threading.Thread.Sleep(500); //if(bError) // return 2; return(0); }
/// <summary> /// Check if RuckZuck Token is still valid or request a new token if last refresh was mor than an hour /// </summary> /// <param name="request"></param> //private void _reAuthenticate(Request request) //{ // //Check if there is a token.. // //Guid gToken; // //if (!Guid.TryParse(_AuthenticationToken, out gToken)) // //{ // // dLastTokenRefresh = new DateTime(); // //} // //Re-Authenticate after 30min // if ((DateTime.Now - dLastTokenRefresh).TotalMinutes >= 30) // { // if (string.IsNullOrEmpty(Properties.Settings.Default.Location)) // { // //Properties.Settings.Default.Location = WebServiceURL; // //Properties.Settings.Default.Save(); // } // //RZRestAPI.sURL = Properties.Settings.Default.Location; // if (!string.IsNullOrEmpty(Properties.Settings.Default.Username)) // { // //_AuthenticationToken = RZRestAPI.GetAuthToken(Properties.Settings.Default.Username, ToInsecureString(DecryptString(Properties.Settings.Default.Password))); // //dLastTokenRefresh = DateTime.Now; // request.Debug("RZ Account: " + Properties.Settings.Default.Username); // } // else // { // //_AuthenticationToken = RZRestAPI.GetAuthToken("FreeRZ", GetTimeToken()); // dLastTokenRefresh = DateTime.Now; // request.Debug("RZ Account: FreeRZ"); // } // //if (!Guid.TryParse(_AuthenticationToken, out gToken)) // //{ // // dLastTokenRefresh = new DateTime(); // // request.Warning(_AuthenticationToken); // // _AuthenticationToken = ""; // // return; // //} // request.Debug("RZ Authentication Token:" + _AuthenticationToken); // } //} private void _findPackage(string name, string requiredVersion, string minimumVersion, string maximumVersion, int id, Request request) { //_reAuthenticate(request); //Check if AuthToken is still valid try { bool exactSearch = true; if (request.OptionKeys.Contains("Contains")) { name = request.GetOptionValue("Contains"); request.Message("exact search disabled."); exactSearch = false; } //Search all if no name is specified if (string.IsNullOrEmpty(name)) { exactSearch = false; } bool bUpdate = false; if (request.OptionKeys.Contains("Updates")) { request.Message("check updates for installed Software."); bUpdate = true; } List <GetSoftware> lResult = new List <GetSoftware>(); //Get all installed SW if (bUpdate) { oScan.GetSWRepository().Wait(6000); oScan.bCheckUpdates = false; oScan.SWScanAsync().Wait(); oScan.CheckUpdatesAsync(null).Wait(); lSoftware = oScan.InstalledSoftware; List <AddSoftware> RequiredUpdates = oScan.NewSoftwareVersions; // RZApi.CheckForUpdate(lSoftware.ToArray()).ToList().Where(t => t.Architecture != "new").ToList(); foreach (var SW in RequiredUpdates) { try { if (string.IsNullOrEmpty(name)) { lResult.Add(new GetSoftware() { ProductName = SW.ProductName, ProductVersion = SW.ProductVersion, Manufacturer = SW.Manufacturer, ShortName = SW.ShortName, Description = SW.Description, ProductURL = SW.ProductURL }); } else { if ((SW.ProductName.ToLowerInvariant() == name.ToLowerInvariant() | SW.ShortName.ToLowerInvariant() == name.ToLowerInvariant()) && exactSearch) { lResult.Add(new GetSoftware() { ProductName = SW.ProductName, ProductVersion = SW.ProductVersion, Manufacturer = SW.Manufacturer, ShortName = SW.ShortName, Description = SW.Description, ProductURL = SW.ProductURL }); } if ((SW.ProductName.ToLowerInvariant().Contains(name.ToLowerInvariant()) | SW.ShortName.ToLowerInvariant().Contains(name.ToLowerInvariant())) && !exactSearch) { lResult.Add(new GetSoftware() { ProductName = SW.ProductName, ProductVersion = SW.ProductVersion, Manufacturer = SW.Manufacturer, ShortName = SW.ShortName, Description = SW.Description, ProductURL = SW.ProductURL }); } } } catch { } } if (lResult.Count == 0) { request.Warning("No updates found..."); } } else { if (string.IsNullOrEmpty(requiredVersion)) { //Find by ShortName if (exactSearch) { if (!string.IsNullOrEmpty(name)) { lResult = RZRestAPIv2.GetCatalog().Where(t => t.ShortName.ToLower() == name.ToLower()).OrderBy(t => t.ShortName).ToList(); } if (lResult.Count == 0) { //Find any lResult = RZRestAPIv2.GetCatalog().Where(t => t.ProductName.ToLower() == name.ToLower()).OrderBy(t => t.ProductName).ToList(); } } else { if (!string.IsNullOrEmpty(name)) { lResult = RZRestAPIv2.GetCatalog().Where(t => t.ShortName.ToLower().Contains(name.ToLower())).OrderBy(t => t.ShortName).ToList(); } if (lResult.Count == 0) { //Find any lResult = RZRestAPIv2.GetCatalog().Where(t => t.ProductName.ToLower().Contains(name.ToLower())).OrderBy(t => t.ShortName).ToList(); } if (lResult.Count == 0) { //Find any lResult = RZRestAPIv2.GetCatalog().Where(t => t.Manufacturer.ToLower().Contains(name.ToLower())).OrderBy(t => t.ShortName).ToList(); } } } else { //Find by Shortname if (exactSearch) { lResult = RZRestAPIv2.GetCatalog().Where(t => t.ShortName.ToLower() == name.ToLower() && t.ProductVersion.ToLower() == requiredVersion.ToLower()).OrderBy(t => t.ShortName).ToList(); } else { //Find any lResult = RZRestAPIv2.GetCatalog().Where(t => t.ShortName.ToLower().Contains(name.ToLower()) && t.ProductVersion.ToLower() == requiredVersion.ToLower()).OrderBy(t => t.ShortName).ToList(); if (lResult.Count == 0) { lResult = RZRestAPIv2.GetCatalog().Where(t => t.ProductName.ToLower().Contains(name.ToLower()) && t.ProductVersion.ToLower() == requiredVersion.ToLower()).OrderBy(t => t.ShortName).ToList(); } if (lResult.Count == 0) { lResult = RZRestAPIv2.GetCatalog().Where(t => t.Manufacturer.ToLower().Contains(name.ToLower()) && t.ProductVersion.ToLower() == requiredVersion.ToLower()).OrderBy(t => t.ShortName).ToList(); } } } } if (minimumVersion != null) { try { lResult = lResult.Where(p => Version.Parse(p.ProductVersion) >= Version.Parse(minimumVersion)).ToList(); } catch { lResult = lResult.Where(p => p.ProductVersion == minimumVersion).ToList(); } } if (maximumVersion != null) { try { lResult = lResult.Where(p => Version.Parse(p.ProductVersion) <= Version.Parse(maximumVersion)).ToList(); } catch { lResult = lResult.Where(p => p.ProductVersion == maximumVersion).ToList(); } } foreach (var SW in lResult.OrderBy(t => t.ShortName)) { request.YieldSoftwareIdentity(SW.ProductName + ";" + SW.ProductVersion + ";" + SW.Manufacturer, SW.ProductName, SW.ProductVersion, "", SW.Description, RZRestAPIv2.sURL, name, SW.SWId.ToString(), SW.ShortName); //Trust the original RucKZuck source request.AddMetadata("FromTrustedSource", "True"); //if (string.Equals(Properties.Settings.Default.Location, RZRestAPIv2.sURL , StringComparison.InvariantCultureIgnoreCase)) //{ // request.AddMetadata("FromTrustedSource", "True"); //} } } catch (Exception ex) { request.Debug("E334:" + ex.Message); } }