internal static TypeBuilder CriarTipo(string nomeDaDll)
        {
            var nomeDoModulo     = "DnEntidadeCustomizadaMap";
            var construtorDeTipo = BuilderClassUtil.CreateClass(typeof(object), nomeDaDll, nomeDoModulo);

            construtorDeTipo.CreateConstructor();
            return(construtorDeTipo);
        }
Example #2
0
        public void PopulateFeature(IEnumerable <ApplicationPart> parts, ControllerFeature feature)
        {
            var baseController = (Setup.ConfiguracoesGlobais.TipoGenericoDeControlador) ?? typeof(DnApiControlador <>);
            var entities       = Setup.ObterEntidades();

            foreach (var entity in entities)
            {
                if (entity.GetCustomAttribute <DnControladorApiAtributo>(true)?.GerarAutomaticamente == false)
                {
                    continue;
                }
                if (Setup.Controladores.ContainsKey(entity))
                {
                    continue;
                }

                if (entity.GetCustomAttribute <DnFormularioJsonAtributo>(true)?.EhSomenteLeitura == true)
                {
                    baseController = typeof(DnApiSomenteLeituraControlador <>);
                }

                var typeName = entity.Name + "Controller";
                if (feature.Controllers.Any(t => t.Name == typeName))
                {
                    throw new DesenvolvimentoIncorretoException($"TO controlador '{typeName}' Possui um nome que internamente é reservado. Por favor, altere o nome desse controlador.");
                }

                var parentClass = baseController.MakeGenericType(entity);
                var moduleName  = $"DnDynamicModule{entity.Name}";

                var dynamicClass = BuilderClassUtil.CreateClass(parentClass, typeName, moduleName);
                BuilderClassUtil.CreateConstructor(dynamicClass);
                var type = dynamicClass.CreateType() ?? throw new InvalidOperationException($"ControllerFactory not create {typeName}");

                var controllerType = type.GetTypeInfo();
                feature.Controllers.Add(controllerType);
                Setup.Controladores.Add(entity, controllerType);
            }
        }