Chilkat Online Tools

MergePullRequestBySquash Objective-C Example

AWS CodeCommit

#import <CkoRest.h>
#import <CkoAuthAws.h>
#import <CkoJsonObject.h>
#import <CkoStringBuilder.h>
#import <NSString.h>

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

CkoRest *rest = [[CkoRest alloc] init];
BOOL success;

CkoAuthAws *authAws = [[CkoAuthAws alloc] init];
authAws.AccessKey = @"AWS_ACCESS_KEY";
authAws.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.)
authAws.Region = @"us-west-2";
authAws.ServiceName = @"codecommit";
// SetAuthAws causes Chilkat to automatically add the following headers: Authorization, X-Amz-Date
[rest SetAuthAws: authAws];

// URL: https://codecommit.us-west-2.amazonaws.com/
// Use the same region as specified above.
success = [rest Connect: @"codecommit.us-west-2.amazonaws.com" port: [NSNumber numberWithInt: 443] tls: YES autoReconnect: YES];
if (success != YES) {
    NSLog(@"%@%d",@"ConnectFailReason: ",[rest.ConnectFailReason intValue]);
    NSLog(@"%@",rest.LastErrorText);
    return;
}

// 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

CkoJsonObject *json = [[CkoJsonObject alloc] init];
[json UpdateString: @"authorName" value: @"string"];
[json UpdateString: @"commitMessage" value: @"string"];
[json UpdateString: @"conflictDetailLevel" value: @"string"];
[json UpdateString: @"conflictResolution.deleteFiles[0].filePath" value: @"string"];
[json UpdateInt: @"conflictResolution.replaceContents[0].content" value: [NSNumber numberWithInt: 123]];
[json UpdateString: @"conflictResolution.replaceContents[0].fileMode" value: @"string"];
[json UpdateString: @"conflictResolution.replaceContents[0].filePath" value: @"string"];
[json UpdateString: @"conflictResolution.replaceContents[0].replacementType" value: @"string"];
[json UpdateString: @"conflictResolution.setFileModes[0].fileMode" value: @"string"];
[json UpdateString: @"conflictResolution.setFileModes[0].filePath" value: @"string"];
[json UpdateString: @"conflictResolutionStrategy" value: @"string"];
[json UpdateString: @"email" value: @"string"];
[json UpdateInt: @"keepEmptyFolders" value: [NSNumber numberWithInt: 123]];
[json UpdateString: @"pullRequestId" value: @"string"];
[json UpdateString: @"repositoryName" value: @"string"];
[json UpdateString: @"sourceCommitId" value: @"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"
// }

[rest AddHeader: @"Content-Type" value: @"application/x-amz-json-1.1"];
[rest AddHeader: @"X-Amz-Target" value: @"CodeCommit_20150413.MergePullRequestBySquash"];

CkoStringBuilder *sbRequestBody = [[CkoStringBuilder alloc] init];
[json EmitSb: sbRequestBody];
CkoStringBuilder *sbResponseBody = [[CkoStringBuilder alloc] init];
success = [rest FullRequestSb: @"POST" uriPath: @"/" requestBody: sbRequestBody responseBody: sbResponseBody];
if (success != YES) {
    NSLog(@"%@",rest.LastErrorText);
    return;
}

int respStatusCode = [rest.ResponseStatusCode intValue];
NSLog(@"%@%d",@"response status code = ",respStatusCode);
if (respStatusCode != 200) {
    NSLog(@"%@",@"Response Header:");
    NSLog(@"%@",rest.ResponseHeader);
    NSLog(@"%@",@"Response Body:");
    NSLog(@"%@",[sbResponseBody GetAsString]);
    return;
}

CkoJsonObject *jResp = [[CkoJsonObject alloc] init];
[jResp LoadSb: 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

NSString *approvalRuleContent = 0;
NSString *approvalRuleId = 0;
NSString *approvalRuleName = 0;
int creationDate;
int lastModifiedDate;
NSString *lastModifiedUser = 0;
NSString *ApprovalRuleTemplateId = 0;
NSString *ApprovalRuleTemplateName = 0;
NSString *ruleContentSha256 = 0;
NSString *destinationCommit = 0;
NSString *destinationReference = 0;
NSString *mergeBase = 0;
int IsMerged;
NSString *MergeCommitId = 0;
NSString *MergedBy = 0;
NSString *MergeOption = 0;
NSString *repositoryName = 0;
NSString *sourceCommit = 0;
NSString *sourceReference = 0;

NSString *AuthorArn = [jResp StringOf: @"pullRequest.authorArn"];
NSString *ClientRequestToken = [jResp StringOf: @"pullRequest.clientRequestToken"];
int CreationDate = [[jResp IntOf: @"pullRequest.creationDate"] intValue];
NSString *Description = [jResp StringOf: @"pullRequest.description"];
int LastActivityDate = [[jResp IntOf: @"pullRequest.lastActivityDate"] intValue];
NSString *PullRequestId = [jResp StringOf: @"pullRequest.pullRequestId"];
NSString *PullRequestStatus = [jResp StringOf: @"pullRequest.pullRequestStatus"];
NSString *RevisionId = [jResp StringOf: @"pullRequest.revisionId"];
NSString *Title = [jResp StringOf: @"pullRequest.title"];
int i = 0;
int count_i = [[jResp SizeOfArray: @"pullRequest.approvalRules"] intValue];
while (i < count_i) {
    jResp.I = [NSNumber numberWithInt: i];
    approvalRuleContent = [jResp StringOf: @"pullRequest.approvalRules[i].approvalRuleContent"];
    approvalRuleId = [jResp StringOf: @"pullRequest.approvalRules[i].approvalRuleId"];
    approvalRuleName = [jResp StringOf: @"pullRequest.approvalRules[i].approvalRuleName"];
    creationDate = [[jResp IntOf: @"pullRequest.approvalRules[i].creationDate"] intValue];
    lastModifiedDate = [[jResp IntOf: @"pullRequest.approvalRules[i].lastModifiedDate"] intValue];
    lastModifiedUser = [jResp StringOf: @"pullRequest.approvalRules[i].lastModifiedUser"];
    ApprovalRuleTemplateId = [jResp StringOf: @"pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateId"];
    ApprovalRuleTemplateName = [jResp StringOf: @"pullRequest.approvalRules[i].originApprovalRuleTemplate.approvalRuleTemplateName"];
    ruleContentSha256 = [jResp StringOf: @"pullRequest.approvalRules[i].ruleContentSha256"];
    i = i + 1;
}

i = 0;
count_i = [[jResp SizeOfArray: @"pullRequest.pullRequestTargets"] intValue];
while (i < count_i) {
    jResp.I = [NSNumber numberWithInt: i];
    destinationCommit = [jResp StringOf: @"pullRequest.pullRequestTargets[i].destinationCommit"];
    destinationReference = [jResp StringOf: @"pullRequest.pullRequestTargets[i].destinationReference"];
    mergeBase = [jResp StringOf: @"pullRequest.pullRequestTargets[i].mergeBase"];
    IsMerged = [[jResp IntOf: @"pullRequest.pullRequestTargets[i].mergeMetadata.isMerged"] intValue];
    MergeCommitId = [jResp StringOf: @"pullRequest.pullRequestTargets[i].mergeMetadata.mergeCommitId"];
    MergedBy = [jResp StringOf: @"pullRequest.pullRequestTargets[i].mergeMetadata.mergedBy"];
    MergeOption = [jResp StringOf: @"pullRequest.pullRequestTargets[i].mergeMetadata.mergeOption"];
    repositoryName = [jResp StringOf: @"pullRequest.pullRequestTargets[i].repositoryName"];
    sourceCommit = [jResp StringOf: @"pullRequest.pullRequestTargets[i].sourceCommit"];
    sourceReference = [jResp StringOf: @"pullRequest.pullRequestTargets[i].sourceReference"];
    i = i + 1;
}

// 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"
//   }
// }