summaryrefslogtreecommitdiffstats
path: root/appc-adapters/appc-chef-adapter/appc-chef-adapter-bundle/src/main/java/org/onap/appc/adapter/chef/impl/ChefAdapterImpl.java
blob: bd367b035116151ee3573bb6885d70ade866d65b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * =============================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * ============LICENSE_END=========================================================
 */
package org.onap.appc.adapter.chef.impl;

import com.att.eelf.configuration.EELFLogger;
import com.att.eelf.configuration.EELFManager;
import java.util.Arrays;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import org.apache.commons.lang.StringUtils;
import org.json.JSONException;
import org.json.JSONObject;
import org.onap.appc.adapter.chef.ChefAdapter;
import org.onap.appc.adapter.chef.chefclient.ChefApiClientFactory;
import org.onap.appc.adapter.chef.chefclient.api.ChefApiClient;
import org.onap.appc.adapter.chef.chefclient.api.ChefResponse;
import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
import org.onap.ccsdk.sli.core.sli.SvcLogicException;

/**
 * This class implements the {@link ChefAdapter} interface. This interface defines the behaviors that our service
 * provides.
 */
public class ChefAdapterImpl implements ChefAdapter {

    // chef server Initialize variable
    private String username = StringUtils.EMPTY;
    private String clientPrivatekey = StringUtils.EMPTY;
    private String chefserver = StringUtils.EMPTY;
    private String serverAddress = StringUtils.EMPTY;
    private String organizations = StringUtils.EMPTY;

    @SuppressWarnings("nls")
    public static final String MDC_ADAPTER = "adapter";

    @SuppressWarnings("nls")
    public static final String MDC_SERVICE = "service";

    @SuppressWarnings("nls")
    public static final String OUTCOME_FAILURE = "failure";

    @SuppressWarnings("nls")
    public static final String OUTCOME_SUCCESS = "success";

    @SuppressWarnings("nls")
    public static final String PROPERTY_PROVIDER = "provider";

    @SuppressWarnings("nls")
    public static final String PROPERTY_PROVIDER_IDENTITY = "identity";

    @SuppressWarnings("nls")
    public static final String PROPERTY_PROVIDER_NAME = "name";

    @SuppressWarnings("nls")
    public static final String PROPERTY_PROVIDER_TENANT = "tenant";

    @SuppressWarnings("nls")
    public static final String PROPERTY_PROVIDER_TENANT_NAME = "name";

    @SuppressWarnings("nls")
    public static final String PROPERTY_PROVIDER_TENANT_PASSWORD = "password"; // NOSONAR

    @SuppressWarnings("nls")
    public static final String PROPERTY_PROVIDER_TENANT_USERID = "userid";

    @SuppressWarnings("nls")
    public static final String PROPERTY_PROVIDER_TYPE = "type";


    private static final EELFLogger logger = EELFManager.getInstance().getLogger(ChefAdapterImpl.class);

    private static final String CANNOT_FIND_PRIVATE_KEY_STR =
        "Cannot find the private key in the APPC file system, please load the private key to ";

    private static final String POSTING_REQUEST_JSON_ERROR_STR = "Error posting request due to invalid JSON block: ";
    private static final String POSTING_REQUEST_ERROR_STR = "Error posting request: ";
    private static final String CHEF_CLIENT_RESULT_CODE_STR = "chefClientResult.code";
    private static final String CHEF_SERVER_RESULT_CODE_STR = "chefServerResult.code";
    private static final String CHEF_CLIENT_RESULT_MSG_STR = "chefClientResult.message";
    private static final String CHEF_SERVER_RESULT_MSG_STR = "chefServerResult.message";
    private static final String CHEF_ACTION_STR = "chefAction";
    private static final String NODE_LIST_STR = "NodeList";
    private final ChefApiClientFactory chefApiClientFactory;
    private final PrivateKeyChecker privateKeyChecker;

    ChefAdapterImpl(ChefApiClientFactory chefApiClientFactory, PrivateKeyChecker privateKeyChecker) {
        this.chefApiClientFactory = chefApiClientFactory;
        this.privateKeyChecker = privateKeyChecker;
        logger.info("Initialize Chef Adapter");
    }

    @SuppressWarnings("nls")
    @Override
    public void vnfcEnvironment(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
        int code;
        logger.info("environment of VNF-C");
        chefInfo(params, ctx);
        String env = params.get("Environment");
        logger.info("Environmnet" + env);
        if (env.equals(StringUtils.EMPTY)) {
            chefServerResult(ctx, 200, "Skip Environment block ");
        } else {
            String message;
            if (privateKeyChecker.doesExist(clientPrivatekey)) {
                try {
                    JSONObject envJ = new JSONObject(env);
                    String envName = envJ.getString("name");
                    // update the details of an environment on the Chef server.
                    ChefApiClient chefApiClient = chefApiClientFactory.create(chefserver, organizations, username, clientPrivatekey);
                    ChefResponse chefResponse = chefApiClient.put("/environments/" + envName, env);
                    code = chefResponse.getStatusCode();
                    message = chefResponse.getBody();
                    if (code == 404) {
                        // need create a new environment
                        chefResponse = chefApiClient.post("/environments", env);
                        code = chefResponse.getStatusCode();
                        message = chefResponse.getBody();
                        logger.info("requestbody {}", chefResponse.getBody());
                    }
                    chefServerResult(ctx, code, message);
                } catch (JSONException e) {
                    code = 401;
                    logger.error(POSTING_REQUEST_JSON_ERROR_STR, e);
                    doFailure(ctx, code, POSTING_REQUEST_JSON_ERROR_STR + e.getMessage());
                } catch (Exception e) {
                    code = 401;
                    logger.error(POSTING_REQUEST_ERROR_STR + "vnfcEnvironment", e);
                    doFailure(ctx, code, POSTING_REQUEST_ERROR_STR + "vnfcEnvironment"+ e.getMessage());
                }
            } else {
                code = 500;
                message = CANNOT_FIND_PRIVATE_KEY_STR + clientPrivatekey;
                doFailure(ctx, code, message);
            }
        }
    }

    @SuppressWarnings("nls")
    @Override
    public void vnfcNodeobjects(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
        logger.info("update the nodeObjects of VNF-C");
        int code;
        try {
            chefInfo(params, ctx);
            String nodeListS = params.get(NODE_LIST_STR);
            String nodeS = params.get("Node");
            if (StringUtils.isNotBlank(nodeListS) && StringUtils.isNotBlank(nodeS)) {
                nodeListS = nodeListS.replace("[", StringUtils.EMPTY);
                nodeListS = nodeListS.replace("]", StringUtils.EMPTY);
                nodeListS = nodeListS.replace("\"", StringUtils.EMPTY);
                nodeListS = nodeListS.replace(" ", StringUtils.EMPTY);
                List<String> nodes = Arrays.asList(nodeListS.split("\\s*,\\s*"));
                code = 200;
                String message = null;
                if (privateKeyChecker.doesExist(clientPrivatekey)) {
                    ChefApiClient cac = chefApiClientFactory.create(chefserver, organizations, username, clientPrivatekey);

                    for (String nodeName: nodes) {
                        JSONObject nodeJ = new JSONObject(nodeS);
                        nodeJ.remove("name");
                        nodeJ.put("name", nodeName);
                        String nodeObject = nodeJ.toString();
                        logger.info(nodeObject);
                        ChefResponse chefResponse = cac.put("/nodes/" + nodeName, nodeObject);
                        code = chefResponse.getStatusCode();
                        message = chefResponse.getBody();
                        if (code != 200) {
                            break;
                        }
                    }
                } else {
                    code = 500;
                    message = CANNOT_FIND_PRIVATE_KEY_STR + clientPrivatekey;
                    doFailure(ctx, code, message);
                }
                chefServerResult(ctx, code, message);
            } else {
                throw new SvcLogicException("Missing Mandatory param(s) Node , NodeList ");
            }
        } catch (JSONException e) {
            code = 401;
            logger.error(POSTING_REQUEST_JSON_ERROR_STR +"vnfcNodeobjects", e);
            doFailure(ctx, code, POSTING_REQUEST_JSON_ERROR_STR +"vnfcNodeobjects" + e.getMessage());
        } catch (Exception e) {
            code = 401;
            logger.error(POSTING_REQUEST_ERROR_STR +"vnfcNodeobjects", e);
            doFailure(ctx, code, POSTING_REQUEST_ERROR_STR +"vnfcNodeobjects"+ e.getMessage());
        }
    }

    @Override
    public void vnfcPushJob(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
        int code;
        try {
            chefInfo(params, ctx);
            String nodeList = params.get(NODE_LIST_STR);
            if (StringUtils.isNotBlank(nodeList)) {
                String isCallback = params.get("CallbackCapable");
                String chefAction = "/pushy/jobs";
                // need work on this
                String pushRequest;
                if ("true".equals(isCallback)) {
                    String requestId = params.get("RequestId");
                    String callbackUrl = params.get("CallbackUrl");
                    pushRequest = "{" + "\"command\": \"chef-client\"," + "\"run_timeout\": 300," + "\"nodes\":"
                        + nodeList + "," + "\"env\": {\"RequestId\": \"" + requestId + "\", \"CallbackUrl\": \""
                        + callbackUrl + "\"}," + "\"capture_output\": true" + "}";
                } else {
                    pushRequest = "{" + "\"command\": \"chef-client\"," + "\"run_timeout\": 300," + "\"nodes\":"
                        + nodeList + "," + "\"env\": {}," + "\"capture_output\": true" + "}";
                }
                ChefApiClient cac = chefApiClientFactory.create(chefserver, organizations, username, clientPrivatekey);
                ChefResponse chefResponse = cac.post(chefAction, pushRequest);
                code = chefResponse.getStatusCode();
                logger.info("pushRequest:" + pushRequest);
                logger.info("requestbody: {}", chefResponse.getBody());
                String message = chefResponse.getBody();
                if (code == 201) {
                    int startIndex = message.indexOf("jobs") + 5;
                    int endIndex = message.length() - 2;
                    String jobID = message.substring(startIndex, endIndex);
                    ctx.setAttribute("jobID", jobID);
                    logger.info(jobID);
                }
                chefServerResult(ctx, code, message);
            } else {
                throw new SvcLogicException("Missing Mandatory param(s)  NodeList ");
            }
        } catch (Exception e) {
            code = 401;
            logger.error(POSTING_REQUEST_ERROR_STR + "vnfcPushJob", e);
            doFailure(ctx, code, POSTING_REQUEST_ERROR_STR + "vnfcPushJob"+ e.getMessage());
        }
    }

    @SuppressWarnings("nls")
    @Override
    public void fetchResults(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
        int code = 200;
        try {
            chefInfo(params, ctx);
            String nodeListS = params.get(NODE_LIST_STR);
            if (StringUtils.isNotBlank(nodeListS)) {
                nodeListS = nodeListS.replace("[", StringUtils.EMPTY);
                nodeListS = nodeListS.replace("]", StringUtils.EMPTY);
                nodeListS = nodeListS.replace("\"", StringUtils.EMPTY);
                nodeListS = nodeListS.replace(" ", StringUtils.EMPTY);
                List<String> nodes = Arrays.asList(nodeListS.split("\\s*,\\s*"));
                JSONObject result = new JSONObject();
                String returnMessage = StringUtils.EMPTY;

                for (String node : nodes) {
                    String chefAction = "/nodes/" + node;
                    String message;
                    if (privateKeyChecker.doesExist(clientPrivatekey)) {
                        ChefResponse chefResponse = getApiMethod(chefAction);
                        code = chefResponse.getStatusCode();
                        message = chefResponse.getBody();
                    } else {
                        code = 500;
                        message = CANNOT_FIND_PRIVATE_KEY_STR + clientPrivatekey;
                        doFailure(ctx, code, message);
                    }
                    if (code == 200) {
                        JSONObject nodeResult = new JSONObject();
                        JSONObject allNodeData = new JSONObject(message);
                        allNodeData = allNodeData.getJSONObject("normal");
                        String attribute = "PushJobOutput";

                        String resultData = allNodeData.optString(attribute, null);
                        if (resultData == null) {
                            resultData = Optional.ofNullable(allNodeData.optJSONObject(attribute))
                                .map(p -> p.toString()).orElse(null);
                            if (resultData == null) {
                                resultData = Optional.ofNullable(allNodeData.optJSONArray(attribute))
                                    .map(p -> p.toString()).orElse(null);

                                if (resultData == null) {
                                    code = 500;
                                    returnMessage = "Cannot find " + attribute;
                                    break;
                                }
                            }
                        }
                        nodeResult.put(attribute, resultData);
                        result.put(node, nodeResult);
                        returnMessage = result.toString();
                    } else {
                        code = 500;
                        returnMessage = message + " Cannot access: " + node;
                        doFailure(ctx, code, message);
                        break;
                    }
                }

                chefServerResult(ctx, code, returnMessage);
            } else {
                throw new SvcLogicException("Missing Mandatory param(s)  NodeList ");
            }
        } catch (JSONException e) {
            code = 401;
            logger.error(POSTING_REQUEST_JSON_ERROR_STR + "fetchResults", e);
            doFailure(ctx, code, POSTING_REQUEST_JSON_ERROR_STR + "fetchResults" + e.getMessage());
        } catch (Exception e) {
            code = 401;
            logger.error(POSTING_REQUEST_ERROR_STR + "fetchResults" , e);
            doFailure(ctx, code, POSTING_REQUEST_ERROR_STR + "fetchResults"+ e.getMessage());
        }
    }

    private ChefResponse getApiMethod(String chefAction) {
        ChefApiClient cac = chefApiClientFactory.create(chefserver, organizations, username, clientPrivatekey);
        return cac.get(chefAction);
    }

    /**
     * build node object
     */
    @SuppressWarnings("nls")
    @Override
    public void nodeObejctBuilder(Map<String, String> params, SvcLogicContext ctx) {
        logger.info("nodeObejctBuilder");
        String name = params.get("nodeobject.name");
        String normal = params.get("nodeobject.normal");
        String overrides = params.get("nodeobject.overrides");
        String defaults = params.get("nodeobject.defaults");
        String runList = params.get("nodeobject.run_list");
        String chefEnvironment = params.get("nodeobject.chef_environment");
        String nodeObject = "{\"json_class\":\"Chef::Node\",\"default\":{" + defaults
            + "},\"chef_type\":\"node\",\"run_list\":[" + runList + "],\"override\":{" + overrides
            + "},\"normal\": {" + normal + "},\"automatic\":{},\"name\":\"" + name + "\",\"chef_environment\":\""
            + chefEnvironment + "\",}";
        logger.info(nodeObject);
        ctx.setAttribute("chef.nodeObject", nodeObject);
    }

    /**
     * send get request to chef server
     */
    private void chefInfo(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {

        username = params.get("username");
        serverAddress = params.get("serverAddress");
        organizations = params.get("organizations");
        if (StringUtils.isNotBlank(username) && StringUtils.isNotBlank(serverAddress)
            && StringUtils.isNotBlank(organizations)) {
            chefserver = "https://" + serverAddress + "/organizations/" + organizations;
            clientPrivatekey = "/opt/onap/appc/chef/" + serverAddress + "/" + organizations + "/" + username + ".pem";
            logger.info(" clientPrivatekey  " + clientPrivatekey);
        } else {
            doFailure(ctx, 401, "Missing mandatory param(s) such as username, serverAddress, organizations");
        }
    }

    @SuppressWarnings("nls")
    @Override
    public void retrieveData(Map<String, String> params, SvcLogicContext ctx) {
        String allConfigData = params.get("allConfig");
        String key = params.get("key");
        String dgContext = params.get("dgContext");
        JSONObject jsonConfig = new JSONObject(allConfigData);
        String contextData = fetchContextData(key, jsonConfig);
        ctx.setAttribute(dgContext, contextData);
    }

    private String fetchContextData(String key, JSONObject jsonConfig) {
        try {
            return jsonConfig.getString(key);
        } catch (Exception e) {
            logger.error("Failed getting string value corresponding to " + key + ". Trying to fetch nested json object", e);
            try {
                return jsonConfig.getJSONObject(key).toString();
            } catch (Exception ex) {
                logger.error("Failed getting json object corresponding to " + key + ". Trying to fetch array", ex);
                return jsonConfig.getJSONArray(key).toString();
            }
        }
    }

    @SuppressWarnings("nls")
    @Override
    public void combineStrings(Map<String, String> params, SvcLogicContext ctx) {
        String string1 = params.get("String1");
        String string2 = params.get("String2");
        String dgContext = params.get("dgContext");
        String contextData = string1 + string2;
        ctx.setAttribute(dgContext, contextData);
    }

    /**
     * Send GET request to chef server
     */
    @SuppressWarnings("nls")

    @Override
    public void chefGet(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
        logger.info("chef get method");
        chefInfo(params, ctx);
        String chefAction = params.get(CHEF_ACTION_STR);
        int code;
        String message;

        if (privateKeyChecker.doesExist(clientPrivatekey)) {
            ChefResponse chefResponse = getApiMethod(chefAction);
            code = chefResponse.getStatusCode();
            message = chefResponse.getBody();
        } else {
            code = 500;
            message = CANNOT_FIND_PRIVATE_KEY_STR + clientPrivatekey;
        }
        chefServerResult(ctx, code, message);
    }

    /**
     * Send PUT request to chef server
     */
    @SuppressWarnings("nls")

    @Override
    public void chefPut(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
        chefInfo(params, ctx);
        String chefAction = params.get(CHEF_ACTION_STR);
        String chefNodeStr = params.get("chefRequestBody");
        int code;
        String message;
        if (privateKeyChecker.doesExist(clientPrivatekey)) {
            ChefApiClient chefApiClient = chefApiClientFactory.create(chefserver, organizations, username, clientPrivatekey);

            ChefResponse chefResponse = chefApiClient.put(chefAction, chefNodeStr);
            code = chefResponse.getStatusCode();
            message = chefResponse.getBody();
        } else {
            code = 500;
            message = CANNOT_FIND_PRIVATE_KEY_STR + clientPrivatekey;
        }
        logger.info(code + "   " + message);
        chefServerResult(ctx, code, message);
    }

    /**
     * send Post request to chef server
     */
    @Override
    public void chefPost(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
        chefInfo(params, ctx);
        logger.info("chef Post method");
        logger.info(username + " " + clientPrivatekey + " " + chefserver + " " + organizations);
        String chefNodeStr = params.get("chefRequestBody");
        String chefAction = params.get(CHEF_ACTION_STR);

        int code;
        String message;
        // should load pem from somewhere else
        if (privateKeyChecker.doesExist(clientPrivatekey)) {
            ChefApiClient chefApiClient = chefApiClientFactory.create(chefserver, organizations, username, clientPrivatekey);

            // need pass path into it
            // "/nodes/testnode"
            ChefResponse chefResponse = chefApiClient.post(chefAction, chefNodeStr);
            code = chefResponse.getStatusCode();
            message = chefResponse.getBody();
        } else {
            code = 500;
            message = CANNOT_FIND_PRIVATE_KEY_STR + clientPrivatekey;
        }
        logger.info(code + "   " + message);
        chefServerResult(ctx, code, message);
    }

    /**
     * send delete request to chef server
     */
    @Override
    public void chefDelete(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
        logger.info("chef delete method");
        chefInfo(params, ctx);
        String chefAction = params.get(CHEF_ACTION_STR);
        int code;
        String message;
        if (privateKeyChecker.doesExist(clientPrivatekey)) {
            ChefApiClient chefApiClient = chefApiClientFactory.create(chefserver, organizations, username, clientPrivatekey);
            ChefResponse chefResponse = chefApiClient.delete(chefAction);
            code = chefResponse.getStatusCode();
            message = chefResponse.getBody();
        } else {
            code = 500;
            message = CANNOT_FIND_PRIVATE_KEY_STR + clientPrivatekey;
        }
        logger.info(code + "   " + message);
        chefServerResult(ctx, code, message);
    }

    /**
     * Trigger target vm run chef
     */
    @Override
    public void trigger(Map<String, String> params, SvcLogicContext svcLogicContext) {
        logger.info("Run trigger method");
        String tVmIp = params.get("ip");

        try {
            ChefResponse chefResponse = chefApiClientFactory.create(tVmIp, organizations).get("");
            chefClientResult(svcLogicContext, chefResponse.getStatusCode(), chefResponse.getBody());
            svcLogicContext.setAttribute("chefAgent.code", "200");
        } catch (Exception e) {
            logger.error("An error occurred when executing trigger method", e);
            svcLogicContext.setAttribute("chefAgent.code", "500");
            svcLogicContext.setAttribute("chefAgent.message", e.toString());
        }
    }

    @SuppressWarnings("nls")
    @Override
    public void checkPushJob(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
        int code;
        try {
            chefInfo(params, ctx);
            String jobID = params.get("jobid");
            String retry = params.get("retryTimes");
            String intrva = params.get("retryInterval");
            if (StringUtils.isNotBlank(jobID) && StringUtils.isNotBlank(retry) && StringUtils.isNotBlank(intrva)) {

                int retryTimes = Integer.parseInt(params.get("retryTimes"));
                int retryInterval = Integer.parseInt(params.get("retryInterval"));

                String chefAction = "/pushy/jobs/" + jobID;

                String message = StringUtils.EMPTY;
                String status = StringUtils.EMPTY;
                for (int i = 0; i < retryTimes; i++) {
                    sleepFor(retryInterval);
                    ChefResponse chefResponse = getApiMethod(chefAction);
                    code = chefResponse.getStatusCode();
                    message = chefResponse.getBody();
                    JSONObject obj = new JSONObject(message);
                    status = obj.getString("status");
                    if (!"running".equals(status)) {
                        logger.info(i + " time " + code + "   " + status);
                        break;
                    }
                }
                resolveSvcLogicAttributes(ctx, message, status);
            } else {
                throw new SvcLogicException("Missing Mandatory param(s) retryTimes , retryInterval ");
            }
        } catch (Exception e) {
            code = 401;
            logger.error("An error occurred when executing checkPushJob method", e);
            doFailure(ctx, code, e.getMessage());
        }
    }

    private void resolveSvcLogicAttributes(SvcLogicContext svcLogic, String message, String status) {
        if ("complete".equals(status)) {
            svcLogic.setAttribute(CHEF_SERVER_RESULT_CODE_STR, "200");
            svcLogic.setAttribute(CHEF_SERVER_RESULT_MSG_STR, message);
        } else if ("running".equals(status)) {
            svcLogic.setAttribute(CHEF_SERVER_RESULT_CODE_STR, "202");
            svcLogic.setAttribute(CHEF_SERVER_RESULT_MSG_STR, "chef client runtime out");
        } else {
            svcLogic.setAttribute(CHEF_SERVER_RESULT_CODE_STR, "500");
            svcLogic.setAttribute(CHEF_SERVER_RESULT_MSG_STR, message);
        }
    }

    private void sleepFor(int retryInterval) {
        try {
            Thread.sleep(retryInterval); // 1000 milliseconds is one second.
        } catch (InterruptedException ex) {
            Thread.currentThread().interrupt();
        }
    }

    @SuppressWarnings("nls")
    @Override
    public void pushJob(Map<String, String> params, SvcLogicContext ctx) throws SvcLogicException {
        int code;
        try {
            chefInfo(params, ctx);
            String pushRequest = params.get("pushRequest");
            String chefAction = "/pushy/jobs";
            ChefApiClient chefApiClient = chefApiClientFactory.create(chefserver, organizations, username, clientPrivatekey);
            ChefResponse chefResponse = chefApiClient.post(chefAction, pushRequest);

            code = chefResponse.getStatusCode();
            String message = chefResponse.getBody();
            if (code == 201) {
                int startIndex = message.indexOf("jobs") + 6;
                int endIndex = message.length() - 2;
                String jobID = message.substring(startIndex, endIndex);
                ctx.setAttribute("jobID", jobID);
                logger.info(jobID);
            }
            chefServerResult(ctx, code, message);
        } catch (Exception e) {
            code = 401;
            logger.error("An error occurred when executing pushJob method", e);
            doFailure(ctx, code, e.getMessage());
        }
    }

    @SuppressWarnings("static-method")
    private void chefServerResult(SvcLogicContext svcLogicContext, int code, String message) {
        initSvcLogic(svcLogicContext, code, message, "server");
    }

    @SuppressWarnings("static-method")
    private void chefClientResult(SvcLogicContext svcLogicContext, int code, String message) {
        initSvcLogic(svcLogicContext, code, message, "client");
    }

    private void initSvcLogic(SvcLogicContext svcLogicContext, int code, String message, String target) {

        String codeStr = "server".equals(target) ? CHEF_SERVER_RESULT_CODE_STR : CHEF_CLIENT_RESULT_CODE_STR;
        String messageStr = "client".equals(target) ? CHEF_CLIENT_RESULT_MSG_STR : CHEF_SERVER_RESULT_MSG_STR;

        svcLogicContext.setStatus(OUTCOME_SUCCESS);
        svcLogicContext.setAttribute(codeStr, Integer.toString(code));
        svcLogicContext.setAttribute(messageStr, message);
        logger.info(codeStr + ": " + svcLogicContext.getAttribute(codeStr));
        logger.info(messageStr + ": " + svcLogicContext.getAttribute(messageStr));
    }

    @SuppressWarnings("static-method")
    private void doFailure(SvcLogicContext svcLogic, int code, String message) throws SvcLogicException {

        String cutMessage = message.contains("\n") ? message.substring(message.indexOf('\n')) : message;

        svcLogic.setStatus(OUTCOME_FAILURE);
        svcLogic.setAttribute(CHEF_SERVER_RESULT_CODE_STR, Integer.toString(code));
        svcLogic.setAttribute(CHEF_SERVER_RESULT_MSG_STR, cutMessage);

        throw new SvcLogicException("Chef Adapter error:" + cutMessage);
    }
}