Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 85 additions & 0 deletions src/Gemstone.Data/Model/ClaimQueryRestrictionAttribute.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,85 @@
//******************************************************************************************************
// ClaimQueryRestrictionAttribute.cs - Gbtc
//
// Copyright © 2026, Grid Protection Alliance. All Rights Reserved.
//
// Licensed to the Grid Protection Alliance (GPA) under one or more contributor license agreements. See
// the NOTICE file distributed with this work for additional information regarding copyright ownership.
// The GPA licenses this file to you under the MIT License (MIT), the "License"; you may
// not use this file except in compliance with the License. You may obtain a copy of the License at:
//
// http://opensource.org/licenses/MIT
//
// Unless agreed to in writing, the subject software distributed under the License is distributed on an
// "AS-IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Refer to the
// License for the specific language governing permissions and limitations.
//
// Code Modification History:
// ----------------------------------------------------------------------------------------------------
// 01/09/2026 - J. Ritchie Carroll
// Generated original version of source code.
//
//******************************************************************************************************

using System;
using System.Data;

namespace Gemstone.Data.Model;

/// <summary>
/// Defines an attribute that will mark a modeled table with a record restriction that applies
/// to secure query functions for a modeled <see cref="SecureTableOperations{T}"/>.
/// </summary>
[AttributeUsage(AttributeTargets.Class)]
public sealed class ClaimQueryRestrictionAttribute : Attribute
{
/// <summary>
/// Defines filter SQL expression for restriction as a composite format string - does not
/// include WHERE. When escaping is needed for field names, use standard ANSI quotes.
/// </summary>
/// <remarks>
/// <para>
/// Each indexed parameter, e.g., "{0}", in the composite format string will be converted into
/// query parameters where each of the corresponding values in the <see cref="Claims"/>
/// collection will be applied as <see cref="IDbDataParameter"/> values to an executed
/// <see cref="IDbCommand"/> query.
/// </para>
/// <para>
/// If needed, field names that are escaped with standard ANSI quotes in the filter expression
/// will be updated to reflect what is defined in the user model.
/// </para>
/// </remarks>
public readonly string FilterExpression;

/// <summary>
/// Defines claims which will be checked for parameter values
/// </summary>
public readonly string[] Claims;

/// <summary>
/// Creates a new parameterized <see cref="ClaimQueryRestrictionAttribute"/> with the specified
/// SQL filter expression and parameters.
/// </summary>
/// <param name="filterExpression">
/// Filter SQL expression for restriction as a composite format string - does not include WHERE.
/// When escaping is needed for field names, use standard ANSI quotes.
/// </param>
/// <param name="claims">Claims to use for parameter values.</param>
/// <remarks>
/// <para>
/// Each indexed parameter, e.g., "{0}", in the composite format <paramref name="filterExpression"/>
/// will be converted into query parameters where each of the corresponding values in the
/// <paramref name="claims"/> collection will retrieved and applied as <see cref="IDbDataParameter"/>
/// values to an executed <see cref="IDbCommand"/> query.
/// </para>
/// <para>
/// If needed, field names that are escaped with standard ANSI quotes in the filter expression
/// will be updated to reflect what is defined in the user model.
/// </para>
/// </remarks>
public ClaimQueryRestrictionAttribute(string filterExpression, params string[] claims)
{
FilterExpression = filterExpression ?? throw new ArgumentNullException(nameof(filterExpression));
Claims = claims ?? throw new ArgumentNullException(nameof(claims));
}
}
Loading
Loading