Exemplo n.º 1
0
        public async Task Invoke(HttpContext context, IConfiguration configuration, IHttpContextAccessor httpContextAccessor)
        {
            string tenantIdentifier = context.Session.GetString("TenantId");

            if (string.IsNullOrEmpty(tenantIdentifier))
            {
                var apiKey = context.Request.Headers["X-Api-Key"].FirstOrDefault();
                if (string.IsNullOrEmpty(apiKey))
                {
                    return;
                }

                Guid apiKeyGuid;
                if (!Guid.TryParse(apiKey, out apiKeyGuid))
                {
                    return;
                }

                TenantRepository _tenentRepository = new TenantRepository(configuration, httpContextAccessor);
                string           tenantId          = await _tenentRepository.GetTenantId(apiKeyGuid);

                context.Session.SetString("TenantId", tenantId);
            }
            await next.Invoke(context);
        }
Exemplo n.º 2
0
        public async Task <List <Customer> > GetAll()
        {
            string tenantId = await _tenantRepository.GetTenantId();

            return(await _customerRepository.GetAllCustomers(tenantId));
        }