/Main/TS3QueryLib.Core.Silverlight/Server/Entities/VirtualServerModification.cs

# · C# · 125 lines · 111 code · 14 blank · 0 comment · 3 complexity · 6e2b4af2254d4a41b435c1c7f5f1e6f6 MD5 · raw file

  1. using TS3QueryLib.Core.CommandHandling;
  2. using TS3QueryLib.Core.Common.Entities;
  3. using TS3QueryLib.Core.Server.Responses;
  4. namespace TS3QueryLib.Core.Server.Entities
  5. {
  6. public class VirtualServerModification : ModificationBase
  7. {
  8. #region Properties
  9. public string Name { get; set; }
  10. public string WelcomeMessage { get; set; }
  11. public int? MaxClients { get; set; }
  12. public string Password { get; set; }
  13. public string HostMessage { get; set; }
  14. public HostMessageMode? HostMessageMode { get; set; }
  15. public uint? DefaultServerGroupId { get; set; }
  16. public uint? DefaultChannelGroupId { get; set; }
  17. public uint? DefaultChannelAdminGroupId { get; set; }
  18. public ulong? MaxDownloadTotalBandwidth { get; set; }
  19. public ulong? MaxUploadTotalBandwidth { get; set; }
  20. public string HostBannerUrl { get; set; }
  21. public string HostBannerGraphicsUrl { get; set; }
  22. public uint? HostBannerGraphicsInterval { get; set; }
  23. public int? ComplainAutoBanCount { get; set; }
  24. public int? ComplainAutoBanTime { get; set; }
  25. public int? ComplainRemoveTime { get; set; }
  26. public int? MinClientsInChannelBeforeForcedSilence { get; set; }
  27. public double? PrioritySpeakerDimmModification { get; set; }
  28. public int? AntiFloodPointsTickReduce { get; set; }
  29. public int? AntiFloodPointsNeededWarning { get; set; }
  30. public int? AntiFloodPointsNeededKick { get; set; }
  31. public int? AntiFloodPointsNeededBan { get; set; }
  32. public int? AntiFloodBanTime { get; set; }
  33. public string HostButtonTooltip { get; set; }
  34. public string HostButtonUrl { get; set; }
  35. public ulong? DownloadQuota { get; set; }
  36. public ulong? UploadQuota { get; set; }
  37. public string MachineId { get; set; }
  38. public ushort? Port { get; set; }
  39. public ushort? ReservedSlots { get; set; }
  40. public bool? AutoStart { get; set; }
  41. public int? NeededIdentitySecurityLevel { get; set; }
  42. public VirtualServerStatus? ServerStatus { get; set; }
  43. public string MinClientVersion { get; set; }
  44. public bool? LogClient { get; set; }
  45. public bool? LogQuery { get; set; }
  46. public bool? LogChannel { get; set; }
  47. public bool? LogPermission { get; set; }
  48. public bool? LogServer { get; set; }
  49. public bool? LogFiletransfer { get; set; }
  50. public string PhoneticName { get; set; }
  51. public uint? IconId { get; set; }
  52. public string HostButtonGraphicsUrl { get; set; }
  53. public HostBannerMode? HostBannerMode { get; set; }
  54. public bool? WeblistEnabled { get; set; }
  55. #endregion
  56. #region Public Methods
  57. public void AddToCommand(Command command)
  58. {
  59. AddToCommand(command, "virtualserver_name", Name);
  60. AddToCommand(command, "virtualserver_welcomemessage", WelcomeMessage);
  61. AddToCommand(command, "virtualserver_maxclients", MaxClients);
  62. AddToCommand(command, "virtualserver_password", Password);
  63. AddToCommand(command, "virtualserver_hostmessage", HostMessage);
  64. if (HostMessageMode.HasValue)
  65. AddToCommand(command, "virtualserver_hostmessage_mode", (uint)HostMessageMode.Value);
  66. AddToCommand(command, "virtualserver_default_server_group", DefaultServerGroupId);
  67. AddToCommand(command, "virtualserver_default_channel_group", DefaultChannelGroupId);
  68. AddToCommand(command, "virtualserver_default_channel_admin_group", DefaultChannelAdminGroupId);
  69. AddToCommand(command, "virtualserver_max_download_total_bandwidth", MaxDownloadTotalBandwidth);
  70. AddToCommand(command, "virtualserver_max_upload_total_bandwidth", MaxUploadTotalBandwidth);
  71. AddToCommand(command, "virtualserver_hostbanner_url", HostBannerUrl);
  72. AddToCommand(command, "virtualserver_hostbanner_gfx_url", HostBannerGraphicsUrl);
  73. AddToCommand(command, "virtualserver_hostbanner_gfx_interval", HostBannerGraphicsInterval);
  74. AddToCommand(command, "virtualserver_complain_autoban_count", ComplainAutoBanCount);
  75. AddToCommand(command, "virtualserver_complain_autoban_time", ComplainAutoBanTime);
  76. AddToCommand(command, "virtualserver_complain_remove_time", ComplainRemoveTime);
  77. AddToCommand(command, "virtualserver_min_clients_in_channel_before_forced_silence", MinClientsInChannelBeforeForcedSilence);
  78. AddToCommand(command, "virtualserver_priority_speaker_dimm_modificator", PrioritySpeakerDimmModification);
  79. AddToCommand(command, "virtualserver_antiflood_points_tick_reduce", AntiFloodPointsTickReduce);
  80. AddToCommand(command, "virtualserver_antiflood_points_needed_warning", AntiFloodPointsNeededWarning);
  81. AddToCommand(command, "virtualserver_antiflood_points_needed_kick", AntiFloodPointsNeededKick);
  82. AddToCommand(command, "virtualserver_antiflood_points_needed_ban", AntiFloodPointsNeededBan);
  83. AddToCommand(command, "virtualserver_antiflood_points_ban_time", AntiFloodBanTime);
  84. AddToCommand(command, "virtualserver_hostbutton_tooltip", HostButtonTooltip);
  85. AddToCommand(command, "virtualserver_hostbutton_url", HostButtonUrl);
  86. AddToCommand(command, "virtualserver_download_quota", DownloadQuota);
  87. AddToCommand(command, "virtualserver_upload_quota", UploadQuota);
  88. AddToCommand(command, "virtualserver_machine_id", MachineId);
  89. AddToCommand(command, "virtualserver_port", Port);
  90. AddToCommand(command, "virtualserver_reserved_slots", ReservedSlots);
  91. AddToCommand(command, "virtualserver_autostart", AutoStart);
  92. AddToCommand(command, "virtualserver_needed_identity_security_level", NeededIdentitySecurityLevel);
  93. AddToCommand(command, "virtualserver_min_client_version", MinClientVersion);
  94. if (ServerStatus.HasValue)
  95. AddToCommand(command, "virtualserver_status", (uint)ServerStatus.Value);
  96. AddToCommand(command, "virtualserver_log_client", LogClient);
  97. AddToCommand(command, "virtualserver_log_query", LogQuery);
  98. AddToCommand(command, "virtualserver_log_permissions", LogPermission);
  99. AddToCommand(command, "virtualserver_log_channel", LogChannel);
  100. AddToCommand(command, "virtualserver_log_server", LogServer);
  101. AddToCommand(command, "virtualserver_log_filetransfer", LogFiletransfer);
  102. AddToCommand(command, "virtualserver_name_phonetic", PhoneticName);
  103. AddToCommand(command, "virtualserver_icon_id", IconId);
  104. AddToCommand(command, "virtualserver_hostbutton_gfx_url", HostButtonGraphicsUrl);
  105. if (HostBannerMode.HasValue)
  106. AddToCommand(command, "virtualserver_hostbanner_mode", (uint) HostBannerMode.Value);
  107. AddToCommand(command, "virtualserver_weblist_enabled", WeblistEnabled);
  108. }
  109. #endregion
  110. }
  111. }