Chilkat Online Tools

MergePullRequestByThreeWay autoit Example

AWS CodeCommit

; This example requires the Chilkat API to have been previously unlocked.
; See Global Unlock Sample for sample code.

$oRest = ObjCreate("Chilkat_9_5_0.Rest")
Local $bSuccess

$oAuthAws = ObjCreate("Chilkat_9_5_0.AuthAws")
$oAuthAws.AccessKey = "AWS_ACCESS_KEY"
$oAuthAws.SecretKey = "AWS_SECRET_KEY"

; Don't forget to change the region to your particular region. (Also make the same change in the call to Connect below.)
$oAuthAws.Region = "us-west-2"
$oAuthAws.ServiceName = "codecommit"
; SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
$oRest.SetAuthAws($oAuthAws)

; URL: https://codecommit.us-west-2.amazonaws.com/
; Use the same region as specified above.
$bSuccess = $oRest.Connect("codecommit.us-west-2.amazonaws.com",443,True,True)
If ($bSuccess <> True) Then
    ConsoleWrite("ConnectFailReason: " & $oRest.ConnectFailReason & @CRLF)
    ConsoleWrite($oRest.LastErrorText & @CRLF)
    Exit
EndIf

; The following code creates the JSON request body.
; The JSON created by this code is shown below.

; Use this online tool to generate code from sample JSON:
; Generate Code to Create JSON

$oJson = ObjCreate("Chilkat_9_5_0.JsonObject")
$oJson.UpdateString("authorName","string")
$oJson.UpdateString("commitMessage","string")
$oJson.UpdateString("conflictDetailLevel","string")
$oJson.UpdateString("conflictResolution.deleteFiles[0].filePath","string")
$oJson.UpdateInt("conflictResolution.replaceContents[0].content",123)
$oJson.UpdateString("conflictResolution.replaceContents[0].fileMode","string")
$oJson.UpdateString("conflictResolution.replaceContents[0].filePath","string")
$oJson.UpdateString("conflictResolution.replaceContents[0].replacementType","string")
$oJson.UpdateString("conflictResolution.setFileModes[0].fileMode","string")
$oJson.UpdateString("conflictResolution.setFileModes[0].filePath","string")
$oJson.UpdateString("conflictResolutionStrategy","string")
$oJson.UpdateString("email","string")
$oJson.UpdateInt("keepEmptyFolders",123)
$oJson.UpdateString("pullRequestId","string")
$oJson.UpdateString("repositoryName","string")
$oJson.UpdateString("sourceCommitId","string")

; The JSON request body created by the above code:

; {
;   "authorName": "string",
;   "commitMessage": "string",
;   "conflictDetailLevel": "string",
;   "conflictResolution": {
;     "deleteFiles": [
;       {
;         "filePath": "string"
;       }
;     ],
;     "replaceContents": [
;       {
;         "content": blob,
;         "fileMode": "string",
;         "filePath": "string",
;         "replacementType": "string"
;       }
;     ],
;     "setFileModes": [
;       {
;         "fileMode": "string",
;         "filePath": "string"
;       }
;     ]
;   },
;   "conflictResolutionStrategy": "string",
;   "email": "string",
;   "keepEmptyFolders": boolean,
;   "pullRequestId": "string",
;   "repositoryName": "string",
;   "sourceCommitId": "string"
; }

$oRest.AddHeader("Content-Type","application/x-amz-json-1.1")
$oRest.AddHeader("X-Amz-Target","CodeCommit_20150413.MergePullRequestByThreeWay")

$oSbRequestBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$oJson.EmitSb($oSbRequestBody)
$oSbResponseBody = ObjCreate("Chilkat_9_5_0.StringBuilder")
$bSuccess = $oRest.FullRequestSb("POST","/",$oSbRequestBody,$oSbResponseBody)
If ($bSuccess <> True) Then
    ConsoleWrite($oRest.LastErrorText & @CRLF)
    Exit
EndIf

Local $iRespStatusCode = $oRest.ResponseStatusCode
ConsoleWrite("response status code = " & $iRespStatusCode & @CRLF)
If ($iRespStatusCode <> 200) Then
    ConsoleWrite("Response Header:" & @CRLF)
    ConsoleWrite($oRest.ResponseHeader & @CRLF)
    ConsoleWrite("Response Body:" & @CRLF)
    ConsoleWrite($oSbResponseBody.GetAsString() & @CRLF)
    Exit
EndIf

$oJResp = ObjCreate("Chilkat_9_5_0.JsonObject")
$oJResp.LoadSb($oSbResponseBody)

; The following code parses the JSON response.
; A sample JSON response is shown below the sample code.

; Use this online tool to generate parsing code from sample JSON:
; Generate Parsing Code from JSON

Local $sApprovalRuleContent
Local $sApprovalRuleId
Local $sApprovalRuleName
Local $iCreationDate
Local $iLastModifiedDate
Local $sLastModifiedUser
Local $sApprovalRuleTemplateId
Local $sApprovalRuleTemplateName
Local $sRuleContentSha256
Local $sDestinationCommit
Local $sDestinationReference
Local $sMergeBase
Local $iIsMerged
Local $sMergeCommitId
Local $sMergedBy
Local $sMergeOption
Local $sRepositoryName
Local $sourceCommit
Local $sourceReference

Local $sAuthorArn = $oJResp.StringOf("pullRequest.authorArn")
Local $sClientRequestToken = $oJResp.StringOf("pullRequest.clientRequestToken")
Local $iCreationDate = $oJResp.IntOf("pullRequest.creationDate")
Local $sDescription = $oJResp.StringOf("pullRequest.description")
Local $iLastActivityDate = $oJResp.IntOf("pullRequest.lastActivityDate")
Local $sPullRequestId = $oJResp.StringOf("pullRequest.pullRequestId")
Local $sPullRequestStatus = $oJResp.StringOf("pullRequest.pullRequestStatus")
Local $sRevisionId = $oJResp.StringOf("pullRequest.revisionId")
Local $sTitle = $oJResp.StringOf("pullRequest.title")
Local $i = 0
Local $iCount_i = $oJResp.SizeOfArray("pullRequest.approvalRules")
While $i < $iCount_i
    $oJResp.I = $i
    $sApprovalRuleContent = $oJResp.StringOf("pullRequest.approvalRules[i].approvalRuleContent")
    $sApprovalRuleId = $oJResp.StringOf("pullRequest.approvalRules[i].approvalRuleId")
    $sApprovalRuleName = $oJResp.StringOf("pullRequest.approvalRules[i].approvalRuleName")
    $iCreationDate = $oJResp.IntOf("pullRequest.approvalRules[i].creationDate")
    $iLastModifiedDate = $oJResp.IntOf("pullRequest.approvalRules[i].lastModifiedDate")
    $sLastModifiedUser = $oJResp.StringOf("pullRequest.approvalRules[i].lastModifiedUser")
    $sApprovalRuleTemplateId = $oJResp.StringOf("pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateId")
    $sApprovalRuleTemplateName = $oJResp.StringOf("pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateName")
    $sRuleContentSha256 = $oJResp.StringOf("pullRequest.approvalRules[i].ruleContentSha256")
    $i = $i + 1
Wend
$i = 0
$iCount_i = $oJResp.SizeOfArray("pullRequest.pullRequestTargets")
While $i < $iCount_i
    $oJResp.I = $i
    $sDestinationCommit = $oJResp.StringOf("pullRequest.pullRequestTargets[i].destinationCommit")
    $sDestinationReference = $oJResp.StringOf("pullRequest.pullRequestTargets[i].destinationReference")
    $sMergeBase = $oJResp.StringOf("pullRequest.pullRequestTargets[i].mergeBase")
    $iIsMerged = $oJResp.IntOf("pullRequest.pullRequestTargets[i].mergeMetadata.isMerged")
    $sMergeCommitId = $oJResp.StringOf("pullRequest.pullRequestTargets[i].mergeMetadata.mergeCommitId")
    $sMergedBy = $oJResp.StringOf("pullRequest.pullRequestTargets[i].mergeMetadata.mergedBy")
    $sMergeOption = $oJResp.StringOf("pullRequest.pullRequestTargets[i].mergeMetadata.mergeOption")
    $sRepositoryName = $oJResp.StringOf("pullRequest.pullRequestTargets[i].repositoryName")
    $sourceCommit = $oJResp.StringOf("pullRequest.pullRequestTargets[i].sourceCommit")
    $sourceReference = $oJResp.StringOf("pullRequest.pullRequestTargets[i].sourceReference")
    $i = $i + 1
Wend

; A sample JSON response body parsed by the above code:

; {
;   "pullRequest": {
;     "approvalRules": [
;       {
;         "approvalRuleContent": "string",
;         "approvalRuleId": "string",
;         "approvalRuleName": "string",
;         "creationDate": number,
;         "lastModifiedDate": number,
;         "lastModifiedUser": "string",
;         "originApprovalRuleTemplate": {
;           "approvalRuleTemplateId": "string",
;           "approvalRuleTemplateName": "string"
;         },
;         "ruleContentSha256": "string"
;       }
;     ],
;     "authorArn": "string",
;     "clientRequestToken": "string",
;     "creationDate": number,
;     "description": "string",
;     "lastActivityDate": number,
;     "pullRequestId": "string",
;     "pullRequestStatus": "string",
;     "pullRequestTargets": [
;       {
;         "destinationCommit": "string",
;         "destinationReference": "string",
;         "mergeBase": "string",
;         "mergeMetadata": {
;           "isMerged": boolean,
;           "mergeCommitId": "string",
;           "mergedBy": "string",
;           "mergeOption": "string"
;         },
;         "repositoryName": "string",
;         "sourceCommit": "string",
;         "sourceReference": "string"
;       }
;     ],
;     "revisionId": "string",
;     "title": "string"
;   }
; }