在Sitecore 6.5中发布相关媒体项而不使用工作流

时间:2012-08-13 06:58:49

标签: sitecore

我们的客户希望在发布页面时自动发布相关的媒体项目。他们没有使用会使事情更简单的工作流程,所以我需要找到另一种方式。目前我已经创建了一个自定义发布管道处理器(如此blog post所示),其中我为Web数据库启用了历史存储,并从那里获取已更改项目的列表。在循环更改的项目时,我正在检查任何相关的媒体项目并发布它们。

这很好用,但我只想检查是否有任何需要注意的缺陷,或者是否有更好的方法可以做到这一点。有人有什么想法吗?

2 个答案:

答案 0 :(得分:1)

风险领域的输入:

  1. 如果编辑会话超过发布前30天
  2. ,则会删除历史记录存储中的条目
  3. 查找相关媒体项目涉及链接字段和富文本字段,可能有直接链接到媒体,这些可以处理并转换为格式正确的链接。
  4. 替代解决方案

    根据编辑者的Sitecore成熟度,另一个用户模型可能是您从“保存管道”中自动发布媒体项目。对于某些用户来说,这更容易理解,因为发布模型仅限于处理页面可见性。

答案 1 :(得分:1)

不使用工作流程的最佳方法是替换AddItemReferences工作流程中的PublishItem处理器。在那里,您可以添加将与原始项目一起发布的项目类型。

这是关于它的blog post Alex Shyba。

这是我的本地实现

public class AddItemReferences : Sitecore.Publishing.Pipelines.PublishItem.AddItemReferences
{
    private readonly static ILogger _logger = AppLogger.GetNamedLogger(typeof(AddItemReferences));

    protected override List<Item> GetItemReferences(PublishItemContext context)
    {
        Assert.ArgumentNotNull(context, "context");
        var list = new List<Item>();
        // calling base method which processes links from FileDropArea field
        list.AddRange(base.GetItemReferences(context));
        // adding our "own" related items
        list.AddRange(GetRelatedReferences(context));
        return list;
    }
    protected virtual List<Item> GetRelatedReferences(PublishItemContext context)
    {
        Assert.ArgumentNotNull(context, "context");
        var relatedReferenceList = new List<Item>();
        if (context.PublishOptions.Mode == PublishMode.SingleItem )
        {
            try
            {
                var sourceItem = context.PublishHelper.GetSourceItem(context.ItemId);
                if (sourceItem.Paths.IsContentItem)
                {
                    var itemLinks = sourceItem.Links.GetValidLinks();
                    ItemLink[] referers = Globals.LinkDatabase.GetReferers(sourceItem);

                    relatedReferenceList.AddRange(GetMediaItems(itemLinks));
                    relatedReferenceList.AddRange(GetAliases(referers));
                }
            }
            catch (Exception ex)
            {
                var options = context.PublishOptions;
                StringBuilder msg = new StringBuilder();
                msg.AppendLine("Publishing options");
                msg.AppendLine("Deep: " + options.Deep);
                msg.AppendLine("From date: " + options.FromDate);
                msg.AppendLine("Language: " + options.Language);
                msg.AppendLine("Mode: " + options.Mode);
                msg.AppendLine("PublishDate: " + options.PublishDate);
                msg.AppendLine("Targets: " + string.Join(",",options.PublishingTargets.ToArray()));
                msg.AppendLine("Republish all: " + options.RepublishAll);
                msg.AppendLine("Root item: " + options.RootItem);
                msg.AppendLine("Source database: " + options.SourceDatabase.Name);
                _logger.LogError(msg.ToString(), ex);       
            }
        }
        return relatedReferenceList;
    }

    private static IEnumerable<Item> GetMediaItems(ItemLink[] itemLinks)
    {
        foreach (var link in itemLinks)
        {
            var item = link.GetTargetItem();
            if (item == null)
                continue;

            if (item.Paths.IsMediaItem)
            {
                yield return item;
            }
        }
    }

    private static IEnumerable<Item> GetAliases(ItemLink[] referrers)
    {
        foreach (var link in referrers)
        {
            var item = link.GetSourceItem();
            if (item != null && IsAlias(item))
                yield return item;
        }
    }

    private static bool IsAlias(Item item)
    {
        return item.TemplateID.Guid == DataAccessSettings.Templates.AliasTemplateId;
    }
}