mirror of
https://github.com/ElectronNET/Electron.NET.git
synced 2026-07-08 17:56:51 +00:00
Adds dynamic OS-selected socket port handling and secured Electron/.NET communication. The dotnet-first startup flow now generates the auth token on the .NET side and passes it to Electron through an environment variable. Electron reports the selected socket port through a temporary startup-info file, avoiding any dependency on parsing Electron console output. Also avoids logging backend startup parameters because they include the auth token.
57 lines
2.1 KiB
C#
57 lines
2.1 KiB
C#
namespace ElectronNET.AspNet.Runtime
|
|
{
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
using System.Security.Principal;
|
|
using Microsoft.AspNetCore.Hosting.Server;
|
|
using ElectronNET.AspNet.Services;
|
|
using ElectronNET.Common;
|
|
using ElectronNET.Runtime.Data;
|
|
using ElectronNET.Runtime.Helpers;
|
|
using ElectronNET.Runtime.Services.ElectronProcess;
|
|
|
|
internal class RuntimeControllerAspNetDotnetFirst : RuntimeControllerAspNetBase
|
|
{
|
|
private ElectronProcessBase electronProcess;
|
|
|
|
public RuntimeControllerAspNetDotnetFirst(IServer server, AspNetLifetimeAdapter aspNetLifetimeAdapter, IElectronAuthenticationService authenticationService = null) : base(server, aspNetLifetimeAdapter, authenticationService)
|
|
{
|
|
}
|
|
|
|
internal override ElectronProcessBase ElectronProcess => this.electronProcess;
|
|
|
|
protected override Task StartCore()
|
|
{
|
|
var isUnPacked = ElectronNetRuntime.StartupMethod.IsUnpackaged();
|
|
var electronBinaryName = ElectronNetRuntime.ElectronExecutable;
|
|
var args = Environment.CommandLine;
|
|
var port = ElectronNetRuntime.ElectronSocketPort ?? 0;
|
|
|
|
this.electronProcess = new ElectronProcessActive(isUnPacked, electronBinaryName, args, port);
|
|
this.electronProcess.Ready += this.ElectronProcess_Ready;
|
|
this.electronProcess.Stopped += this.ElectronProcess_Stopped;
|
|
|
|
return this.electronProcess.Start();
|
|
}
|
|
|
|
protected override Task StopCore()
|
|
{
|
|
this.electronProcess.Stop();
|
|
return Task.CompletedTask;
|
|
}
|
|
|
|
private void ElectronProcess_Ready(object sender, EventArgs e)
|
|
{
|
|
var port = ElectronNetRuntime.ElectronSocketPort.Value;
|
|
var token = ElectronNetRuntime.ElectronAuthToken;
|
|
this.TransitionState(LifetimeState.Started);
|
|
this.CreateSocketBridge(port, token);
|
|
}
|
|
|
|
private void ElectronProcess_Stopped(object sender, EventArgs e)
|
|
{
|
|
this.HandleStopped();
|
|
}
|
|
}
|
|
}
|