Configuration.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. //---------------------------------------------------------------------------
  2. #ifndef ConfigurationH
  3. #define ConfigurationH
  4. #include <set>
  5. #include "RemoteFiles.h"
  6. #include "FileBuffer.h"
  7. #include "HierarchicalStorage.h"
  8. #include "Usage.h"
  9. //---------------------------------------------------------------------------
  10. #define SET_CONFIG_PROPERTY_EX(PROPERTY, APPLY) \
  11. if (PROPERTY != value) { F ## PROPERTY = value; Changed(); APPLY; }
  12. #define SET_CONFIG_PROPERTY(PROPERTY) \
  13. SET_CONFIG_PROPERTY_EX(PROPERTY, )
  14. //---------------------------------------------------------------------------
  15. extern const wchar_t * AutoSwitchNames;
  16. extern const wchar_t * NotAutoSwitchNames;
  17. enum TAutoSwitch { asOn, asOff, asAuto };
  18. enum TAssemblyLanguage { alCSharp, alVBNET, alPowerShell };
  19. //---------------------------------------------------------------------------
  20. class TStoredSessionList;
  21. //---------------------------------------------------------------------------
  22. class TConfiguration : public TObject
  23. {
  24. private:
  25. bool FDontSave;
  26. bool FChanged;
  27. int FUpdating;
  28. TNotifyEvent FOnChange;
  29. void * FApplicationInfo;
  30. TUsage * FUsage;
  31. bool FLogging;
  32. bool FPermanentLogging;
  33. UnicodeString FLogFileName;
  34. UnicodeString FPermanentLogFileName;
  35. int FLogWindowLines;
  36. bool FLogFileAppend;
  37. bool FLogSensitive;
  38. bool FPermanentLogSensitive;
  39. int FLogProtocol;
  40. int FPermanentLogProtocol;
  41. int FActualLogProtocol;
  42. bool FLogActions;
  43. bool FPermanentLogActions;
  44. UnicodeString FActionsLogFileName;
  45. UnicodeString FPermanentActionsLogFileName;
  46. bool FConfirmOverwriting;
  47. bool FConfirmResume;
  48. bool FAutoReadDirectoryAfterOp;
  49. int FSessionReopenAuto;
  50. int FSessionReopenBackground;
  51. int FSessionReopenTimeout;
  52. int FSessionReopenAutoStall;
  53. UnicodeString FIniFileStorageName;
  54. UnicodeString FVirtualIniFileStorageName;
  55. std::unique_ptr<TStrings> FOptionsStorage;
  56. int FProgramIniPathWrittable;
  57. int FTunnelLocalPortNumberLow;
  58. int FTunnelLocalPortNumberHigh;
  59. int FCacheDirectoryChangesMaxSize;
  60. bool FShowFtpWelcomeMessage;
  61. UnicodeString FDefaultRandomSeedFile;
  62. UnicodeString FRandomSeedFile;
  63. UnicodeString FPuttyRegistryStorageKey;
  64. UnicodeString FExternalIpAddress;
  65. bool FTryFtpWhenSshFails;
  66. bool FScripting;
  67. bool FDisablePasswordStoring;
  68. bool FForceBanners;
  69. bool FDisableAcceptingHostKeys;
  70. bool FDefaultCollectUsage;
  71. UnicodeString __fastcall GetOSVersionStr();
  72. TVSFixedFileInfo *__fastcall GetFixedApplicationInfo();
  73. void * __fastcall GetApplicationInfo();
  74. virtual UnicodeString __fastcall GetVersionStr();
  75. virtual UnicodeString __fastcall GetVersion();
  76. UnicodeString __fastcall GetProductVersion();
  77. UnicodeString __fastcall GetProductName();
  78. UnicodeString __fastcall GetCompanyName();
  79. UnicodeString __fastcall GetFileVersion(TVSFixedFileInfo * Info);
  80. UnicodeString __fastcall GetStoredSessionsSubKey();
  81. UnicodeString __fastcall GetPuttySessionsKey();
  82. void __fastcall SetRandomSeedFile(UnicodeString value);
  83. UnicodeString __fastcall GetRandomSeedFileName();
  84. void __fastcall SetPuttyRegistryStorageKey(UnicodeString value);
  85. UnicodeString __fastcall GetSshHostKeysSubKey();
  86. UnicodeString __fastcall GetRootKeyStr();
  87. UnicodeString __fastcall GetConfigurationSubKey();
  88. TEOLType __fastcall GetLocalEOLType();
  89. void __fastcall SetLogging(bool value);
  90. void __fastcall SetLogFileName(UnicodeString value);
  91. bool __fastcall GetLogToFile();
  92. void __fastcall SetLogWindowLines(int value);
  93. void __fastcall SetLogWindowComplete(bool value);
  94. bool __fastcall GetLogWindowComplete();
  95. void __fastcall SetLogFileAppend(bool value);
  96. void __fastcall SetLogSensitive(bool value);
  97. void __fastcall SetLogProtocol(int value);
  98. void __fastcall SetLogActions(bool value);
  99. void __fastcall SetActionsLogFileName(UnicodeString value);
  100. UnicodeString __fastcall GetDefaultLogFileName();
  101. UnicodeString __fastcall GetTimeFormat();
  102. void __fastcall SetStorage(TStorage value);
  103. UnicodeString __fastcall GetRegistryStorageKey();
  104. UnicodeString __fastcall GetIniFileStorageNameForReadingWriting();
  105. UnicodeString __fastcall GetIniFileStorageNameForReading();
  106. UnicodeString __fastcall GetIniFileStorageName(bool ReadingOnly);
  107. void __fastcall SetIniFileStorageName(UnicodeString value);
  108. void __fastcall SetOptionsStorage(TStrings * value);
  109. TStrings * __fastcall GetOptionsStorage();
  110. UnicodeString __fastcall GetPartialExt() const;
  111. UnicodeString __fastcall GetFileInfoString(const UnicodeString Key);
  112. void __fastcall SetSessionReopenAuto(int value);
  113. void __fastcall SetSessionReopenBackground(int value);
  114. void __fastcall SetSessionReopenTimeout(int value);
  115. void __fastcall SetSessionReopenAutoStall(int value);
  116. void __fastcall SetTunnelLocalPortNumberLow(int value);
  117. void __fastcall SetTunnelLocalPortNumberHigh(int value);
  118. void __fastcall SetCacheDirectoryChangesMaxSize(int value);
  119. void __fastcall SetShowFtpWelcomeMessage(bool value);
  120. int __fastcall GetCompoundVersion();
  121. void __fastcall UpdateActualLogProtocol();
  122. void __fastcall SetExternalIpAddress(UnicodeString value);
  123. void __fastcall SetTryFtpWhenSshFails(bool value);
  124. bool __fastcall GetCollectUsage();
  125. void __fastcall SetCollectUsage(bool value);
  126. bool __fastcall GetIsUnofficial();
  127. bool __fastcall GetPersistent();
  128. protected:
  129. TStorage FStorage;
  130. TCriticalSection * FCriticalSection;
  131. virtual TStorage __fastcall GetStorage();
  132. virtual void __fastcall Changed();
  133. virtual void __fastcall SaveData(THierarchicalStorage * Storage, bool All);
  134. virtual void __fastcall LoadData(THierarchicalStorage * Storage);
  135. virtual void __fastcall LoadFrom(THierarchicalStorage * Storage);
  136. virtual void __fastcall CopyData(THierarchicalStorage * Source, THierarchicalStorage * Target);
  137. virtual void __fastcall LoadAdmin(THierarchicalStorage * Storage);
  138. virtual UnicodeString __fastcall GetDefaultKeyFile();
  139. virtual void __fastcall Saved();
  140. void __fastcall CleanupRegistry(UnicodeString CleanupSubKey);
  141. UnicodeString __fastcall BannerHash(const UnicodeString & Banner);
  142. static UnicodeString __fastcall PropertyToKey(const UnicodeString & Property);
  143. virtual void __fastcall DoSave(bool All, bool Explicit);
  144. UnicodeString __fastcall FormatFingerprintKey(const UnicodeString & SiteKey, const UnicodeString & FingerprintType);
  145. virtual bool __fastcall GetConfirmOverwriting();
  146. virtual void __fastcall SetConfirmOverwriting(bool value);
  147. bool __fastcall GetConfirmResume();
  148. void __fastcall SetConfirmResume(bool value);
  149. bool __fastcall GetAutoReadDirectoryAfterOp();
  150. void __fastcall SetAutoReadDirectoryAfterOp(bool value);
  151. virtual bool __fastcall GetRememberPassword();
  152. UnicodeString __fastcall GetReleaseType();
  153. virtual UnicodeString __fastcall ModuleFileName();
  154. UnicodeString __fastcall GetFileFileInfoString(const UnicodeString Key,
  155. const UnicodeString FileName, bool AllowEmpty = false);
  156. void * __fastcall GetFileApplicationInfo(const UnicodeString FileName);
  157. UnicodeString __fastcall GetFileProductVersion(const UnicodeString FileName);
  158. UnicodeString __fastcall GetFileProductName(const UnicodeString FileName);
  159. UnicodeString __fastcall GetFileCompanyName(const UnicodeString FileName);
  160. __property bool PermanentLogging = { read=FPermanentLogging, write=SetLogging };
  161. __property UnicodeString PermanentLogFileName = { read=FPermanentLogFileName, write=SetLogFileName };
  162. __property bool PermanentLogActions = { read=FPermanentLogActions, write=SetLogActions };
  163. __property UnicodeString PermanentActionsLogFileName = { read=FPermanentActionsLogFileName, write=SetActionsLogFileName };
  164. __property int PermanentLogProtocol = { read=FPermanentLogProtocol, write=SetLogProtocol };
  165. __property bool PermanentLogSensitive = { read=FPermanentLogSensitive, write=SetLogSensitive };
  166. public:
  167. __fastcall TConfiguration();
  168. virtual __fastcall ~TConfiguration();
  169. virtual void __fastcall Default();
  170. virtual void __fastcall UpdateStaticUsage();
  171. void __fastcall Load(THierarchicalStorage * Storage);
  172. void __fastcall Save();
  173. void __fastcall SaveExplicit();
  174. void __fastcall SetNulStorage();
  175. void __fastcall SetDefaultStorage();
  176. void __fastcall Export(const UnicodeString & FileName);
  177. void __fastcall Import(const UnicodeString & FileName);
  178. void __fastcall CleanupConfiguration();
  179. void __fastcall CleanupIniFile();
  180. void __fastcall CleanupHostKeys();
  181. void __fastcall CleanupRandomSeedFile();
  182. void __fastcall BeginUpdate();
  183. void __fastcall EndUpdate();
  184. void __fastcall DontSave();
  185. void __fastcall LoadDirectoryChangesCache(const UnicodeString SessionKey,
  186. TRemoteDirectoryChangesCache * DirectoryChangesCache);
  187. void __fastcall SaveDirectoryChangesCache(const UnicodeString SessionKey,
  188. TRemoteDirectoryChangesCache * DirectoryChangesCache);
  189. bool __fastcall ShowBanner(const UnicodeString SessionKey, const UnicodeString & Banner);
  190. void __fastcall NeverShowBanner(const UnicodeString SessionKey, const UnicodeString & Banner);
  191. void __fastcall RememberLastFingerprint(const UnicodeString & SiteKey, const UnicodeString & FingerprintType, const UnicodeString & Fingerprint);
  192. UnicodeString __fastcall LastFingerprint(const UnicodeString & SiteKey, const UnicodeString & FingerprintType);
  193. THierarchicalStorage * CreateConfigStorage();
  194. virtual THierarchicalStorage * CreateScpStorage(bool & SessionList);
  195. void __fastcall TemporaryLogging(const UnicodeString ALogFileName);
  196. void __fastcall TemporaryActionsLogging(const UnicodeString ALogFileName);
  197. void __fastcall TemporaryLogProtocol(int ALogProtocol);
  198. void __fastcall TemporaryLogSensitive(bool ALogSensitive);
  199. virtual RawByteString __fastcall EncryptPassword(UnicodeString Password, UnicodeString Key);
  200. virtual UnicodeString __fastcall DecryptPassword(RawByteString Password, UnicodeString Key);
  201. virtual RawByteString __fastcall StronglyRecryptPassword(RawByteString Password, UnicodeString Key);
  202. UnicodeString __fastcall GetFileDescription(const UnicodeString & FileName);
  203. UnicodeString __fastcall GetFileVersion(const UnicodeString & FileName);
  204. TStoredSessionList * __fastcall SelectFilezillaSessionsForImport(
  205. TStoredSessionList * Sessions, UnicodeString & Error);
  206. bool __fastcall AnyFilezillaSessionForImport(TStoredSessionList * Sessions);
  207. __property TVSFixedFileInfo *FixedApplicationInfo = { read=GetFixedApplicationInfo };
  208. __property void * ApplicationInfo = { read=GetApplicationInfo };
  209. __property TUsage * Usage = { read = FUsage };
  210. __property bool CollectUsage = { read = GetCollectUsage, write = SetCollectUsage };
  211. __property UnicodeString StoredSessionsSubKey = {read=GetStoredSessionsSubKey};
  212. __property UnicodeString PuttyRegistryStorageKey = { read=FPuttyRegistryStorageKey, write=SetPuttyRegistryStorageKey };
  213. __property UnicodeString PuttySessionsKey = { read=GetPuttySessionsKey };
  214. __property UnicodeString RandomSeedFile = { read=FRandomSeedFile, write=SetRandomSeedFile };
  215. __property UnicodeString RandomSeedFileName = { read=GetRandomSeedFileName };
  216. __property UnicodeString SshHostKeysSubKey = { read=GetSshHostKeysSubKey };
  217. __property UnicodeString RootKeyStr = { read=GetRootKeyStr };
  218. __property UnicodeString ConfigurationSubKey = { read=GetConfigurationSubKey };
  219. __property TEOLType LocalEOLType = { read = GetLocalEOLType };
  220. __property UnicodeString VersionStr = { read=GetVersionStr };
  221. __property UnicodeString Version = { read=GetVersion };
  222. __property int CompoundVersion = { read=GetCompoundVersion };
  223. __property UnicodeString ProductVersion = { read=GetProductVersion };
  224. __property UnicodeString ProductName = { read=GetProductName };
  225. __property UnicodeString CompanyName = { read=GetCompanyName };
  226. __property UnicodeString OSVersionStr = { read = GetOSVersionStr };
  227. __property bool IsUnofficial = { read = GetIsUnofficial };
  228. __property bool Logging = { read=FLogging, write=SetLogging };
  229. __property UnicodeString LogFileName = { read=FLogFileName, write=SetLogFileName };
  230. __property bool LogToFile = { read=GetLogToFile };
  231. __property bool LogFileAppend = { read=FLogFileAppend, write=SetLogFileAppend };
  232. __property bool LogSensitive = { read=FLogSensitive, write=SetLogSensitive };
  233. __property int LogProtocol = { read=FLogProtocol, write=SetLogProtocol };
  234. __property int ActualLogProtocol = { read=FActualLogProtocol };
  235. __property bool LogActions = { read=FLogActions, write=SetLogActions };
  236. __property UnicodeString ActionsLogFileName = { read=FActionsLogFileName, write=SetActionsLogFileName };
  237. __property int LogWindowLines = { read=FLogWindowLines, write=SetLogWindowLines };
  238. __property bool LogWindowComplete = { read=GetLogWindowComplete, write=SetLogWindowComplete };
  239. __property UnicodeString DefaultLogFileName = { read=GetDefaultLogFileName };
  240. __property TNotifyEvent OnChange = { read = FOnChange, write = FOnChange };
  241. __property bool ConfirmOverwriting = { read = GetConfirmOverwriting, write = SetConfirmOverwriting};
  242. __property bool ConfirmResume = { read = GetConfirmResume, write = SetConfirmResume};
  243. __property bool AutoReadDirectoryAfterOp = { read = GetAutoReadDirectoryAfterOp, write = SetAutoReadDirectoryAfterOp};
  244. __property bool RememberPassword = { read = GetRememberPassword };
  245. __property UnicodeString PartialExt = {read=GetPartialExt};
  246. __property int SessionReopenAuto = { read = FSessionReopenAuto, write = SetSessionReopenAuto };
  247. __property int SessionReopenBackground = { read = FSessionReopenBackground, write = SetSessionReopenBackground };
  248. __property int SessionReopenTimeout = { read = FSessionReopenTimeout, write = SetSessionReopenTimeout };
  249. __property int SessionReopenAutoStall = { read = FSessionReopenAutoStall, write = SetSessionReopenAutoStall };
  250. __property int TunnelLocalPortNumberLow = { read = FTunnelLocalPortNumberLow, write = SetTunnelLocalPortNumberLow };
  251. __property int TunnelLocalPortNumberHigh = { read = FTunnelLocalPortNumberHigh, write = SetTunnelLocalPortNumberHigh };
  252. __property int CacheDirectoryChangesMaxSize = { read = FCacheDirectoryChangesMaxSize, write = SetCacheDirectoryChangesMaxSize };
  253. __property bool ShowFtpWelcomeMessage = { read = FShowFtpWelcomeMessage, write = SetShowFtpWelcomeMessage };
  254. __property UnicodeString ExternalIpAddress = { read = FExternalIpAddress, write = SetExternalIpAddress };
  255. __property bool TryFtpWhenSshFails = { read = FTryFtpWhenSshFails, write = SetTryFtpWhenSshFails };
  256. __property UnicodeString TimeFormat = { read = GetTimeFormat };
  257. __property TStorage Storage = { read=GetStorage, write=SetStorage };
  258. __property UnicodeString RegistryStorageKey = { read=GetRegistryStorageKey };
  259. __property UnicodeString IniFileStorageName = { read=GetIniFileStorageNameForReadingWriting, write=SetIniFileStorageName };
  260. __property UnicodeString IniFileStorageNameForReading = { read=GetIniFileStorageNameForReading };
  261. __property TStrings * OptionsStorage = { read = GetOptionsStorage, write = SetOptionsStorage };
  262. __property bool Persistent = { read = GetPersistent };
  263. __property bool Scripting = { read = FScripting, write = FScripting };
  264. __property UnicodeString DefaultKeyFile = { read = GetDefaultKeyFile };
  265. __property bool DisablePasswordStoring = { read = FDisablePasswordStoring };
  266. __property bool ForceBanners = { read = FForceBanners };
  267. __property bool DisableAcceptingHostKeys = { read = FDisableAcceptingHostKeys };
  268. };
  269. //---------------------------------------------------------------------------
  270. class TShortCuts
  271. {
  272. public:
  273. void __fastcall Add(TShortCut ShortCut);
  274. bool __fastcall Has(TShortCut ShortCut) const;
  275. private:
  276. std::set<TShortCut> FShortCuts;
  277. };
  278. //---------------------------------------------------------------------------
  279. extern const UnicodeString OriginalPuttyRegistryStorageKey;
  280. extern const UnicodeString KittyRegistryStorageKey;
  281. extern const UnicodeString OriginalPuttyExecutable;
  282. extern const UnicodeString KittyExecutable;
  283. //---------------------------------------------------------------------------
  284. extern const UnicodeString Sha1ChecksumAlg;
  285. extern const UnicodeString Sha224ChecksumAlg;
  286. extern const UnicodeString Sha256ChecksumAlg;
  287. extern const UnicodeString Sha384ChecksumAlg;
  288. extern const UnicodeString Sha512ChecksumAlg;
  289. extern const UnicodeString Md5ChecksumAlg;
  290. extern const UnicodeString Crc32ChecksumAlg;
  291. //---------------------------------------------------------------------------
  292. extern const UnicodeString SshFingerprintType;
  293. extern const UnicodeString TlsFingerprintType;
  294. //---------------------------------------------------------------------------
  295. #endif