Ejemplo n.º 1
0
 public function getTemplateIdForLanguage($request)
 {
     $json = json_encode($request->parameters);
     $contents = new Contents();
     $jsonObj = json_decode($json);
     $jsonMessage = $contents->validateJsonForContentMetadata($jsonObj);
     if ($jsonMessage != Message::SUCCESS) {
         $response = array("status" => "ERROR", "status_code" => '400', 'msgs' => $jsonMessage);
         $this->outputError($response);
         return;
     }
     if (!$contents->setValuesFromJsonObj($jsonObj)) {
         $response = array("status" => "ERROR", "status_code" => '400', 'msgs' => Message::ERROR_INVAID_REQUEST_BODY);
         $this->outputError($response);
         return;
     }
     if (trim($contents->cf_cm_id) == '') {
         $response = array("status" => "ERROR", "status_code" => '400', 'msgs' => Message::ERROR_BLANK_CMD_ID);
         $this->outputError($response);
         return;
     }
     $templates = $contents->getTemplateIdForLanguage($contents);
     // echo "<pre>"; print_r($templates['templateId']);
     if (!empty($templates)) {
         $response = array("status" => "SUCCESS-BUSINESS", "status_code" => '200', 'templates' => $templates['templateId']);
         $this->outputSuccess($response);
         return;
     } else {
         $response = array("status" => "ERROR-BUSINESS", "status_code" => '404', 'msgs' => 'No template available !.');
         $this->outputError($response);
         return;
     }
 }