151 lines
6.2 KiB
C#
151 lines
6.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using Microsoft.Extensions.Caching.Memory;
|
|
using Oqtane.Models;
|
|
using Oqtane.Shared;
|
|
using Oqtane.Themes;
|
|
|
|
namespace Oqtane.Repository
|
|
{
|
|
public class ThemeRepository : IThemeRepository
|
|
{
|
|
private readonly IMemoryCache _cache;
|
|
|
|
public ThemeRepository(IMemoryCache cache)
|
|
{
|
|
_cache = cache;
|
|
}
|
|
|
|
public IEnumerable<Theme> GetThemes()
|
|
{
|
|
return LoadThemes();
|
|
}
|
|
|
|
private List<Theme> LoadThemes()
|
|
{
|
|
// get module definitions
|
|
List<Theme> themes = _cache.GetOrCreate("themes", entry =>
|
|
{
|
|
entry.SlidingExpiration = TimeSpan.FromMinutes(30);
|
|
return LoadThemesFromAssemblies();
|
|
});
|
|
|
|
return themes;
|
|
}
|
|
|
|
private List<Theme> LoadThemesFromAssemblies()
|
|
{
|
|
List<Theme> themes = new List<Theme>();
|
|
|
|
// iterate through Oqtane theme assemblies
|
|
var assemblies = AppDomain.CurrentDomain.GetOqtaneAssemblies();
|
|
foreach (Assembly assembly in assemblies)
|
|
{
|
|
if (System.IO.File.Exists(Path.Combine(Path.GetDirectoryName(Assembly.GetEntryAssembly().Location), Utilities.GetTypeName(assembly.FullName) + ".dll")))
|
|
{
|
|
themes = LoadThemesFromAssembly(themes, assembly);
|
|
}
|
|
}
|
|
|
|
return themes;
|
|
}
|
|
|
|
private List<Theme> LoadThemesFromAssembly(List<Theme> themes, Assembly assembly)
|
|
{
|
|
Theme theme;
|
|
List<Type> themeTypes = new List<Type>();
|
|
|
|
Type[] themeControlTypes = assembly.GetTypes().Where(item => item.GetInterfaces().Contains(typeof(IThemeControl))).ToArray();
|
|
foreach (Type themeControlType in themeControlTypes)
|
|
{
|
|
// Check if type should be ignored
|
|
if (themeControlType.IsOqtaneIgnore() ||
|
|
themeControlType.GetInterfaces().Contains(typeof(ILayoutControl)) || // deprecated
|
|
themeControlType.GetInterfaces().Contains(typeof(IContainerControl))) continue;
|
|
|
|
// create namespace root typename
|
|
string qualifiedThemeType = themeControlType.Namespace + ", " + themeControlType.Assembly.GetName().Name;
|
|
|
|
int index = themes.FindIndex(item => item.ThemeName == qualifiedThemeType);
|
|
if (index == -1)
|
|
{
|
|
// Find all types in the assembly with the same namespace root
|
|
themeTypes = assembly.GetTypes()
|
|
.Where(item => !item.IsOqtaneIgnore())
|
|
.Where(item => item.Namespace != null)
|
|
.Where(item => item.Namespace == themeControlType.Namespace || item.Namespace.StartsWith(themeControlType.Namespace + "."))
|
|
.ToList();
|
|
|
|
// determine if this theme implements ITheme
|
|
Type themetype = themeTypes
|
|
.FirstOrDefault(item => item.GetInterfaces().Contains(typeof(ITheme)));
|
|
if (themetype != null)
|
|
{
|
|
var themeobject = Activator.CreateInstance(themetype) as ITheme;
|
|
theme = themeobject.Theme;
|
|
}
|
|
else
|
|
{
|
|
theme = new Theme
|
|
{
|
|
Name = themeControlType.Name,
|
|
Version = new Version(1, 0, 0).ToString()
|
|
};
|
|
}
|
|
// set internal properties
|
|
theme.ThemeName = qualifiedThemeType;
|
|
theme.Themes = new List<ThemeControl>();
|
|
theme.Containers = new List<ThemeControl>();
|
|
theme.AssemblyName = assembly.FullName.Split(",")[0];
|
|
if (string.IsNullOrEmpty(theme.PackageName))
|
|
{
|
|
theme.PackageName = Utilities.GetTypeName(theme.ThemeName);
|
|
}
|
|
themes.Add(theme);
|
|
index = themes.FindIndex(item => item.ThemeName == qualifiedThemeType);
|
|
}
|
|
theme = themes[index];
|
|
|
|
var themecontrolobject = Activator.CreateInstance(themeControlType) as IThemeControl;
|
|
theme.Themes.Add(
|
|
new ThemeControl
|
|
{
|
|
TypeName = themeControlType.FullName + ", " + themeControlType.Assembly.GetName().Name,
|
|
Name = theme.Name + " - " + ((string.IsNullOrEmpty(themecontrolobject.Name)) ? Utilities.GetTypeNameLastSegment(themeControlType.FullName, 0) : themecontrolobject.Name),
|
|
Thumbnail = themecontrolobject.Thumbnail,
|
|
Panes = (!string.IsNullOrEmpty(themecontrolobject.Panes)) ? themecontrolobject.Panes : PaneNames.Admin
|
|
}
|
|
);
|
|
|
|
// containers
|
|
Type[] containertypes = themeTypes
|
|
.Where(item => item.GetInterfaces().Contains(typeof(IContainerControl))).ToArray();
|
|
foreach (Type containertype in containertypes)
|
|
{
|
|
var containerobject = Activator.CreateInstance(containertype) as IThemeControl;
|
|
theme.Containers.Add(
|
|
new ThemeControl
|
|
{
|
|
TypeName = containertype.FullName + ", " + themeControlType.Assembly.GetName().Name,
|
|
Name = (string.IsNullOrEmpty(containerobject.Name)) ? Utilities.GetTypeNameLastSegment(containertype.FullName, 0) : containerobject.Name,
|
|
Thumbnail = containerobject.Thumbnail,
|
|
Panes = ""
|
|
}
|
|
);
|
|
}
|
|
|
|
themes[index] = theme;
|
|
}
|
|
return themes;
|
|
}
|
|
|
|
public void DeleteTheme(string ThemeName)
|
|
{
|
|
_cache.Remove("themes");
|
|
}
|
|
}
|
|
}
|