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.
109 lines
2.8 KiB
109 lines
2.8 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Squidex.Infrastructure;
|
|
using Squidex.Infrastructure.Json.Objects;
|
|
using Squidex.Infrastructure.Queries;
|
|
|
|
namespace Squidex.Domain.Apps.Entities
|
|
{
|
|
public record Q
|
|
{
|
|
public static Q Empty => new Q();
|
|
|
|
public ClrQuery Query { get; init; } = new ClrQuery();
|
|
|
|
public IReadOnlyList<DomainId>? Ids { get; init; }
|
|
|
|
public DomainId Referencing { get; init; }
|
|
|
|
public DomainId Reference { get; init; }
|
|
|
|
public string? ODataQuery { get; init; }
|
|
|
|
public string? JsonQueryString { get; init; }
|
|
|
|
public Query<IJsonValue>? JsonQuery { get; init; }
|
|
|
|
public RefToken? CreatedBy { get; init; }
|
|
|
|
public bool NoTotal { get; init; }
|
|
|
|
private Q()
|
|
{
|
|
}
|
|
|
|
public Q WithQuery(ClrQuery query)
|
|
{
|
|
Guard.NotNull(query, nameof(query));
|
|
|
|
return this with { Query = query };
|
|
}
|
|
|
|
public Q WithoutTotal(bool value = true)
|
|
{
|
|
return this with { NoTotal = value };
|
|
}
|
|
|
|
public Q WithODataQuery(string? query)
|
|
{
|
|
return this with { ODataQuery = query };
|
|
}
|
|
|
|
public Q WithJsonQuery(string? query)
|
|
{
|
|
return this with { JsonQueryString = query };
|
|
}
|
|
|
|
public Q WithJsonQuery(Query<IJsonValue>? query)
|
|
{
|
|
return this with { JsonQuery = query };
|
|
}
|
|
|
|
public Q WithReferencing(DomainId id)
|
|
{
|
|
return this with { Referencing = id };
|
|
}
|
|
|
|
public Q WithReference(DomainId id)
|
|
{
|
|
return this with { Reference = id };
|
|
}
|
|
|
|
public Q WithIds(params DomainId[] ids)
|
|
{
|
|
return this with { Ids = ids?.ToList() };
|
|
}
|
|
|
|
public Q WithIds(IEnumerable<DomainId> ids)
|
|
{
|
|
return this with { Ids = ids?.ToList() };
|
|
}
|
|
|
|
public Q WithIds(string? ids)
|
|
{
|
|
if (string.IsNullOrWhiteSpace(ids))
|
|
{
|
|
return this with { Ids = null };
|
|
}
|
|
|
|
var idsList = new List<DomainId>();
|
|
|
|
if (!string.IsNullOrEmpty(ids))
|
|
{
|
|
foreach (var id in ids.Split(','))
|
|
{
|
|
idsList.Add(DomainId.Create(id));
|
|
}
|
|
}
|
|
|
|
return this with { Ids = idsList };
|
|
}
|
|
}
|
|
}
|
|
|