62 lines
2.0 KiB
C#
62 lines
2.0 KiB
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using Microsoft.Framework.Internal;
|
|
|
|
namespace Microsoft.AspNet.Mvc.ActionConstraints
|
|
{
|
|
/// <summary>
|
|
/// A default implementation of <see cref="IActionConstraintProvider"/>.
|
|
/// </summary>
|
|
/// <remarks>
|
|
/// This provider is able to provide an <see cref="IActionConstraint"/> instance when the
|
|
/// <see cref="IActionConstraintMetadata"/> implements <see cref="IActionConstraint"/> or
|
|
/// <see cref="IActionConstraintFactory"/>/
|
|
/// </remarks>
|
|
public class DefaultActionConstraintProvider : IActionConstraintProvider
|
|
{
|
|
/// <inheritdoc />
|
|
public int Order
|
|
{
|
|
get { return DefaultOrder.DefaultFrameworkSortOrder; }
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void OnProvidersExecuting([NotNull] ActionConstraintProviderContext context)
|
|
{
|
|
foreach (var item in context.Results)
|
|
{
|
|
ProvideConstraint(item, context.HttpContext.RequestServices);
|
|
}
|
|
}
|
|
|
|
/// <inheritdoc />
|
|
public void OnProvidersExecuted([NotNull] ActionConstraintProviderContext context)
|
|
{
|
|
}
|
|
|
|
private void ProvideConstraint(ActionConstraintItem item, IServiceProvider services)
|
|
{
|
|
// Don't overwrite anything that was done by a previous provider.
|
|
if (item.Constraint != null)
|
|
{
|
|
return;
|
|
}
|
|
|
|
var constraint = item.Metadata as IActionConstraint;
|
|
if (constraint != null)
|
|
{
|
|
item.Constraint = constraint;
|
|
return;
|
|
}
|
|
|
|
var factory = item.Metadata as IActionConstraintFactory;
|
|
if (factory != null)
|
|
{
|
|
item.Constraint = factory.CreateInstance(services);
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
} |