Open the Swagger API page on server start if not hosting the static web content

pull/2465/head
Mark Monteiro 4 years ago
parent 26af5ea45a
commit 1b5999a1bc

@ -244,6 +244,9 @@ namespace Emby.Server.Implementations
/// </summary>
public string ContentRoot { get; private set; }
/// <inheritdoc/>
public bool IsHostingContent => ContentRoot != null;
/// <summary>
/// Gets the server configuration manager.
/// </summary>

@ -29,6 +29,16 @@ namespace Emby.Server.Implementations.Browser
OpenDashboardPage("index.html", appHost);
}
/// <summary>
/// Opens the swagger API page.
/// </summary>
/// <param name="appHost">The app host.</param>
public static void OpenSwaggerPage(IServerApplicationHost appHost)
{
var url = appHost.GetLocalApiUrl("localhost") + "/swagger/index.html";
OpenUrl(appHost, url);
}
/// <summary>
/// Opens the URL.
/// </summary>

@ -36,7 +36,11 @@ namespace Emby.Server.Implementations.EntryPoints
return Task.CompletedTask;
}
if (!_config.Configuration.IsStartupWizardCompleted)
if (!_appHost.IsHostingContent)
{
BrowserLauncher.OpenSwaggerPage(_appHost);
}
else if (!_config.Configuration.IsStartupWizardCompleted)
{
BrowserLauncher.OpenWebApp(_appHost);
}

@ -16,6 +16,11 @@ namespace MediaBrowser.Controller
{
event EventHandler HasUpdateAvailableChanged;
/// <summary>
/// Gets a value indicating whether the server is hosting the static web content from jellyfin-web.
/// </summary>
bool IsHostingContent { get; }
/// <summary>
/// Gets the system info.
/// </summary>

Loading…
Cancel
Save