我有一个JSON 格式的Artifactory AQL Spec 文件。规范文件如下:
{
"files": [
{
"aql": {
"items.find": {
"repo": "release-repo",
"modified": { "$before": "30d" },
"type": { "$eq": "folder" },
"depth": "2"
}
}
}
]
}
假设我运行一个 gitlab api 查询来获取我想要遍历并添加到这个 json 规范文件的 SHA 列表。SHA 列表被分配给一个变量。
"a991fef6bb9e9759d513fd4b277fe3674b44e4f4"
"5a562d34bb1d4ab4264acc2c61327651218524ad"
"d4e296c35644743e58aed35d1afb87e34d6c8823"
我想遍历所有这些提交ID并将它们一一添加到json中,以便它们采用以下格式:
{
"files": [
{
"aql": {
"items.find": {
"repo": "release-repo",
"modified": { "$before": "30d" },
"type": { "$eq": "folder" },
"$or": [
{
"$and": [
{
"name": {
"$nmatch": "*a991fef6bb9e9759d513fd4b277fe3674b44e4f4*"
}
}
]
},
{
"$and": [
{
"name": {
"$nmatch": "*5a562d34bb1d4ab4264acc2c61327651218524ad*"
}
}
]
},
{
"$and": [
{
"name": {
"$nmatch": "*d4e296c35644743e58aed35d1afb87e34d6c8823*"
}
}
]
}
],
"depth": "2"
}
}
}
]
}
从 gitlab api 查询返回的 SHA 列表会有所不同,这就是为什么我希望它是一个动态条目或每次都更新。返回的 SHA 的数量也将有所不同……一天可以返回 10 个,也可以在另一天返回 50 个。