using System.Collections.Generic; using System.Linq; using System.Net.Http; using System.Threading.Tasks; using Oqtane.Documentation; using Oqtane.Models; using Oqtane.Shared; namespace Oqtane.Services { [PrivateApi("Don't show in the documentation, as everything should use the Interface")] public class ThemeService : ServiceBase, IThemeService { public ThemeService(HttpClient http, SiteState siteState) : base(http, siteState) { } private string ApiUrl => CreateApiUrl("Theme"); public async Task> GetThemesAsync() { List themes = await GetJsonAsync>(ApiUrl); return themes.OrderBy(item => item.Name).ToList(); } public async Task GetThemeAsync(int themeId, int siteId) { return await GetJsonAsync($"{ApiUrl}/{themeId}?siteid={siteId}"); } public List GetThemeControls(List themes) { return themes.SelectMany(item => item.Themes).OrderBy(item => item.Name).ToList(); } //[Obsolete("This method is deprecated.", false)] public List GetLayoutControls(List themes, string themeName) { return null; } public List GetContainerControls(List themes, string themeName) { return themes.Where(item => Utilities.GetTypeName(themeName).StartsWith(Utilities.GetTypeName(item.ThemeName))) .SelectMany(item => item.Containers).OrderBy(item => item.Name).ToList(); } public async Task UpdateThemeAsync(Theme theme) { await PutJsonAsync($"{ApiUrl}/{theme.ThemeId}", theme); } public async Task DeleteThemeAsync(string themeName) { await DeleteAsync($"{ApiUrl}/{themeName}"); } public async Task CreateThemeAsync(Theme theme) { return await PostJsonAsync($"{ApiUrl}", theme); } public async Task> GetThemeTemplatesAsync() { List