mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.3 KiB
30 lines
1.3 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using GraphQL;
|
|
using GraphQL.Server.Transports.AspNetCore;
|
|
using Microsoft.AspNetCore.Http;
|
|
using Microsoft.Extensions.DependencyInjection;
|
|
using Squidex.Domain.Apps.Entities;
|
|
using Squidex.Domain.Apps.Entities.Contents.GraphQL;
|
|
|
|
namespace Squidex.Web.GraphQL
|
|
{
|
|
public sealed class DynamicUserContextBuilder : IUserContextBuilder
|
|
{
|
|
private readonly ObjectFactory factory = ActivatorUtilities.CreateFactory(typeof(GraphQLExecutionContext), new[] { typeof(Context) });
|
|
|
|
public Task<IDictionary<string, object>> BuildUserContext(HttpContext httpContext)
|
|
{
|
|
var x = httpContext.RequestServices.GetRequiredService<IDocumentWriter>();
|
|
|
|
var executionContext = (GraphQLExecutionContext)factory(httpContext.RequestServices, new object[] { httpContext.Context() });
|
|
|
|
return Task.FromResult<IDictionary<string, object>>(executionContext);
|
|
}
|
|
}
|
|
}
|
|
|