Files
server/util/Setup/AppIdBuilder.cs
Justin Baur 48060b0867 [PM-35150] Make Setup testable and add test for install (#7445)
* Make `Setup` testable and add test for install

* Update util/Setup/Program.cs

Co-authored-by: Derek Nance <dnance@bitwarden.com>

* Update other callsites

---------

Co-authored-by: Derek Nance <dnance@bitwarden.com>
2026-04-17 10:47:41 -04:00

37 lines
902 B
C#

// FIXME: Update this file to be null safe and then delete the line below
#nullable disable
namespace Bit.Setup;
public class AppIdBuilder
{
private readonly Context _context;
public AppIdBuilder(Context context)
{
_context = context;
}
public void Build()
{
var model = new TemplateModel
{
Url = _context.Config.Url
};
// Needed for backwards compatability with migrated U2F tokens.
Helpers.WriteLine(_context, "Building FIDO U2F app id.");
Directory.CreateDirectory($"{_context.App.RootDirectory}/web/");
var template = Helpers.ReadTemplate("AppId");
using (var sw = File.CreateText($"{_context.App.RootDirectory}/web/app-id.json"))
{
sw.Write(template(model));
}
}
public class TemplateModel
{
public string Url { get; set; }
}
}