我想构建一个Sitecore管道处理器,它可以在上传时获取媒体项的ID,并将该ID保存到第三方应用程序使用的现有自定义数据库中。
我无法找到有关如何执行操作的任何操作方法或示例?
我正在使用Sitecore 8.0 Update 5和我的代码的MVC结构。
答案 0 :(得分:5)
您可以检查uiUpload
管道,但不会针对以编程方式创建的项目触发,即只有当用户通过CMS界面上传项目时才会触发。
创建一个新的处理器类:
public class ExternalSystemProcessor
{
public void Process(UploadArgs args)
{
foreach (Item file in args.UploadedItems.Where(file => file.Paths.IsMediaItem))
{
// Custom code here
SaveToExternalSystem(file.ID);
}
}
}
然后在默认保存处理器之后修补:
<configuration xmlns:patch="http://www.sitecore.net/xmlconfig/" xmlns:set="http://www.sitecore.net/xmlconfig/set/">
<sitecore>
<processors>
<uiUpload>
<processor type="MyProject.Custom.Pipelines.ExternalSystemProcessor, MyProject.Custom" mode="on"
patch:after="*[@type='Sitecore.Pipelines.Upload.Save, Sitecore.Kernel']" />
</uiUpload>
</processors>
</sitecore>
</configuration>
答案 1 :(得分:1)
我不记得在将新项目上传到媒体库时会执行的任何管道,但您应该能够使用item:created
事件。
只需检查args(ItemCreatedEventArgs
)中的项目是否为媒体项目并执行您的代码。
public void OnItemCreated(object sender, EventArgs args)
{
var createdArgs = Event.ExtractParameter(args, 0) as ItemCreatedEventArgs;
if (createdArgs != null)
{
if (createdArgs.Item != null)
{
...
}
}
}