Files
server/util/Setup/AppIdBuilder.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
837 B
C#
Raw Normal View History

2017-10-23 22:45:59 -04:00
using System;
using System.IO;
namespace Bit.Setup
{
public class AppIdBuilder
{
2018-08-30 11:35:44 -04:00
private readonly Context _context;
public AppIdBuilder(Context context)
2017-10-23 22:45:59 -04:00
{
2018-08-30 11:35:44 -04:00
_context = context;
2017-10-23 22:45:59 -04:00
}
public void Build()
{
2018-08-30 11:35:44 -04:00
var model = new TemplateModel
{
Url = _context.Config.Url
};
2019-03-12 10:26:14 -04:00
Helpers.WriteLine(_context, "Building FIDO U2F app id.");
2017-10-23 22:45:59 -04:00
Directory.CreateDirectory("/bitwarden/web/");
2018-08-30 11:35:44 -04:00
var template = Helpers.ReadTemplate("AppId");
using (var sw = File.CreateText("/bitwarden/web/app-id.json"))
2017-10-23 22:45:59 -04:00
{
2018-08-30 11:35:44 -04:00
sw.Write(template(model));
2017-10-23 22:45:59 -04:00
}
}
2018-08-30 11:35:44 -04:00
public class TemplateModel
{
public string Url { get; set; }
}
2017-10-23 22:45:59 -04:00
}
}