mirror of
https://github.com/immense/Remotely.git
synced 2025-10-26 11:27:15 +00:00
93 lines
3.4 KiB
C#
93 lines
3.4 KiB
C#
using Remotely_Library.Models;
|
|
using Newtonsoft.Json;
|
|
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Management.Automation;
|
|
using System.Text;
|
|
using System.Timers;
|
|
|
|
namespace Remotely_Agent.Services
|
|
{
|
|
public class PSCore
|
|
{
|
|
private static ConcurrentDictionary<string, PSCore> Sessions { get; set; } = new ConcurrentDictionary<string, PSCore>();
|
|
private Timer ProcessIdleTimeout { get; set; }
|
|
public static PSCore GetCurrent(string connectionID)
|
|
{
|
|
if (Sessions.ContainsKey(connectionID))
|
|
{
|
|
var psCore = Sessions[connectionID];
|
|
psCore.ProcessIdleTimeout.Stop();
|
|
psCore.ProcessIdleTimeout.Start();
|
|
return psCore;
|
|
}
|
|
else
|
|
{
|
|
var psCore = new PSCore();
|
|
psCore.ProcessIdleTimeout = new Timer(600000); // 10 minutes.
|
|
psCore.ProcessIdleTimeout.AutoReset = false;
|
|
psCore.ProcessIdleTimeout.Elapsed += (sender, args) =>
|
|
{
|
|
while (!Sessions.TryRemove(connectionID, out var pSCore))
|
|
{
|
|
System.Threading.Thread.Sleep(1000);
|
|
}
|
|
};
|
|
while (!Sessions.TryAdd(connectionID, psCore))
|
|
{
|
|
System.Threading.Thread.Sleep(1000);
|
|
}
|
|
psCore.ProcessIdleTimeout.Start();
|
|
return psCore;
|
|
}
|
|
}
|
|
private PowerShell PS { get; set; }
|
|
|
|
private PSCore()
|
|
{
|
|
PS = PowerShell.Create();
|
|
PS.AddScript(@"$VerbosePreference = ""Continue"";
|
|
$DebugPreference = ""Continue"";
|
|
$InformationPreference = ""Continue"";
|
|
$WarningPreference = ""Continue"";");
|
|
PS.Invoke();
|
|
}
|
|
|
|
public PSCoreCommandResult WriteInput(string input, string commandID)
|
|
{
|
|
PS.Commands.Clear();
|
|
PS.AddScript(input);
|
|
var results = PS.Invoke();
|
|
|
|
var ps = PowerShell.Create();
|
|
ps.AddScript("$args[0] | Out-String");
|
|
ps.AddArgument(results);
|
|
var hostOutput = (ps.Invoke()[0].BaseObject as string);
|
|
|
|
var verboseOut = PS.Streams.Verbose.ReadAll().Select(x => x.Message).ToList();
|
|
var debugOut = PS.Streams.Debug.ReadAll().Select(x => x.Message).ToList();
|
|
var errorOut = PS.Streams.Error.ReadAll().Select(x => x.Exception.ToString() + Environment.NewLine + x.ScriptStackTrace).ToList();
|
|
var infoOut = PS.Streams.Information.Select(x => x.MessageData.ToString()).ToList();
|
|
var warningOut = PS.Streams.Warning.Select(x => x.Message).ToList();
|
|
|
|
PS.Streams.ClearStreams();
|
|
PS.Commands.Clear();
|
|
|
|
return new PSCoreCommandResult()
|
|
{
|
|
CommandContextID = commandID,
|
|
DeviceID = Utilities.GetConnectionInfo().DeviceID,
|
|
DebugOutput = debugOut,
|
|
ErrorOutput = errorOut,
|
|
VerboseOutput = verboseOut,
|
|
HostOutput = hostOutput,
|
|
InformationOutput = infoOut,
|
|
WarningOutput = warningOut
|
|
};
|
|
}
|
|
|
|
}
|
|
}
|