using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading.Tasks; using Oqtane.Models; using Oqtane.Shared; namespace Oqtane.Services { public class ThemeService : ServiceBase, IThemeService { private readonly SiteState _siteState; public ThemeService(HttpClient http, SiteState siteState) : base(http) { _siteState = siteState; } private string ApiUrl => CreateApiUrl(_siteState.Alias, "Theme"); public async Task> GetThemesAsync() { List themes = await GetJsonAsync>(ApiUrl); return themes.OrderBy(item => item.Name).ToList(); } public List GetThemeControls(List themes) { return themes.SelectMany(item => item.Themes).ToList(); } public List GetLayoutControls(List themes, string themeName) { return themes.Where(item => Utilities.GetTypeName(themeName).StartsWith(Utilities.GetTypeName(item.ThemeName))) .SelectMany(item => item.Layouts).ToList(); } public List GetContainerControls(List themes, string themeName) { return themes.Where(item => Utilities.GetTypeName(themeName).StartsWith(Utilities.GetTypeName(item.ThemeName))) .SelectMany(item => item.Containers).ToList(); } public async Task InstallThemesAsync() { await GetJsonAsync>($"{ApiUrl}/install"); } public async Task DeleteThemeAsync(string themeName) { await DeleteAsync($"{ApiUrl}/{themeName}"); } } }