mirror of
https://github.com/aspnet/JavaScriptServices.git
synced 2025-12-23 01:58:29 +00:00
102 lines
4.8 KiB
C#
102 lines
4.8 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using Microsoft.AspNetCore.Builder;
|
|
using Microsoft.Extensions.Logging;
|
|
using Microsoft.AspNetCore.NodeServices.Npm;
|
|
using Microsoft.AspNetCore.NodeServices.Util;
|
|
using Microsoft.AspNetCore.SpaServices.Util;
|
|
using System;
|
|
using System.IO;
|
|
using System.Collections.Generic;
|
|
using System.Text.RegularExpressions;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.SpaServices.Extensions.Util;
|
|
|
|
namespace Microsoft.AspNetCore.SpaServices.ReactDevelopmentServer
|
|
{
|
|
internal static class ReactDevelopmentServerMiddleware
|
|
{
|
|
private const string LogCategoryName = "Microsoft.AspNetCore.SpaServices";
|
|
private static TimeSpan RegexMatchTimeout = TimeSpan.FromSeconds(5); // This is a development-time only feature, so a very long timeout is fine
|
|
|
|
public static void Attach(
|
|
ISpaBuilder spaBuilder,
|
|
string npmScriptName)
|
|
{
|
|
var sourcePath = spaBuilder.Options.SourcePath;
|
|
if (string.IsNullOrEmpty(sourcePath))
|
|
{
|
|
throw new ArgumentException("Cannot be null or empty", nameof(sourcePath));
|
|
}
|
|
|
|
if (string.IsNullOrEmpty(npmScriptName))
|
|
{
|
|
throw new ArgumentException("Cannot be null or empty", nameof(npmScriptName));
|
|
}
|
|
|
|
// Start create-react-app and attach to middleware pipeline
|
|
var appBuilder = spaBuilder.ApplicationBuilder;
|
|
var logger = LoggerFinder.GetOrCreateLogger(appBuilder, LogCategoryName);
|
|
var portTask = StartCreateReactAppServerAsync(sourcePath, npmScriptName, logger);
|
|
|
|
// Everything we proxy is hardcoded to target http://localhost because:
|
|
// - the requests are always from the local machine (we're not accepting remote
|
|
// requests that go directly to the create-react-app server)
|
|
// - given that, there's no reason to use https, and we couldn't even if we
|
|
// wanted to, because in general the create-react-app server has no certificate
|
|
var targetUriTask = portTask.ContinueWith(
|
|
task => new UriBuilder("http", "localhost", task.Result).Uri);
|
|
|
|
SpaProxyingExtensions.UseProxyToSpaDevelopmentServer(spaBuilder, () =>
|
|
{
|
|
// On each request, we create a separate startup task with its own timeout. That way, even if
|
|
// the first request times out, subsequent requests could still work.
|
|
var timeout = spaBuilder.Options.StartupTimeout;
|
|
return targetUriTask.WithTimeout(timeout,
|
|
$"The create-react-app server did not start listening for requests " +
|
|
$"within the timeout period of {timeout.Seconds} seconds. " +
|
|
$"Check the log output for error information.");
|
|
});
|
|
}
|
|
|
|
private static async Task<int> StartCreateReactAppServerAsync(
|
|
string sourcePath, string npmScriptName, ILogger logger)
|
|
{
|
|
var portNumber = TcpPortFinder.FindAvailablePort();
|
|
logger.LogInformation($"Starting create-react-app server on port {portNumber}...");
|
|
|
|
var envVars = new Dictionary<string, string>
|
|
{
|
|
{ "PORT", portNumber.ToString() },
|
|
{ "BROWSER", "none" }, // We don't want create-react-app to open its own extra browser window pointing to the internal dev server port
|
|
};
|
|
var npmScriptRunner = new NpmScriptRunner(
|
|
sourcePath, npmScriptName, null, envVars);
|
|
npmScriptRunner.AttachToLogger(logger);
|
|
|
|
using (var stdErrReader = new EventedStreamStringReader(npmScriptRunner.StdErr))
|
|
{
|
|
try
|
|
{
|
|
// Although the React dev server may eventually tell us the URL it's listening on,
|
|
// it doesn't do so until it's finished compiling, and even then only if there were
|
|
// no compiler warnings. So instead of waiting for that, consider it ready as soon
|
|
// as it starts listening for requests.
|
|
await npmScriptRunner.StdOut.WaitForMatch(
|
|
new Regex("Starting the development server", RegexOptions.None, RegexMatchTimeout));
|
|
}
|
|
catch (EndOfStreamException ex)
|
|
{
|
|
throw new InvalidOperationException(
|
|
$"The NPM script '{npmScriptName}' exited without indicating that the " +
|
|
$"create-react-app server was listening for requests. The error output was: " +
|
|
$"{stdErrReader.ReadAsString()}", ex);
|
|
}
|
|
}
|
|
|
|
return portNumber;
|
|
}
|
|
}
|
|
}
|