114 lines
4.3 KiB
C#
114 lines
4.3 KiB
C#
using Oqtane.Models;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Net.Http;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.AspNetCore.Components;
|
|
using System.Reflection;
|
|
using System;
|
|
using Oqtane.Shared;
|
|
|
|
namespace Oqtane.Services
|
|
{
|
|
public class ThemeService : ServiceBase, IThemeService
|
|
{
|
|
private readonly HttpClient http;
|
|
private readonly SiteState sitestate;
|
|
private readonly NavigationManager NavigationManager;
|
|
|
|
public ThemeService(HttpClient http, SiteState sitestate, NavigationManager NavigationManager)
|
|
{
|
|
this.http = http;
|
|
this.sitestate = sitestate;
|
|
this.NavigationManager = NavigationManager;
|
|
}
|
|
|
|
private string apiurl
|
|
{
|
|
get { return CreateApiUrl(sitestate.Alias, NavigationManager.Uri, "Theme"); }
|
|
}
|
|
|
|
public async Task<List<Theme>> GetThemesAsync()
|
|
{
|
|
List<Theme> themes = await http.GetJsonAsync<List<Theme>>(apiurl);
|
|
|
|
// get list of loaded assemblies
|
|
Assembly[] assemblies = AppDomain.CurrentDomain.GetAssemblies();
|
|
|
|
foreach (Theme theme in themes)
|
|
{
|
|
if (theme.Dependencies != "")
|
|
{
|
|
foreach (string dependency in theme.Dependencies.Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries))
|
|
{
|
|
string assemblyname = dependency.Replace(".dll", "");
|
|
if (assemblies.Where(item => item.FullName.StartsWith(assemblyname + ",")).FirstOrDefault() == null)
|
|
{
|
|
// download assembly from server and load
|
|
var bytes = await http.GetByteArrayAsync(apiurl + "/" + assemblyname + ".dll");
|
|
Assembly.Load(bytes);
|
|
}
|
|
}
|
|
}
|
|
if (assemblies.Where(item => item.FullName.StartsWith(theme.AssemblyName + ",")).FirstOrDefault() == null)
|
|
{
|
|
// download assembly from server and load
|
|
var bytes = await http.GetByteArrayAsync(apiurl + "/" + theme.AssemblyName + ".dll");
|
|
Assembly.Load(bytes);
|
|
}
|
|
}
|
|
|
|
return themes.OrderBy(item => item.Name).ToList();
|
|
}
|
|
|
|
public Dictionary<string, string> GetThemeTypes(List<Theme> Themes)
|
|
{
|
|
var selectableThemes = new Dictionary<string, string>();
|
|
foreach (Theme theme in Themes)
|
|
{
|
|
foreach (string themecontrol in theme.ThemeControls.Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries))
|
|
{
|
|
selectableThemes.Add(themecontrol, theme.Name + " - " + Utilities.GetTypeNameClass(themecontrol));
|
|
}
|
|
}
|
|
return selectableThemes;
|
|
}
|
|
|
|
public Dictionary<string, string> GetPaneLayoutTypes(List<Theme> Themes)
|
|
{
|
|
var selectablePaneLayouts = new Dictionary<string, string>();
|
|
foreach (Theme theme in Themes)
|
|
{
|
|
foreach (string panelayout in theme.PaneLayouts.Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries))
|
|
{
|
|
selectablePaneLayouts.Add(panelayout, theme.Name + " - " + @Utilities.GetTypeNameClass(panelayout));
|
|
}
|
|
}
|
|
return selectablePaneLayouts;
|
|
}
|
|
|
|
public Dictionary<string, string> GetContainerTypes(List<Theme> Themes)
|
|
{
|
|
var selectableContainers = new Dictionary<string, string>();
|
|
foreach (Theme theme in Themes)
|
|
{
|
|
foreach (string container in theme.ContainerControls.Split(new char[] { ';' }, StringSplitOptions.RemoveEmptyEntries))
|
|
{
|
|
selectableContainers.Add(container, theme.Name + " - " + @Utilities.GetTypeNameClass(container));
|
|
}
|
|
}
|
|
return selectableContainers;
|
|
}
|
|
|
|
public async Task InstallThemesAsync()
|
|
{
|
|
await http.GetJsonAsync<List<string>>(apiurl + "/install");
|
|
}
|
|
|
|
public async Task DeleteThemeAsync(string ThemeName)
|
|
{
|
|
await http.DeleteAsync(apiurl + "/" + ThemeName);
|
|
}
|
|
}
|
|
}
|