Search for answers or browse our knowledge base.
Update Entity From Code Commits
Overview
Below is the process for updating and entity in target work systems by requests and a code commit to SyncNow DevOps Gate APIs. For the update to work developers need to mention work system entities in their code commit comment with #{target work system ID}
We have also created groovy scripts for Jenkins, or you can copy paste curl commands from our user interface from DevOps Gate project configuration.
Update Entities From Code Commits with Comment
Updates entities, that are mentioned in a comment of all commits of a build
Usage Examples
A comment of a commit may look like the following Done some fixes to code #ENT-1, #ENT-2
. After build will be created entities ENT-1 and ENT-2 will be updated accordingly to the mapping definition.
- Update an entity with build | deploy version number
- Update an entity if the latest build has failed
- Link Build to an entity – the build details and URL are set in the entity comment
Request
POST /api/v1.0/DevOpsGate/Enrich/{DevOpsProjectID}
?action=update
The payload contains the parameters as defined in the DevOps Gate Process and their values, below the parameters defined for the example request
Parameter | Description |
---|---|
Param1…ParamX | Parameters as defined in the DevOps Gate per Entity Type mapping |
entityUniqueKey | Optional if it is needed to update an entity without the use of comments |
comments | The comments with #{Entity ID} |
[ { "fields": [ { "key": "Param1", "value": "string" }, { "key": "Param2", "value": "string" }, { "key": "Param3", "value": "string" } ], "comments": "String with entities unique identifiers from the target system to add comments or remote link. For example, this is a comment in some commit. Need to update entities #CLS-3938, #CLS-3933" } ]
Response
Parameter | Description |
---|---|
updatedEntitiesID | List of Updated entity IDs |
systemID | The target system id where entities updated |
entityKeys | The updated entities keys |
Error | Errors which has occurred during the update process |
Warning | Warnings which has occurred during the update process |
{ "updatedEntitiesID": [ { "systemID": "10", "entityKeys": [ "CLS-3933", "CLS-3938" ] } ], "errors": [], "warnings": [] }
Jenkins Script
This Jenkins script takes all comments with entity ids mentioned in commits joins them and add them as one comment to be updated to target system, then it uses SyncNow DevOps Gateway to update all entities in the commit.
@NonCPS
def getCommentsString() {
def list = []
def changeLogSets = currentBuild.changeSets
for (int i = 0; i < changeLogSets.size(); i++) {
def entries = changeLogSets[i].items
for (int j = 0; j < entries.length; j++) {
def entry = entries[j]
if (entry.msg != null) {
list.add("""${entry.commitId} on ${new Date(entry.timestamp)}: ${entry.msg.replaceAll("[\n\r]", " ")}""")
}
}
}
return list.join(',')
}
pipeline {
agent any
stages {
stage('Clone') {
steps {
echo 'Clone Code'
}
}
stage('Version') {
steps {
echo 'Version'
}
}
stage('Test') {
steps {
echo 'Test'
}
}
stage('Build') {
steps {
echo 'Build'
}
}
stage('Publish') {
steps {
echo 'Publish'
}
}
stage('Notify SyncNow') {
steps {
echo 'Notify'
echo "Job Name is ${JOB_NAME}, Build ID is ${env.BUILD_ID}"
script {
def commits = getCommentsString()
def payload = """
[
{
"fields": [
{
"key": "Param1",
"value": "string"
},
{
"key": "Param2",
"value": "string"
},
{
"key": "Param3",
"value": "string"
}
],
"comments": "${commits}"
}
]
"""
// Create entities and update entities from commit. Result in format for adding attachments
string response = httpRequest acceptType: 'APPLICATION_JSON', contentType: 'APPLICATION_JSON', httpMode: 'POST', authentication: 'SyncNow', requestBody: "${payload}", url: "https://<SyncNowBaseURL>/api/v1.0/app/DevOpsGate/Enrich/<DevOpsProjectID>?action=update"
println("Status: ${response.status}")
println("Content: ${response.content}")
}
}
}
}
}
Step By Step Instructions
- Create a DevOps Gate Process
- Add one more entity type mapping and set any fields mapping to it
- Create 2 entities in a target system that should be updated by the DevOps Gate
- Go to the DevOps Gate Process Configuration and press the How It Works link
- Select
Update Entities from Commits
- Copy CURL
- Paste into a Command Line. Set entities keys of the entities created upper and execute
- Entities has been updated accordingly to the mapping definition