gpt4 book ai didi

java - 如何在工作流程步骤中访问 Assets

转载 作者:行者123 更新时间:2023-11-30 03:50:56 25 4
gpt4 key购买 nike

我正在尝试为DAM更新 Assets 编写一个工作流程处理步骤,以便将上传的 Assets 发送到外部服务,该服务将修改该 Assets ,然后修改后的 Assets 可以发送到元数据提取步骤。因此,我将流程步骤添加到 DAM 更新 Assets 中,如下所示:

enter image description here

到目前为止,我的代码如下所示:

public void execute(WorkItem item, WorkflowSession wfsession,MetaDataMap args) throws WorkflowException {
try
{
log.info("Here2 in execute method"); //ensure that the execute method is invoked

final Map<String, Object> map = new HashMap<String, Object>();
map.put( "user.jcr.session", wfsession.getSession());

ResourceResolver rr = resolverFactory.getResourceResolver(map);
String path = item.getWorkflowData().getPayload().toString();
log.info("Here2 path: " + path);
Resource resource = rr.getResource(path);
log.info("Here2 resource: " + resource);
InputStream is = resource.adaptTo(InputStream.class);
log.info("Here2 assets IS: " + is);
}

catch (Exception e)
{
log.info("Here Error");
e.printStackTrace();
}
}

这是我上传 Assets 时在日志中看到的内容:

执行方法中的Here2这里2路径:/content/dam/photo1.JPG/jcr:content/renditions/original这里2 Assets :null

问题

  • 我的外部服务有一个通过 HTTP 接受请求的 API。我应该如何将 Assets 发送到外部服务?
  • 一旦外部服务修改了 Assets ,我应该怎么做才能让元数据提取步骤读取修改后的 Assets 而不是原始 Assets ?

最佳答案

为了通过 HTTP 访问外部服务,您必须编写一个客户端。 CQ提供commons-httpclient捆绑,您可以使用它来访问该服务。可以找到该库的文档 here 。我不知道服务是否期望使用 PUT 或 POST 发送文件,但 httpclient 提供了所有这些方法。您所要做的就是提供适当的InputStream。将您的资源调整为 Rendition并使用getStream()方法获取InputStream

当您从网络服务获取修改后的资源时,您需要替换原始资源:

// rendition = ...;      // original rendition object created as above
// newInputStream = ...; // new asset received from your webservice
Asset asset = rendition.getAsset();
asset.addRendition("original", newInputStream, rendition.getMimeType());

关于java - 如何在工作流程步骤中访问 Assets ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24473136/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com