gpt4 book ai didi

rest - 如何通过 curl 使用他们的 rest api 从 Nexus 检索工件校验和?

转载 作者:行者123 更新时间:2023-12-04 14:44:39 26 4
gpt4 key购买 nike

我正在尝试验证我从 Nexus 下载的工件的校验和。我可以获取工件并下载它们并检查它们的 md5sum 或 sha1sum,但我需要对照来自 Nexus 的实际总和进行检查,以便我可以验证它们是否正确。

这是我用来从 Nexus 抓取文件的命令:

curl -v -L -o /mylocation/artifact.war -u 'myuser:mypass' --get 'http://ournexus.com/service/local/artifact/maven/content?g=com.ours.stuff&a=our-service-war&v=LATEST&r=snapshots&p=war'

通过 http://nexus.xwiki.org/nexus/nexus-indexer-lucene-plugin/default/docs/path__lucene_search.html ,看起来我也可以搜索 sha1 sum,但是当我执行 &sha1 我没有得到任何额外的或 sha1=(sum) 时,即使我省略了上述所有选项,也没有任何内容被提取出来。

这有效,但它涉及特定的 war ,我们需要最新的(显然):
http://ournexus.com/service/local/repositories/snapshots/content/com/ours/stuff/ourapp/1.0.0-SNAPSHOT/ourapp-1.0.0-20140730.173704-88.war.sha1

这可能吗,我在正确的轨道上吗?

最佳答案

您可以直接获取文件,也可以使用 Nexus API 以编程方式检索它。

以下网址:

http://localhost:8081/nexus/service/local/artifact/maven/resolve?g=log4j&a=log4j&v=1.2.9&r=central

返回以下结果:
<artifact-resolution>
<data>
<presentLocally>true</presentLocally>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.9</version>
<extension>jar</extension>
<snapshot>false</snapshot>
<snapshotBuildNumber>0</snapshotBuildNumber>
<snapshotTimeStamp>0</snapshotTimeStamp>
<sha1>55856d711ab8b88f8c7b04fd85ff1643ffbfde7c</sha1>
<repositoryPath>/log4j/log4j/1.2.9/log4j-1.2.9.jar</repositoryPath>
</data>
</artifact-resolution>

xmllint 命令可用于解析出 sha1 校验和值,如下所示:
$ curl -s "http://localhost:8081/nexus/service/local/artifact/maven/resolve?g=log4j&a=log4j&v=1.2.9&r=central" | xmllint --xpath "///sha1/text()" -
55856d711ab8b88f8c7b04fd85ff1643ffbfde7c

关于rest - 如何通过 curl 使用他们的 rest api 从 Nexus 检索工件校验和?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25047781/

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