4

使用 Glass Mapper V3,是否可以检查 Sitecore 项目是否支持特定的 Glass Mapper 类/接口?

鉴于这些课程

[SitecoreType]
public partial interface IPage : IGlassBase
{
  // ... some properties here ...
}

[SitecoreType]
public partial interface IRateableItem : IGlassBase
{
  // ... some properties here ...
}

我想做这样的事情

var context = SitecoreContext();
var item = context.GetCurrentItem<IRateableItem>();
if (item != null)
  // it's an item that is composed of the Rateable Item template

不幸的是,如果我这样做,我确实会返回一个 IRateableItem 类型的项目,而不管当前项目是否由该模板组成。

4

3 回答 3

4

另一种解决方案是创建一个在 ObjectConstruction 管道中运行的自定义任务。

像这样的东西:

public class LimitByTemplateTask : IObjectConstructionTask
{
    private static readonly Type _templateCheck = typeof (ITemplateCheck);

    public void Execute(ObjectConstructionArgs args)
    {
        if (args.Result != null)
            return;

        if ( _templateCheck.IsAssignableFrom(args.AbstractTypeCreationContext.RequestedType))
        {
            var scContext = args.AbstractTypeCreationContext as SitecoreTypeCreationContext;
            var config = args.Configuration as SitecoreTypeConfiguration;

            var template = scContext.SitecoreService.Database.GetTemplate(scContext.Item.TemplateID);

            //check to see if any base template matched the template for the requested type
            if (template.BaseTemplates.All(x => x.ID != config.TemplateId) && scContext.Item.TemplateID != config.TemplateId)
            {
                args.AbortPipeline();
            }
        }
    }
}


public interface ITemplateCheck{}

然后,您将更改您的 IRateableItem 接口以使其需要匹配并从 ITemplateCheck 继承的模板 ID:

[SitecoreType(TemplateId = "CF9B175D-872E-439A-B358-37A01155EEB1")]
public interface IRateableItem: ITemplateCheck, IGlassBase{}

最后,您需要在 GlassMapperScCustom 中使用 Castle IOC 容器注册新任务:

    public static void CastleConfig(IWindsorContainer container){
        var config = new Config();

        container.Register(
            Component.For<IObjectConstructionTask>().ImplementedBy<LimitByTemplateTask>(),
            );
        container.Install(new SitecoreInstaller(config));
    }

我没有机会对此进行测试,所以如果有任何问题,请告诉我。

于 2013-10-23T07:07:36.890 回答
2

我使用此代码来确定是否可以将项目加载为特定类型的 Glass 模型。我以您的 IRateableItem 类型为例:

public void Main()
{
    var item = Sitecore.Context.Item;

    if (item.TemplateID.Equals(GetSitecoreTypeTemplateId<IRateableItem>()))
    {
        // item is of the IRateableItem type
    }
}

private ID GetSitecoreTypeTemplateId<T>() where T : class
{
    // Get the GlassMapper context
    var context = GetGlassContext();

    // Retrieve the SitecoreTypeConfiguration for type T
    var sitecoreClass = context[typeof(T)] as SitecoreTypeConfiguration;

    return sitecoreClass.TemplateId;
}

private SitecoreService GetSitecoreService()
{
    return new SitecoreService(global::Sitecore.Context.Database);
}

private Glass.Mapper.Context GetGlassContext()
{
    return GetSitecoreService().GlassContext;
}

编辑:
添加此扩展方法,以便您可以确定模板是否继承自某个基本模板。

public static bool InheritsFrom(this TemplateItem templateItem, ID templateId)
{
    if (templateItem.ID == templateId)
    {
        return true;
    }

    foreach (var template in templateItem.BaseTemplates)
    {
        if (template.ID == templateId)
        {
            return true;
        }

        if (template.InheritsFrom(templateId))
        {
            return true;
        }
    }

    return false;
}

所以现在你可以这样做:

if (item.Template.InheritsFrom(GetSitecoreTypeTemplateId<IRateableItem>()))
{
  // item is of type IRateableItem
}
于 2013-10-23T08:13:18.620 回答
2

我也没有找到空检查的解决方案。但是你可以做的是:

首先将 TemplateId 添加到两个模型的 SitecoreType 属性:

[SitecoreType(TemplateId = "{your-template-id}")]

然后在您的代码中使用带有 InferType=true 参数的 GetCurrentItem<>() 方法:

 var context = SitecoreContext();
 var item = context.GetCurrentItem<IGlassBase>(InferType: true);
 if (item is IRateableItem)
  {
    var rateableItem = item as IRateableItem;
    // do more...
  }

通过添加 TemplateID 并使用 InferType:true 参数,Glass 将尝试根据 TemplateID 将项目映射到比 IGlassBase 更好的对象。

如果有更好的解决方案来解决这个问题,我也很感兴趣。

于 2013-10-22T22:12:50.960 回答