private static void SetServerState() { Console.WriteLine("-- {0} --", MethodBase.GetCurrentMethod().Name); using (IFileZillaApi fileZillaApi = new FileZillaApi(IPAddress.Parse(Ip), Port) { Log = new DebugTextWriter() }) { fileZillaApi.Connect(ServerPassword); var serverState = fileZillaApi.GetServerState(); Console.WriteLine("State is {0}", serverState); // Go offiline serverState = fileZillaApi.SetServerState(ServerState.GoOfflineNow); Console.WriteLine("GoOfflineNow State is {0}", serverState); Thread.Sleep(TimeSpan.FromSeconds(5)); serverState = fileZillaApi.GetServerState(); Console.WriteLine("State is {0}", serverState); // Go online serverState = fileZillaApi.SetServerState(ServerState.Online); Console.WriteLine("State is {0}", serverState); // Lock server serverState = fileZillaApi.SetServerState(ServerState.Online | ServerState.Locked); Console.WriteLine("Lock State is {0}", serverState); // Unlock serverState = fileZillaApi.SetServerState(ServerState.Online); Console.WriteLine("State is {0}", serverState); } }
private static void GetServerState() { Console.WriteLine("-- {0} --", MethodBase.GetCurrentMethod().Name); using (IFileZillaApi fileZillaApi = new FileZillaApi(IPAddress.Parse(Ip), Port) { Log = new DebugTextWriter() }) { var stopWatch = Stopwatch2.StartNew(); fileZillaApi.Connect(ServerPassword); var serverState = fileZillaApi.GetServerState(); Console.WriteLine("Connected in {0}. State is {1}", stopWatch.GetDelta(), serverState); } }
private static void GetConnections() { Console.WriteLine("\n-- {0} --", MethodBase.GetCurrentMethod().Name); using (IFileZillaApi fileZillaApi = new FileZillaApi(IPAddress.Parse(Ip), Port) { Log = DebugLog }) { var stopWatch = Stopwatch2.StartNew(); fileZillaApi.Connect(ServerPassword); var serverState = fileZillaApi.GetServerState(); Console.WriteLine("Connected in {0}. State is {1}", stopWatch.GetDelta(), serverState); var conections = fileZillaApi.GetConnections(); Console.WriteLine("Got {0} connections in {1}", conections.Count, stopWatch.GetDelta()); } }
private static void CreateLotsOfUsersAndGroups() { Console.WriteLine("\n-- {0} --", MethodBase.GetCurrentMethod().Name); using (IFileZillaApi fileZillaApi = new FileZillaApi(IPAddress.Parse(Ip), Port) { Log = DebugLog }) { var stopWatch = Stopwatch2.StartNew(); fileZillaApi.Connect(ServerPassword); var serverState = fileZillaApi.GetServerState(); Console.WriteLine("Connected in {0}. State is {1}", stopWatch.GetDelta(), serverState); var accountSettings = fileZillaApi.GetAccountSettings(); Console.WriteLine("Account settings with {0} groups and {1} users fetched in {2}.", accountSettings.Groups.Count, accountSettings.Users.Count, stopWatch.GetDelta()); accountSettings.Groups.RemoveAll(x => x.GroupName.StartsWith(GroupName)); accountSettings.Users.RemoveAll(x => x.UserName.StartsWith(UserName)); for (var i = 0; i < MaxGroups; i++) { var group = new Group() { GroupName = GroupName + i, SharedFolders = new List <SharedFolder>() { new SharedFolder() { Directory = @"C:\Group" + i + @"\Shared", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead | AccessRights.IsHome } }, }; accountSettings.Groups.Add(group); } var maxUsers = fileZillaApi.ProtocolVersion < ProtocolVersions.User16M ? MaxUsers64K : MaxUsers16M; for (var i = 0; i < maxUsers; i++) { var user = new User { GroupName = GroupName + (i % MaxGroups), // Reference to group UserName = UserName + i, SharedFolders = new List <SharedFolder>() { new SharedFolder() { Directory = @"C:\User" + i + @"\Private", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead | AccessRights.IsHome } }, }; user.AssignPassword("LonglongPasswordwithnumber" + i, fileZillaApi.ProtocolVersion); accountSettings.Users.Add(user); } Console.WriteLine("Created {0} groups and {1} users in {2}.", MaxGroups, maxUsers, stopWatch.GetDelta()); fileZillaApi.SetAccountSettings(accountSettings); Console.WriteLine("Finished saving account settings in {0}.", stopWatch.GetDelta()); } }
private static void CreateUserAndGroup() { Console.WriteLine("\n-- {0} --", MethodBase.GetCurrentMethod().Name); using (IFileZillaApi fileZillaApi = new FileZillaApi(IPAddress.Parse(Ip), Port) { Log = DebugLog }) { var stopWatch = Stopwatch2.StartNew(); fileZillaApi.Connect(ServerPassword); var serverState = fileZillaApi.GetServerState(); Console.WriteLine("Connected in {0}. State is {1}", stopWatch.GetDelta(), serverState); var accountSettings = fileZillaApi.GetAccountSettings(); Console.WriteLine("Account settings with {0} groups and {1} users fetched in {2}.", accountSettings.Groups.Count, accountSettings.Users.Count, stopWatch.GetDelta()); var group = new Group() { GroupName = GroupName, SharedFolders = new List <SharedFolder>() { new SharedFolder() { Directory = @"C:\Group\Shared", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead | AccessRights.IsHome }, new SharedFolder() { Directory = @"C:\foo\bar", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead } }, AllowedIPs = new List <string>() { "127.0.0.1", "10.10.10.10", "42.42.42.42", "::1" }, DisallowedIPs = new List <string>() { "172.0.0.0" }, ForceSsl = true, Comment = "The quick brown fox jumps over the lazy dog", BypassUserLimit = TriState.No, }; accountSettings.Groups.RemoveAll(x => x.GroupName == GroupName); accountSettings.Groups.Add(@group); var user = new User { GroupName = GroupName, // Reference to group UserName = UserName, SharedFolders = new List <SharedFolder>() { new SharedFolder() { Directory = @"C:\UserX\Home", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead | AccessRights.FileWrite | AccessRights.IsHome }, new SharedFolder() { Directory = @"C:\Shared\foo\bar", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead } } }; user.AssignPassword("test42", fileZillaApi.ProtocolVersion); accountSettings.Users.RemoveAll(x => x.UserName == UserName); accountSettings.Users.Add(user); Console.WriteLine("Created {0} groups and {1} users in {2}.", 1, 1, stopWatch.GetDelta()); fileZillaApi.SetAccountSettings(accountSettings); Console.WriteLine("Finished saving account settings in {0}.", stopWatch.GetDelta()); } }
private static void DeleteLotsOfUsersAndGroups() { Console.WriteLine("-- {0} --", MethodBase.GetCurrentMethod().Name); using (IFileZillaApi fileZillaApi = new FileZillaApi(IPAddress.Parse(Ip), Port) { Log = new DebugTextWriter() }) { var stopWatch = Stopwatch2.StartNew(); fileZillaApi.Connect(ServerPassword); var serverState = fileZillaApi.GetServerState(); Console.WriteLine("Connected in {0}. State is {1}", stopWatch.GetDelta(), serverState); var accountSettings = fileZillaApi.GetAccountSettings(); Console.WriteLine("Account settings with {0} groups and {1} users fetched in {2}.", accountSettings.Groups.Count, accountSettings.Users.Count, stopWatch.GetDelta()); accountSettings.Users.RemoveAll(x => x.UserName.StartsWith(UserName)); accountSettings.Groups.RemoveAll(x => x.GroupName.StartsWith(GroupName)); fileZillaApi.SetAccountSettings(accountSettings); Console.WriteLine("Finished saving account settings in {0}.", stopWatch.GetDelta()); } }
private static void CreateLotsOfUsersAndGroups() { Console.WriteLine("-- {0} --", MethodBase.GetCurrentMethod().Name); using (IFileZillaApi fileZillaApi = new FileZillaApi(IPAddress.Parse(Ip), Port) { Log = new DebugTextWriter() }) { var stopWatch = Stopwatch2.StartNew(); fileZillaApi.Connect(ServerPassword); var serverState = fileZillaApi.GetServerState(); Console.WriteLine("Connected in {0}. State is {1}", stopWatch.GetDelta(), serverState); var accountSettings = fileZillaApi.GetAccountSettings(); Console.WriteLine("Account settings with {0} groups and {1} users fetched in {2}.", accountSettings.Groups.Count, accountSettings.Users.Count, stopWatch.GetDelta()); accountSettings.Groups.RemoveAll(x => x.GroupName.StartsWith(GroupName)); accountSettings.Users.RemoveAll(x => x.UserName.StartsWith(UserName)); for (var i = 0; i < MaxGroups; i++) { var group = new Group() { GroupName = GroupName + i, SharedFolders = new List<SharedFolder>() { new SharedFolder() { Directory = @"C:\Group" + i + @"\Shared", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead | AccessRights.IsHome } }, }; accountSettings.Groups.Add(group); } var maxUsers = fileZillaApi.ProtocolVersion < ProtocolVersions.User16M ? MaxUsers64K : MaxUsers16M; for (var i = 0; i < maxUsers; i++) { var user = new User { GroupName = GroupName + (i % MaxGroups), // Reference to group UserName = UserName + i, Password = User.HashPassword("LonglongPasswordwithnumber" + i), SharedFolders = new List<SharedFolder>() { new SharedFolder() { Directory = @"C:\User" + i + @"\Private", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead | AccessRights.IsHome } }, }; accountSettings.Users.Add(user); } Console.WriteLine("Created {0} groups and {1} users in {2}.", MaxGroups, maxUsers, stopWatch.GetDelta()); fileZillaApi.SetAccountSettings(accountSettings); Console.WriteLine("Finished saving account settings in {0}.", stopWatch.GetDelta()); } }
private static void CreateUserAndGroup() { Console.WriteLine("-- {0} --", MethodBase.GetCurrentMethod().Name); using (IFileZillaApi fileZillaApi = new FileZillaApi(IPAddress.Parse(Ip), Port) { Log = new DebugTextWriter() }) { var stopWatch = Stopwatch2.StartNew(); fileZillaApi.Connect(ServerPassword); var serverState = fileZillaApi.GetServerState(); Console.WriteLine("Connected in {0}. State is {1}", stopWatch.GetDelta(), serverState); var accountSettings = fileZillaApi.GetAccountSettings(); Console.WriteLine("Account settings with {0} groups and {1} users fetched in {2}.", accountSettings.Groups.Count, accountSettings.Users.Count, stopWatch.GetDelta()); var group = new Group() { GroupName = GroupName, SharedFolders = new List<SharedFolder>() { new SharedFolder() { Directory = @"C:\Group\Shared", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead | AccessRights.IsHome }, new SharedFolder() { Directory = @"C:\foo\bar", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead } }, AllowedIPs = new List<string>() { "127.0.0.1", "10.10.10.10", "42.42.42.42", "::1" }, DisallowedIPs = new List<string>() { "172.0.0.0" }, ForceSsl = true, Comment = "The quick brown fox jumps over the lazy dog", BypassUserLimit = TriState.No, }; accountSettings.Groups.RemoveAll(x => x.GroupName == GroupName); accountSettings.Groups.Add(@group); var user = new User { GroupName = GroupName, // Reference to group UserName = UserName, Password = User.HashPassword("test42"), SharedFolders = new List<SharedFolder>() { new SharedFolder() { Directory = @"C:\Hello\World", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead | AccessRights.IsHome }, new SharedFolder() { Directory = @"C:\foo\bar", AccessRights = AccessRights.DirList | AccessRights.DirSubdirs | AccessRights.FileRead } } }; accountSettings.Users.RemoveAll(x => x.UserName == UserName); accountSettings.Users.Add(user); Console.WriteLine("Created {0} groups and {1} users in {2}.", 1, 1, stopWatch.GetDelta()); fileZillaApi.SetAccountSettings(accountSettings); Console.WriteLine("Finished saving account settings in {0}.", stopWatch.GetDelta()); } }