40 lines
1.1 KiB
C#
40 lines
1.1 KiB
C#
using Oqtane.Models;
|
|
using System.Threading.Tasks;
|
|
using System.Net.Http;
|
|
using System.Linq;
|
|
using Microsoft.AspNetCore.Components;
|
|
using System.Collections.Generic;
|
|
using Oqtane.Shared;
|
|
|
|
namespace Oqtane.Services
|
|
{
|
|
public class InstallationService : ServiceBase, IInstallationService
|
|
{
|
|
private readonly HttpClient http;
|
|
private readonly SiteState sitestate;
|
|
private readonly IUriHelper urihelper;
|
|
|
|
public InstallationService(HttpClient http, SiteState sitestate, IUriHelper urihelper)
|
|
{
|
|
this.http = http;
|
|
this.sitestate = sitestate;
|
|
this.urihelper = urihelper;
|
|
}
|
|
|
|
private string apiurl
|
|
{
|
|
get { return CreateApiUrl(sitestate.Alias, urihelper.GetAbsoluteUri(), "Installation"); }
|
|
}
|
|
|
|
public async Task<GenericResponse> IsInstalled()
|
|
{
|
|
return await http.GetJsonAsync<GenericResponse>(apiurl + "/installed");
|
|
}
|
|
|
|
public async Task<GenericResponse> Install(string connectionstring)
|
|
{
|
|
return await http.PostJsonAsync<GenericResponse>(apiurl, connectionstring);
|
|
}
|
|
}
|
|
}
|