| File: Devcontainers\Codespaces\CodespacesUrlRewriter.cs | Web Access |
| Project: src\src\Aspire.Hosting\Aspire.Hosting.csproj (Aspire.Hosting) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using Microsoft.Extensions.Options; namespace Aspire.Hosting.Devcontainers.Codespaces; internal sealed class CodespacesUrlRewriter(IOptions<CodespacesOptions> options) { public string RewriteUrl(string url) { ArgumentException.ThrowIfNullOrWhiteSpace(url); if (!options.Value.IsCodespace) { return url; } return RewriteUrl(new Uri(url)); } public string RewriteUrl(Uri uri) { if (!options.Value.IsCodespace) { return uri.ToString(); } var codespacesUrl = $"{uri.Scheme}://{options.Value.CodespaceName}-{uri.Port}.{options.Value.PortForwardingDomain}{uri.AbsolutePath}{uri.Query}"; return codespacesUrl; } }