2023-01-24 15:29:31 +01:00
|
|
|
/* Copyright (c) Cloud Software Group, Inc.
|
2013-06-24 13:41:48 +02:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms,
|
|
|
|
* with or without modification, are permitted provided
|
|
|
|
* that the following conditions are met:
|
|
|
|
*
|
|
|
|
* * Redistributions of source code must retain the above
|
|
|
|
* copyright notice, this list of conditions and the
|
|
|
|
* following disclaimer.
|
|
|
|
* * Redistributions in binary form must reproduce the above
|
|
|
|
* copyright notice, this list of conditions and the
|
|
|
|
* following disclaimer in the documentation and/or other
|
|
|
|
* materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
|
|
|
|
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
|
|
|
|
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
|
|
|
|
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
|
|
|
|
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
|
|
|
|
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
|
|
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using XenAdmin.Network;
|
|
|
|
using XenAdmin.Core;
|
|
|
|
using XenAdmin.Commands;
|
|
|
|
using System.Timers;
|
|
|
|
|
|
|
|
|
|
|
|
namespace XenAdmin.Dialogs
|
|
|
|
{
|
|
|
|
public partial class ReconnectAsDialog : XenDialogBase
|
|
|
|
{
|
|
|
|
// Do not use the connection on XenDialogBase as setting it will register us to be closed when we dc
|
|
|
|
private readonly IXenConnection xc;
|
|
|
|
|
|
|
|
public ReconnectAsDialog(IXenConnection connection)
|
|
|
|
{
|
|
|
|
InitializeComponent();
|
|
|
|
xc = connection;
|
2017-09-03 04:33:29 +02:00
|
|
|
labelBlurb.Text = String.Format(Messages.RECONNECT_AS_BLURB, Helpers.GetName(connection).Ellipsise(30), connection.Session.UserFriendlyName().Ellipsise(30));
|
2013-06-24 13:41:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void SetButtonEnablement()
|
|
|
|
{
|
|
|
|
buttonOK.Enabled = !String.IsNullOrEmpty(textBoxPassword.Text) && !String.IsNullOrEmpty(textBoxUsername.Text.Trim());
|
|
|
|
}
|
|
|
|
|
|
|
|
private void buttonOK_Click(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
xc.Username = textBoxUsername.Text.Trim();
|
|
|
|
xc.Password = textBoxPassword.Text;
|
|
|
|
xc.ExpectPasswordIsCorrect = true;
|
|
|
|
// start logout then wait for connection to become disconnected
|
2019-10-27 16:52:15 +01:00
|
|
|
xc.ConnectionStateChanged += xc_ConnectionStateChanged;
|
2013-06-24 13:41:48 +02:00
|
|
|
|
2021-08-31 12:31:16 +02:00
|
|
|
if (!new DisconnectCommand(Program.MainWindow, xc, true).Run())
|
2013-06-24 13:41:48 +02:00
|
|
|
{
|
|
|
|
// User wimped out
|
|
|
|
xc.ConnectionStateChanged -= xc_ConnectionStateChanged;
|
|
|
|
}
|
|
|
|
Close();
|
|
|
|
}
|
|
|
|
|
2019-10-27 16:52:15 +01:00
|
|
|
private void xc_ConnectionStateChanged(IXenConnection conn)
|
2013-06-24 13:41:48 +02:00
|
|
|
{
|
|
|
|
if (xc.IsConnected)
|
|
|
|
return;
|
|
|
|
|
2019-10-27 16:52:15 +01:00
|
|
|
xc.ConnectionStateChanged -= xc_ConnectionStateChanged;
|
2013-06-24 13:41:48 +02:00
|
|
|
Timer t = new Timer(500);
|
|
|
|
t.AutoReset = false;
|
2019-10-27 16:52:15 +01:00
|
|
|
t.Elapsed += t_Elapsed;
|
2013-06-24 13:41:48 +02:00
|
|
|
t.Start();
|
|
|
|
}
|
|
|
|
|
|
|
|
void t_Elapsed(object sender, ElapsedEventArgs e)
|
|
|
|
{
|
|
|
|
Program.Invoke(Program.MainWindow, delegate
|
|
|
|
{
|
2019-10-27 16:52:15 +01:00
|
|
|
xc.CachePopulated += xc_CachePopulated;
|
2013-06-24 13:41:48 +02:00
|
|
|
XenConnectionUI.BeginConnect(xc, true, Program.MainWindow, true);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2019-10-27 16:52:15 +01:00
|
|
|
void xc_CachePopulated(IXenConnection conn)
|
2013-06-24 13:41:48 +02:00
|
|
|
{
|
2019-10-27 16:52:15 +01:00
|
|
|
xc.CachePopulated -= xc_CachePopulated;
|
2014-01-22 13:39:32 +01:00
|
|
|
Program.MainWindow.TrySelectNewObjectInTree(xc, true, true, false);
|
2013-06-24 13:41:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private void buttonCancel_Click(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
Close();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void textBoxUsername_TextChanged(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
SetButtonEnablement();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void textBoxPassword_TextChanged(object sender, EventArgs e)
|
|
|
|
{
|
|
|
|
SetButtonEnablement();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|