| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175 | using InABox.Configuration;using InABox.Core.Postable;using System;using System.Collections.Generic;using System.Linq;using System.Reflection;using System.Runtime;using System.Text;namespace InABox.Core{    public static class PosterUtils    {        private class EngineType        {            public Type Engine { get; set; }            public Type Entity { get; set; }            public Type Poster { get; set; }        }        private static EngineType[]? _posterEngines;        private static Type[]? _posters = null;        public static Type[] GetPosters()        {            _posters ??= CoreUtils.TypeList(                AppDomain.CurrentDomain.GetAssemblies(),                x => x.IsClass                    && !x.IsAbstract                    && !x.IsGenericType                    && x.HasInterface(typeof(IPoster<,>))).ToArray();            return _posters;        }        private static EngineType[] GetPosterEngines()        {            _posterEngines ??= CoreUtils.TypeList(                AppDomain.CurrentDomain.GetAssemblies(),                x => x.IsClass                    && !x.IsAbstract                    && x.GetTypeInfo().GenericTypeParameters.Length == 1                    && x.HasInterface(typeof(IPosterEngine<,,>))            ).Select(x => new EngineType            {                Engine = x,                Entity = x.GetInterfaceDefinition(typeof(IPosterEngine<,,>))!.GenericTypeArguments[0],                Poster = x.GetInterfaceDefinition(typeof(IPosterEngine<,,>))!.GenericTypeArguments[1].GetGenericTypeDefinition()            }).ToArray();            return _posterEngines;        }        private static PostableSettings FixPostableSettings<TPostable>(PostableSettings settings)            where TPostable : Entity, IPostable        {            if (string.IsNullOrWhiteSpace(settings.PostableType))            {                settings.PostableType = typeof(TPostable).EntityName();            }            return settings;        }        public static PostableSettings LoadPostableSettings<T>()            where T : Entity, IPostable        {            return FixPostableSettings<T>(new GlobalConfiguration<PostableSettings>(typeof(T).Name).Load());        }        public static void SavePostableSettings<T>(PostableSettings settings)            where T : Entity, IPostable        {            new GlobalConfiguration<PostableSettings>(typeof(T).Name).Save(FixPostableSettings<T>(settings));        }        private static TSettings FixPosterSettings<TPostable, TSettings>(TSettings settings)            where TPostable : IPostable            where TSettings : PosterSettings, new()        {            if (string.IsNullOrWhiteSpace(settings.PostableType))            {                settings.PostableType = typeof(TPostable).EntityName();            }            return settings;        }        private static MethodInfo _loadPosterSettingsMethod = typeof(PosterUtils).GetMethods(BindingFlags.Static | BindingFlags.Public)            .Where(x => x.Name == nameof(LoadPosterSettings) && x.IsGenericMethod)            .Single();        private static MethodInfo _savePosterSettingsMethod = typeof(PosterUtils).GetMethods(BindingFlags.Static | BindingFlags.Public)            .Where(x => x.Name == nameof(SavePosterSettings) && x.IsGenericMethod)            .Single();        public static TSettings LoadPosterSettings<TPostable, TSettings>()            where TPostable : IPostable            where TSettings : PosterSettings, new()        {            return FixPosterSettings<TPostable, TSettings>(new GlobalConfiguration<TSettings>(typeof(TPostable).Name).Load());        }        public static PosterSettings LoadPosterSettings(Type TPostable, Type TSettings)        {            return (_loadPosterSettingsMethod.MakeGenericMethod(TPostable, TSettings).Invoke(null, Array.Empty<object>()) as PosterSettings)!;        }        public static void SavePosterSettings<TPostable, TSettings>(TSettings settings)            where TPostable : IPostable            where TSettings : PosterSettings, new()        {            new GlobalConfiguration<TSettings>(typeof(TPostable).Name).Save(FixPosterSettings<TPostable, TSettings>(settings));        }        public static void SavePosterSettings(Type TPostable, Type TSettings, PosterSettings settings)        {            _savePosterSettingsMethod.MakeGenericMethod(TPostable, TSettings).Invoke(null, new object[] { settings });        }        /// <summary>        /// Get the <see cref="IPosterEngine{TPostable,TPoster,TSettings}"/> for <typeparamref name="T"/>        /// based on the current <see cref="PostableSettings"/> for <typeparamref name="T"/>.        /// </summary>        /// <typeparam name="T"></typeparam>        /// <returns></returns>        public static Type GetEngine<T>()            where T : Entity, IPostable, IRemotable, IPersistent, new()        {            var settings = LoadPostableSettings<T>();            if (string.IsNullOrWhiteSpace(settings.PosterType))            {                throw new MissingSettingsException(typeof(T));            }            var poster = GetPosters()?.FirstOrDefault(x => x.EntityName() == settings.PosterType)!;            var engines = GetPosterEngines().Where(x => poster.HasInterface(x.Poster)).ToList();            if (!engines.Any())            {                throw new Exception("No poster for the given settings.");            }            else if(engines.Count == 1)            {                return engines[0].Engine.MakeGenericType(typeof(T));            }            else            {                return engines.Single(x => x.Entity == typeof(T)).Engine.MakeGenericType(typeof(T));            }        }        public static IPosterEngine<T> CreateEngine<T>()            where T : Entity, IPostable, IRemotable, IPersistent, new()        {            var engine = GetEngine<T>();            return (Activator.CreateInstance(engine) as IPosterEngine<T>)!;        }        /// <summary>        /// Process <paramref name="model"/> with the currently set <see cref="IPosterEngine{TPostable, TPoster, TSettings}"/>        /// for <typeparamref name="T"/>.        /// </summary>        /// <typeparam name="T">The type of <paramref name="model"/> that needs to be processed.</typeparam>        /// <param name="model"></param>        /// <exception cref="EmptyPostException">If there are no items to post. In this case, nothing happens.</exception>        /// <exception cref="RepostedException">If any of the <typeparamref name="T"/> have already been processed. In this case, nothing happens.</exception>        /// <exception cref="MissingSettingsException">If the <see cref="PostableSettings"/> for <typeparamref name="T"/> do not exist.</exception>        /// <exception cref="PostCancelledException">If the post has been cancelled by the user.</exception>        /// <returns><see langword="null"/> if post was unsuccessful.</returns>        ///         public static IPostResult<T>? Process<T>(IDataModel<T> model)            where T : Entity, IPostable, IRemotable, IPersistent, new()        {            return CreateEngine<T>().Process(model);        }    }}
 |