btcpayserver/BTCPayServer/Controllers/HomeController.cs

175 lines
6.8 KiB
C#
Raw Normal View History

2020-06-29 04:44:35 +02:00
using System;
using System.Collections.Generic;
2017-09-13 08:47:34 +02:00
using System.Diagnostics;
2020-06-28 10:55:27 +02:00
using System.IO;
using System.Linq;
2020-06-28 10:55:27 +02:00
using System.Net.Http;
2017-09-13 08:47:34 +02:00
using System.Threading.Tasks;
using BTCPayServer.Abstractions.Constants;
2020-06-28 10:55:27 +02:00
using BTCPayServer.Data;
using BTCPayServer.HostedServices;
2017-09-13 08:47:34 +02:00
using BTCPayServer.Models;
using BTCPayServer.Models.StoreViewModels;
2020-06-28 10:55:27 +02:00
using BTCPayServer.Security;
using BTCPayServer.Services;
using BTCPayServer.Services.Apps;
2020-06-28 10:55:27 +02:00
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Hosting;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Identity;
2020-06-28 10:55:27 +02:00
using Microsoft.AspNetCore.Mvc;
2020-03-18 12:08:09 +01:00
using Microsoft.Extensions.FileProviders;
2020-06-28 10:55:27 +02:00
using NBitcoin;
using NBitcoin.Payment;
using Newtonsoft.Json;
using Newtonsoft.Json.Linq;
2017-09-13 08:47:34 +02:00
namespace BTCPayServer.Controllers
{
public class HomeController : Controller
{
private readonly CssThemeManager _cachedServerSettings;
2020-03-18 12:08:09 +01:00
private readonly IFileProvider _fileProvider;
2018-12-03 15:57:43 +01:00
public IHttpClientFactory HttpClientFactory { get; }
public LanguageService LanguageService { get; }
2020-06-28 10:55:27 +02:00
SignInManager<ApplicationUser> SignInManager { get; }
2018-12-03 15:57:43 +01:00
2020-06-28 10:55:27 +02:00
public HomeController(IHttpClientFactory httpClientFactory,
CssThemeManager cachedServerSettings,
2020-03-18 12:08:09 +01:00
IWebHostEnvironment webHostEnvironment,
LanguageService languageService,
SignInManager<ApplicationUser> signInManager)
2018-12-03 15:57:43 +01:00
{
HttpClientFactory = httpClientFactory;
_cachedServerSettings = cachedServerSettings;
LanguageService = languageService;
2020-03-18 12:08:09 +01:00
_fileProvider = webHostEnvironment.WebRootFileProvider;
SignInManager = signInManager;
2018-12-03 15:57:43 +01:00
}
private async Task<ViewResult> GoToApp(string appId, AppType? appType)
2017-09-13 08:47:34 +02:00
{
if (appType.HasValue && !string.IsNullOrEmpty(appId))
{
this.HttpContext.Response.Headers.Remove("Onion-Location");
switch (appType.Value)
{
case AppType.Crowdfund:
{
2020-06-28 10:55:27 +02:00
var serviceProvider = HttpContext.RequestServices;
var controller = (AppsPublicController)serviceProvider.GetService(typeof(AppsPublicController));
controller.Url = Url;
controller.ControllerContext = ControllerContext;
var res = await controller.ViewCrowdfund(appId, null) as ViewResult;
if (res != null)
{
res.ViewName = $"/Views/AppsPublic/ViewCrowdfund.cshtml";
return res; // return
}
2020-06-28 10:55:27 +02:00
break;
}
case AppType.PointOfSale:
{
2020-06-28 10:55:27 +02:00
var serviceProvider = HttpContext.RequestServices;
var controller = (AppsPublicController)serviceProvider.GetService(typeof(AppsPublicController));
controller.Url = Url;
controller.ControllerContext = ControllerContext;
var res = await controller.ViewPointOfSale(appId) as ViewResult;
if (res != null)
{
res.ViewName = $"/Views/AppsPublic/{res.ViewName}.cshtml";
return res; // return
}
2020-06-28 10:55:27 +02:00
break;
}
}
}
return null;
}
public async Task<IActionResult> Index()
{
if (_cachedServerSettings.FirstRun)
{
return RedirectToAction(nameof(AccountController.Register), "Account");
}
var matchedDomainMapping = _cachedServerSettings.DomainToAppMapping.FirstOrDefault(item =>
item.Domain.Equals(Request.Host.Host, StringComparison.InvariantCultureIgnoreCase));
if (matchedDomainMapping != null)
{
2020-06-28 10:55:27 +02:00
return await GoToApp(matchedDomainMapping.AppId, matchedDomainMapping.AppType) ?? GoToHome();
}
2020-06-28 10:55:27 +02:00
return await GoToApp(_cachedServerSettings.RootAppId, _cachedServerSettings.RootAppType) ?? GoToHome();
}
private IActionResult GoToHome()
{
if (SignInManager.IsSignedIn(User))
return View("Home");
else
return RedirectToAction(nameof(AccountController.Login), "Account");
2017-09-13 08:47:34 +02:00
}
[Route("misc/lang")]
[Authorize(AuthenticationSchemes = AuthenticationSchemes.Cookie)]
public IActionResult Languages()
{
return Json(LanguageService.GetLanguages(), new JsonSerializerSettings() { Formatting = Formatting.Indented });
}
2018-12-03 15:57:43 +01:00
2020-03-18 12:08:09 +01:00
[Route("swagger/v1/swagger.json")]
2020-06-28 10:55:27 +02:00
[Authorize(AuthenticationSchemes = AuthenticationSchemes.Cookie + "," + AuthenticationSchemes.Greenfield)]
2020-03-18 12:08:09 +01:00
public async Task<IActionResult> Swagger()
{
JObject json = new JObject();
var directoryContents = _fileProvider.GetDirectoryContents("swagger/v1");
foreach (IFileInfo fi in directoryContents)
{
await using var stream = fi.CreateReadStream();
using var reader = new StreamReader(fi.CreateReadStream());
json.Merge(JObject.Parse(await reader.ReadToEndAsync()));
}
2020-03-18 12:08:09 +01:00
var servers = new JArray();
servers.Add(new JObject(new JProperty("url", HttpContext.Request.GetAbsoluteRoot())));
json["servers"] = servers;
return Json(json);
}
[Route("docs")]
[Authorize(AuthenticationSchemes = AuthenticationSchemes.Cookie)]
2020-03-18 12:08:09 +01:00
public IActionResult SwaggerDocs()
{
return View();
}
[Route("recovery-seed-backup")]
[Authorize(AuthenticationSchemes = AuthenticationSchemes.Cookie)]
public IActionResult RecoverySeedBackup(RecoverySeedBackupViewModel vm)
{
return View("RecoverySeedBackup", vm);
}
[HttpPost]
[Route("postredirect-callback-test")]
public ActionResult PostRedirectCallbackTestpage(IFormCollection data)
{
var list = data.Keys.Aggregate(new Dictionary<string, string>(), (res, key) =>
{
res.Add(key, data[key]);
return res;
});
return Json(list);
}
public IActionResult Error()
{
return View(new ErrorViewModel { RequestId = Activity.Current?.Id ?? HttpContext.TraceIdentifier });
}
2017-09-13 08:47:34 +02:00
}
}