Я пытаюсь динамически читать в массив (каждый элемент является строкой) и использовать эти строковые значения для замены текущих жестко закодированных имен пользователей.Это для создания запроса извлечения в Bitbucket.
И # 1, и # 2 ниже принадлежат одному и тому же классу BitbucketUtil.groovy
1:
def createPullRequest(projectSlug, repoSlug, title, description, sourceBranch, targetBranch) {
//this is reading in the array with the user names
def names = BitbutkcetUtil.getGroupUsers(teamName, activeOnly)
def prResponse = this.steps.httpRequest(
acceptType: 'APPLICATION_JSON',
authentication: this.userId,
contentType: 'APPLICATION_JSON',
httpMode: 'POST',
ignoreSslErrors: true,
quiet: true,
requestBody: """
{
"title": "${title}",
"description": "${description}",
"state": "OPEN",
"open": true,
"closed": false,
"fromRef": { "id": "${sourceBranch}" },
"toRef": { "id": "${targetBranch}" },
"locked": false,
"reviewers": [
//I want to replace this hardcoded names with the string values inside the array `names`
{ "user": { "name": "HardCoded1" } },
{ "user": { "name": "HardCoded2" } },
{ "user": { "name": "HardCoded3" } },
{ "user": { "name": "HardCoded4" } }
]
}
""",
responseHandle: 'STRING',
url: "https://bitbucket.absolute.com/rest/api/latest/projects/${projectSlug}/repos/${repoSlug}/pull-requests",
validResponseCodes: '200:299')
def pullRequest = this.steps.readJSON(text: prResponse.content)
prResponse.close()
return pullRequest['id']
}
2:
def getGroupUsers(groupName, activeOnly) {
def getUsersResponse = this.steps.httpRequest(
acceptType: 'APPLICATION_JSON',
authentication: this.userId,
ignoreSslErrors: true,
quiet: true,
responseHandle: 'STRING',
url: "https://bitbucket.absolute.com/rest/api/latest/admin/groups/more-members?context=pd-teamthunderbird",
validResponseCodes: '200:299')
def usersPayload = this.steps.readJSON(text: getUsersResponse.content)['values']
getUsersResponse.close()
def users = []
usersPayload.each { user ->
if (!activeOnly || (activeOnly && user['active'])) {
users.add(user['name'])
}
}
return users
//this is returning an array with string elements inside
}
Я предполагаю, что используя функцию getGroupUsers
(параметр groupName
равен teamName
), я могу заменить жестко закодированные строки в "reviewers"
внутри функции createPullRequest
.Но я не уверен, как я могу использовать цикл for под «обозревателями», чтобы я мог динамически помещать значения:
"reviewers": [
//I want to replace this hardcoded names with the string values inside the array `names`
{ "user": { "name": "HardCoded1" } },
{ "user": { "name": "HardCoded2" } },
{ "user": { "name": "HardCoded3" } },
{ "user": { "name": "HardCoded4" } }
]
}
Любая помощь будет принята с благодарностью.