/SABSyncGUI/SABSyncGUI/Settings.cs

http://sabscripts.googlecode.com/ · C# · 152 lines · 129 code · 23 blank · 0 comment · 3 complexity · 390e3ccd293fbeea1563349a91a7a033 MD5 · raw file

  1. using System;
  2. using System.Configuration;
  3. using System.Reflection;
  4. using System.Windows.Forms;
  5. namespace SABSyncGUI
  6. {
  7. internal static class Settings
  8. {
  9. private static readonly Configuration Config = ConfigurationManager.OpenExeConfiguration(@"SABSync.exe");
  10. internal static string TvRootPath
  11. {
  12. get { return GetConfigValue("tvRoot", "", true); }
  13. set { UpdateValue("tvRoot", value); }
  14. }
  15. internal static string TvTemplate
  16. {
  17. get { return GetConfigValue("tvTemplate", "", true); }
  18. set { UpdateValue("tvTemplate", value); }
  19. }
  20. internal static string TvDailyTemplate
  21. {
  22. get { return GetConfigValue("tvDailyTemplate", "", true); }
  23. set { UpdateValue("tvDailyTemplate", value); }
  24. }
  25. internal static string VideoExt
  26. {
  27. get { return GetConfigValue("videoExt", "", true); }
  28. set { UpdateValue("videoExt", value); }
  29. }
  30. internal static string IgnoreSeasons
  31. {
  32. get { return GetConfigValue("ignoreSeasons", "", true).Replace(";", Environment.NewLine); }
  33. set { UpdateValue("ignoreSeasons", value.Replace(Environment.NewLine, ";")); }
  34. }
  35. internal static string NzbDir
  36. {
  37. get { return GetConfigValue("nzbDir", "", true); }
  38. set { UpdateValue("nzbDir", value); }
  39. }
  40. internal static string SabnzbdInfo
  41. {
  42. get { return GetConfigValue("sabnzbdInfo", "", true); }
  43. set { UpdateValue("sabnzbdInfo", value); }
  44. }
  45. internal static string Username
  46. {
  47. get { return GetConfigValue("username", "", true); }
  48. set { UpdateValue("username", value); }
  49. }
  50. internal static string Password
  51. {
  52. get { return GetConfigValue("password", "", true); }
  53. set { UpdateValue("password", value); }
  54. }
  55. internal static string ApiKey
  56. {
  57. get { return GetConfigValue("apiKey", "", true); }
  58. set { UpdateValue("apiKey", value); }
  59. }
  60. internal static string Priority
  61. {
  62. get { return GetConfigValue("priority", "", true); }
  63. set { UpdateValue("priority", value); }
  64. }
  65. internal static string RssConfig
  66. {
  67. get { return GetConfigValue("rss", "", true); }
  68. set { UpdateValue("rss", value); }
  69. }
  70. internal static string AliasConfig
  71. {
  72. get { return GetConfigValue("alias", "", true); }
  73. set { UpdateValue("alias", value); }
  74. }
  75. internal static string QualityConfig
  76. {
  77. get { return GetConfigValue("quality", "", true); }
  78. set { UpdateValue("quality", value); }
  79. }
  80. internal static string DownloadQuality
  81. {
  82. get { return GetConfigValue("downloadQuality", "", true); }
  83. set { UpdateValue("downloadQuality", value); }
  84. }
  85. internal static string SabReplaceChars
  86. {
  87. get { return GetConfigValue("SabReplaceChars", "", true); }
  88. set { UpdateValue("SabReplaceChars", value); }
  89. }
  90. internal static string VerboseLogging
  91. {
  92. get { return GetConfigValue("verboseLogging", "", true); }
  93. set { UpdateValue("verboseLogging", value); }
  94. }
  95. internal static string DownloadPropers
  96. {
  97. get { return GetConfigValue("downloadPropers", "", true); }
  98. set { UpdateValue("downloadPropers", value); }
  99. }
  100. internal static string DeleteLogs
  101. {
  102. get { return GetConfigValue("deleteLogs", "", true); }
  103. set { UpdateValue("deleteLogs", value); }
  104. }
  105. private static void UpdateValue(string key, object value)
  106. {
  107. Config.AppSettings.Settings.Remove(key);
  108. Config.AppSettings.Settings.Add(key, value.ToString());
  109. Config.Save();
  110. }
  111. private static string GetConfigValue(string key, object defaultValue, bool makePermanent)
  112. {
  113. string value;
  114. if (Config.AppSettings.Settings[key] != null)
  115. {
  116. value = Config.AppSettings.Settings[key].Value;
  117. }
  118. else
  119. {
  120. if (makePermanent)
  121. {
  122. UpdateValue(key, defaultValue.ToString());
  123. }
  124. value = defaultValue.ToString();
  125. }
  126. return value;
  127. }
  128. }
  129. }