コード例 #1
0
 public function getMaxMetaContentId($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;
     }
     /*if (trim( $contents->cf_template_id ) == '') {
           $response = array("status" => "ERROR", "status_code" => '400', 'msgs' => Message::ERROR_BLANK_CF_TEMPLATE_ID );
           $this->outputError($response);
           return;
       }*/
     $maxMCFID = $contents->getMaxMetaContentId($contents);
     if (!empty($maxMCFID)) {
         $response = array("status" => "SUCCESS-BUSINESS", "status_code" => '200', 'maxMCFID' => $maxMCFID['maxChildId']);
         $this->outputSuccess($response);
         return;
     } else {
         $response = array("status" => "ERROR-BUSINESS", "status_code" => '404', 'msgs' => 'No Content File available !.');
         $this->outputError($response);
         return;
     }
 }