Chilkat Online Tools

UpdatePullRequestStatus PureBasic Example

AWS CodeCommit

IncludeFile "CkJsonObject.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkRest.pb"
IncludeFile "CkAuthAws.pb"

Procedure ChilkatExample()

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

    rest.i = CkRest::ckCreate()
    If rest.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    authAws.i = CkAuthAws::ckCreate()
    If authAws.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkAuthAws::setCkAccessKey(authAws, "AWS_ACCESS_KEY")
    CkAuthAws::setCkSecretKey(authAws, "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.)
    CkAuthAws::setCkRegion(authAws, "us-west-2")
    CkAuthAws::setCkServiceName(authAws, "codecommit")
    ; SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
    CkRest::ckSetAuthAws(rest,authAws)

    ; URL: https://codecommit.us-west-2.amazonaws.com/
    ; Use the same region as specified above.
    success = CkRest::ckConnect(rest,"codecommit.us-west-2.amazonaws.com",443,1,1)
    If success <> 1
        Debug "ConnectFailReason: " + Str(CkRest::ckConnectFailReason(rest))
        Debug CkRest::ckLastErrorText(rest)
        CkRest::ckDispose(rest)
        CkAuthAws::ckDispose(authAws)
        ProcedureReturn
    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

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"pullRequestId","string")
    CkJsonObject::ckUpdateString(json,"pullRequestStatus","string")

    ; The JSON request body created by the above code:

    ; {
    ;   "pullRequestId": "string",
    ;   "pullRequestStatus": "string"
    ; }

    CkRest::ckAddHeader(rest,"Content-Type","application/x-amz-json-1.1")
    CkRest::ckAddHeader(rest,"X-Amz-Target","CodeCommit_20150413.UpdatePullRequestStatus")

    sbRequestBody.i = CkStringBuilder::ckCreate()
    If sbRequestBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckEmitSb(json,sbRequestBody)
    sbResponseBody.i = CkStringBuilder::ckCreate()
    If sbResponseBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success = CkRest::ckFullRequestSb(rest,"POST","/",sbRequestBody,sbResponseBody)
    If success <> 1
        Debug CkRest::ckLastErrorText(rest)
        CkRest::ckDispose(rest)
        CkAuthAws::ckDispose(authAws)
        CkJsonObject::ckDispose(json)
        CkStringBuilder::ckDispose(sbRequestBody)
        CkStringBuilder::ckDispose(sbResponseBody)
        ProcedureReturn
    EndIf

    respStatusCode.i = CkRest::ckResponseStatusCode(rest)
    Debug "response status code = " + Str(respStatusCode)
    If respStatusCode <> 200
        Debug "Response Header:"
        Debug CkRest::ckResponseHeader(rest)
        Debug "Response Body:"
        Debug CkStringBuilder::ckGetAsString(sbResponseBody)
        CkRest::ckDispose(rest)
        CkAuthAws::ckDispose(authAws)
        CkJsonObject::ckDispose(json)
        CkStringBuilder::ckDispose(sbRequestBody)
        CkStringBuilder::ckDispose(sbResponseBody)
        ProcedureReturn
    EndIf

    jResp.i = CkJsonObject::ckCreate()
    If jResp.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckLoadSb(jResp,sbResponseBody)

    ; 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

    approvalRuleContent.s
    approvalRuleId.s
    approvalRuleName.s
    creationDate.i
    lastModifiedDate.i
    lastModifiedUser.s
    ApprovalRuleTemplateId.s
    ApprovalRuleTemplateName.s
    ruleContentSha256.s
    destinationCommit.s
    destinationReference.s
    mergeBase.s
    IsMerged.i
    MergeCommitId.s
    MergedBy.s
    MergeOption.s
    repositoryName.s
    sourceCommit.s
    sourceReference.s

    AuthorArn.s = CkJsonObject::ckStringOf(jResp,"pullRequest.authorArn")
    ClientRequestToken.s = CkJsonObject::ckStringOf(jResp,"pullRequest.clientRequestToken")
    CreationDate.i = CkJsonObject::ckIntOf(jResp,"pullRequest.creationDate")
    Description.s = CkJsonObject::ckStringOf(jResp,"pullRequest.description")
    LastActivityDate.i = CkJsonObject::ckIntOf(jResp,"pullRequest.lastActivityDate")
    PullRequestId.s = CkJsonObject::ckStringOf(jResp,"pullRequest.pullRequestId")
    PullRequestStatus.s = CkJsonObject::ckStringOf(jResp,"pullRequest.pullRequestStatus")
    RevisionId.s = CkJsonObject::ckStringOf(jResp,"pullRequest.revisionId")
    Title.s = CkJsonObject::ckStringOf(jResp,"pullRequest.title")
    i.i = 0
    count_i.i = CkJsonObject::ckSizeOfArray(jResp,"pullRequest.approvalRules")
    While i < count_i
        CkJsonObject::setCkI(jResp, i)
        approvalRuleContent = CkJsonObject::ckStringOf(jResp,"pullRequest.approvalRules[i].approvalRuleContent")
        approvalRuleId = CkJsonObject::ckStringOf(jResp,"pullRequest.approvalRules[i].approvalRuleId")
        approvalRuleName = CkJsonObject::ckStringOf(jResp,"pullRequest.approvalRules[i].approvalRuleName")
        creationDate = CkJsonObject::ckIntOf(jResp,"pullRequest.approvalRules[i].creationDate")
        lastModifiedDate = CkJsonObject::ckIntOf(jResp,"pullRequest.approvalRules[i].lastModifiedDate")
        lastModifiedUser = CkJsonObject::ckStringOf(jResp,"pullRequest.approvalRules[i].lastModifiedUser")
        ApprovalRuleTemplateId = CkJsonObject::ckStringOf(jResp,"pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateId")
        ApprovalRuleTemplateName = CkJsonObject::ckStringOf(jResp,"pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateName")
        ruleContentSha256 = CkJsonObject::ckStringOf(jResp,"pullRequest.approvalRules[i].ruleContentSha256")
        i = i + 1
    Wend
    i = 0
    count_i = CkJsonObject::ckSizeOfArray(jResp,"pullRequest.pullRequestTargets")
    While i < count_i
        CkJsonObject::setCkI(jResp, i)
        destinationCommit = CkJsonObject::ckStringOf(jResp,"pullRequest.pullRequestTargets[i].destinationCommit")
        destinationReference = CkJsonObject::ckStringOf(jResp,"pullRequest.pullRequestTargets[i].destinationReference")
        mergeBase = CkJsonObject::ckStringOf(jResp,"pullRequest.pullRequestTargets[i].mergeBase")
        IsMerged = CkJsonObject::ckIntOf(jResp,"pullRequest.pullRequestTargets[i].mergeMetadata.isMerged")
        MergeCommitId = CkJsonObject::ckStringOf(jResp,"pullRequest.pullRequestTargets[i].mergeMetadata.mergeCommitId")
        MergedBy = CkJsonObject::ckStringOf(jResp,"pullRequest.pullRequestTargets[i].mergeMetadata.mergedBy")
        MergeOption = CkJsonObject::ckStringOf(jResp,"pullRequest.pullRequestTargets[i].mergeMetadata.mergeOption")
        repositoryName = CkJsonObject::ckStringOf(jResp,"pullRequest.pullRequestTargets[i].repositoryName")
        sourceCommit = CkJsonObject::ckStringOf(jResp,"pullRequest.pullRequestTargets[i].sourceCommit")
        sourceReference = CkJsonObject::ckStringOf(jResp,"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"
    ;   }
    ; }


    CkRest::ckDispose(rest)
    CkAuthAws::ckDispose(authAws)
    CkJsonObject::ckDispose(json)
    CkStringBuilder::ckDispose(sbRequestBody)
    CkStringBuilder::ckDispose(sbResponseBody)
    CkJsonObject::ckDispose(jResp)


    ProcedureReturn
EndProcedure