public function doAction() { $uploadFile = new Upload(); try { $stdResult = $uploadFile->uploadFiles($_FILES); } catch (Exception $e) { $stdResult = array(); $this->result = array('errors' => array(array("code" => -1, "message" => $e->getMessage()))); $this->api_output['message'] = $e->getMessage(); } $arFiles = array(); foreach ($stdResult as $input_name => $input_value) { $arFiles[] = $input_value->name; } //if fileupload was failed this index ( 0 = does not exists ) $default_project_name = @$arFiles[0]; if (count($arFiles) > 1) { $default_project_name = "MATECAT_PROJ-" . date("Ymdhi"); } if (empty($this->project_name)) { $this->project_name = $default_project_name; //'NO_NAME'.$this->create_project_name(); } if (empty($this->source_lang)) { $this->api_output['message'] = "Missing source language."; $this->result['errors'][] = array("code" => -3, "message" => "Missing source language."); } if (empty($this->target_lang)) { $this->api_output['message'] = "Missing target language."; $this->result['errors'][] = array("code" => -4, "message" => "Missing target language."); } //ONE OR MORE ERRORS OCCURRED : EXITING //for now we sent to api output only the LAST error message, but we log all if (!empty($this->result['errors'])) { $msg = "Error \n\n " . var_export(array_merge($this->result, $_POST), true); Log::doLog($msg); Utils::sendErrMailReport($msg); return -1; //exit code } /* Do conversions here */ $converter = new ConvertFileWrapper($stdResult); $converter->intDir = $uploadFile->getUploadPath(); $converter->errDir = INIT::$CONVERSIONERRORS_REPOSITORY . DIRECTORY_SEPARATOR . $uploadFile->getDirUploadToken(); $converter->cookieDir = $uploadFile->getDirUploadToken(); $converter->source_lang = $this->source_lang; $converter->target_lang = $this->target_lang; $converter->doAction(); $status = $converter->checkResult(); if (!empty($status)) { $this->api_output['message'] = 'Project Conversion Failure'; $this->api_output['debug'] = $status; $this->result['errors'] = $status; Log::doLog($status); return -1; } /* Do conversions here */ $projectManager = new ProjectManager(); $projectStructure = $projectManager->getProjectStructure(); $projectStructure['project_name'] = $this->project_name; $projectStructure['result'] = $this->result; $projectStructure['private_tm_key'] = $this->private_tm_key; $projectStructure['private_tm_user'] = $this->private_tm_user; $projectStructure['private_tm_pass'] = $this->private_tm_pass; $projectStructure['uploadToken'] = $uploadFile->getDirUploadToken(); $projectStructure['array_files'] = $arFiles; //list of file name $projectStructure['source_language'] = $this->source_lang; $projectStructure['target_language'] = explode(',', $this->target_lang); $projectStructure['mt_engine'] = $this->mt_engine; $projectStructure['tms_engine'] = $this->tms_engine; $projectStructure['status'] = Constants_ProjectStatus::STATUS_NOT_READY_FOR_ANALYSIS; $projectStructure['skip_lang_validation'] = true; $projectManager = new ProjectManager($projectStructure); $projectManager->createProject(); $this->result = $projectStructure['result']; if (!empty($projectStructure['result']['errors'])) { //errors already logged $this->api_output['message'] = 'Project Creation Failure'; $this->api_output['debug'] = $projectStructure['result']['errors']; } else { //everything ok $this->api_output['status'] = 'OK'; $this->api_output['message'] = 'Success'; $this->api_output['id_project'] = $projectStructure['result']['id_project']; $this->api_output['project_pass'] = $projectStructure['result']['ppassword']; } }
private function handleZip($conversionHandler) { // this makes the conversionhandler accumulate eventual errors on files and continue $conversionHandler->setStopOnFileException(false); $internalZipFileNames = $conversionHandler->extractZipFile(); //call convertFileWrapper and start conversions for each file if ($conversionHandler->uploadError) { $fileErrors = $conversionHandler->getUploadedFiles(); foreach ($fileErrors as $fileError) { if (count($fileError->error) == 0) { continue; } $brokenFileName = ZipArchiveExtended::getFileName($fileError->name); /* * TODO * return error code is 2 because * <=0 is for errors * 1 is OK * * In this case, we raise warnings, hence the return code must be a new code */ $this->result['code'] = 2; $this->result['errors'][$brokenFileName] = array('code' => $fileError->error['code'], 'message' => $fileError->error['message'], 'debug' => $brokenFileName); } } $realFileNames = array_map(array('ZipArchiveExtended', 'getFileName'), $internalZipFileNames); foreach ($realFileNames as $i => &$fileObject) { $fileObject = array('name' => $fileObject, 'size' => filesize($this->intDir . DIRECTORY_SEPARATOR . $internalZipFileNames[$i])); } $this->result['data']['zipFiles'] = json_encode($realFileNames); $stdFileObjects = array(); if ($internalZipFileNames !== null) { foreach ($internalZipFileNames as $fName) { $newStdFile = new stdClass(); $newStdFile->name = $fName; $stdFileObjects[] = $newStdFile; } } else { $errors = $conversionHandler->getResult(); $errors = array_map(array('Upload', 'formatExceptionMessage'), $errors['errors']); $this->result['errors'] = array_merge($this->result['errors'], $errors); return false; } /* Do conversions here */ $converter = new ConvertFileWrapper($stdFileObjects, false); $converter->intDir = $this->intDir; $converter->errDir = $this->errDir; $converter->cookieDir = $this->cookieDir; $converter->source_lang = $this->source_lang; $converter->target_lang = $this->target_lang; $converter->doAction(); $errors = $converter->checkResult(); if (count($errors) > 0) { $this->result['code'] = 2; foreach ($errors as $__err) { $brokenFileName = ZipArchiveExtended::getFileName($__err['debug']); if (!isset($this->result['errors'][$brokenFileName])) { $this->result['errors'][$brokenFileName] = array('code' => $__err['code'], 'message' => $__err['message'], 'debug' => $brokenFileName); } } } }
public function doAction() { if (!$this->validateAuthHeader()) { header('HTTP/1.0 401 Unauthorized'); $this->api_output['message'] = 'Authentication failed'; return -1; } if (@count($this->api_output['debug']) > 0) { return; } $uploadFile = new Upload(); try { $stdResult = $uploadFile->uploadFiles($_FILES); } catch (Exception $e) { $stdResult = array(); $this->result = array('errors' => array(array("code" => -1, "message" => $e->getMessage()))); $this->api_output['message'] = $e->getMessage(); } $arFiles = array(); foreach ($stdResult as $input_name => $input_value) { $arFiles[] = $input_value->name; } //if fileupload was failed this index ( 0 = does not exists ) $default_project_name = @$arFiles[0]; if (count($arFiles) > 1) { $default_project_name = "MATECAT_PROJ-" . date("Ymdhi"); } if (empty($this->project_name)) { $this->project_name = $default_project_name; //'NO_NAME'.$this->create_project_name(); } if (empty($this->source_lang)) { $this->api_output['message'] = "Missing source language."; $this->result['errors'][] = array("code" => -3, "message" => "Missing source language."); } if (empty($this->target_lang)) { $this->api_output['message'] = "Missing target language."; $this->result['errors'][] = array("code" => -4, "message" => "Missing target language."); } //ONE OR MORE ERRORS OCCURRED : EXITING //for now we sent to api output only the LAST error message, but we log all if (!empty($this->result['errors'])) { $msg = "Error \n\n " . var_export(array_merge($this->result, $_POST), true); Log::doLog($msg); Utils::sendErrMailReport($msg); return -1; //exit code } $cookieDir = $uploadFile->getDirUploadToken(); $intDir = INIT::$UPLOAD_REPOSITORY . DIRECTORY_SEPARATOR . $cookieDir; $errDir = INIT::$STORAGE_DIR . DIRECTORY_SEPARATOR . 'conversion_errors' . DIRECTORY_SEPARATOR . $cookieDir; $response_stack = array(); foreach ($arFiles as $file_name) { $ext = FilesStorage::pathinfo_fix($file_name, PATHINFO_EXTENSION); $conversionHandler = new ConversionHandler(); $conversionHandler->setFileName($file_name); $conversionHandler->setSourceLang($this->source_lang); $conversionHandler->setTargetLang($this->target_lang); $conversionHandler->setSegmentationRule($this->seg_rule); $conversionHandler->setCookieDir($cookieDir); $conversionHandler->setIntDir($intDir); $conversionHandler->setErrDir($errDir); $status = array(); if ($ext == "zip") { // this makes the conversionhandler accumulate eventual errors on files and continue $conversionHandler->setStopOnFileException(false); $fileObjects = $conversionHandler->extractZipFile(); //call convertFileWrapper and start conversions for each file if ($conversionHandler->uploadError) { $fileErrors = $conversionHandler->getUploadedFiles(); foreach ($fileErrors as $fileError) { if (count($fileError->error) == 0) { continue; } $brokenFileName = ZipArchiveExtended::getFileName($fileError->name); /* * TODO * return error code is 2 because * <=0 is for errors * 1 is OK * * In this case, we raise warnings, hence the return code must be a new code */ $this->result['code'] = 2; $this->result['errors'][$brokenFileName] = array('code' => $fileError->error['code'], 'message' => $fileError->error['message'], 'debug' => $brokenFileName); } } $realFileObjectInfo = $fileObjects; $realFileObjectNames = array_map(array('ZipArchiveExtended', 'getFileName'), $fileObjects); foreach ($realFileObjectNames as $i => &$fileObject) { $__fileName = $fileObject; $__realFileName = $realFileObjectInfo[$i]; $filesize = filesize($intDir . DIRECTORY_SEPARATOR . $__realFileName); $fileObject = array('name' => $__fileName, 'size' => $filesize); $realFileObjectInfo[$i] = $fileObject; } $this->result['data'][$file_name] = json_encode($realFileObjectNames); $stdFileObjects = array(); if ($fileObjects !== null) { foreach ($fileObjects as $fName) { if (isset($fileErrors) && isset($fileErrors->{$fName}) && !empty($fileErrors->{$fName}->error)) { continue; } $newStdFile = new stdClass(); $newStdFile->name = $fName; $stdFileObjects[] = $newStdFile; } } else { $errors = $conversionHandler->getResult(); $errors = array_map(array('Upload', 'formatExceptionMessage'), $errors['errors']); $this->result['errors'] = array_merge($this->result['errors'], $errors); $this->api_output['message'] = "Zip Error"; $this->api_output['debug'] = $this->result['errors']; return false; } /* Do conversions here */ $converter = new ConvertFileWrapper($stdFileObjects, false); $converter->intDir = $intDir; $converter->errDir = $errDir; $converter->cookieDir = $cookieDir; $converter->source_lang = $this->source_lang; $converter->target_lang = $this->target_lang; $converter->doAction(); $status = $errors = $converter->checkResult(); if (count($errors) > 0) { // $this->result[ 'errors' ] = array_merge( $this->result[ 'errors' ], $errors ); $this->result['code'] = 2; foreach ($errors as $__err) { $brokenFileName = ZipArchiveExtended::getFileName($__err['debug']); if (!isset($this->result['errors'][$brokenFileName])) { $this->result['errors'][$brokenFileName] = array('code' => $__err['code'], 'message' => $__err['message'], 'debug' => $brokenFileName); } } } } else { $conversionHandler->doAction(); $this->result = $conversionHandler->getResult(); if ($this->result['code'] > 0) { $this->result = array(); } } } $status = array_values($status); if (!empty($status)) { $this->api_output['message'] = 'Project Conversion Failure'; $this->api_output['debug'] = $status; $this->result['errors'] = $status; Log::doLog($status); return -1; } /* Do conversions here */ if (isset($this->result['data']) && !empty($this->result['data'])) { foreach ($this->result['data'] as $zipFileName => $zipFiles) { $zipFiles = json_decode($zipFiles, true); $fileNames = Utils::array_column($zipFiles, 'name'); $arFiles = array_merge($arFiles, $fileNames); } } $newArFiles = array(); $linkFiles = scandir($intDir); foreach ($arFiles as $__fName) { if ('zip' == FilesStorage::pathinfo_fix($__fName, PATHINFO_EXTENSION)) { $fs = new FilesStorage(); $fs->cacheZipArchive(sha1_file($intDir . DIRECTORY_SEPARATOR . $__fName), $intDir . DIRECTORY_SEPARATOR . $__fName); $linkFiles = scandir($intDir); //fetch cache links, created by converter, from upload directory foreach ($linkFiles as $storedFileName) { //check if file begins with the name of the zip file. // If so, then it was stored in the zip file. if (strpos($storedFileName, $__fName) !== false && substr($storedFileName, 0, strlen($__fName)) == $__fName) { //add file name to the files array $newArFiles[] = $storedFileName; } } } else { //this file was not in a zip. Add it normally if (file_exists($intDir . DIRECTORY_SEPARATOR . $__fName)) { $newArFiles[] = $__fName; } } } $arFiles = $newArFiles; $projectManager = new ProjectManager(); $projectStructure = $projectManager->getProjectStructure(); $projectStructure['project_name'] = $this->project_name; $projectStructure['job_subject'] = $this->subject; $projectStructure['result'] = $this->result; $projectStructure['private_tm_key'] = $this->private_tm_key; $projectStructure['private_tm_user'] = $this->private_tm_user; $projectStructure['private_tm_pass'] = $this->private_tm_pass; $projectStructure['uploadToken'] = $uploadFile->getDirUploadToken(); $projectStructure['array_files'] = $arFiles; //list of file name $projectStructure['source_language'] = $this->source_lang; $projectStructure['target_language'] = explode(',', $this->target_lang); $projectStructure['mt_engine'] = $this->mt_engine; $projectStructure['tms_engine'] = $this->tms_engine; $projectStructure['status'] = Constants_ProjectStatus::STATUS_NOT_READY_FOR_ANALYSIS; $projectStructure['skip_lang_validation'] = true; $projectStructure['owner'] = $this->owner; if ($this->current_user != null) { $projectStructure['id_customer'] = $this->current_user->getEmail(); } if ($this->current_user != null) { $projectStructure['id_customer'] = $this->current_user->getEmail(); } $projectManager = new ProjectManager($projectStructure); $projectManager->createProject(); $this->result = $projectStructure['result']; if (!empty($projectStructure['result']['errors'])) { //errors already logged $this->api_output['message'] = 'Project Creation Failure'; $this->api_output['debug'] = array_values($projectStructure['result']['errors']); } else { //everything ok $this->api_output['status'] = 'OK'; $this->api_output['message'] = 'Success'; $this->api_output['id_project'] = $projectStructure['result']['id_project']; $this->api_output['project_pass'] = $projectStructure['result']['ppassword']; $this->api_output['new_keys'] = $this->new_keys; $this->api_output['analyze_url'] = INIT::$HTTPHOST . "/analyze/" . $projectStructure['project_name'] . "/" . $projectStructure['result']['id_project'] . "-" . $projectStructure['result']['ppassword']; } }
public function doAction() { $this->result['code'] = 0; // No Good, Default if (empty($this->file_name)) { $this->result['code'] = -1; // No Good, Default $this->result['errors'][] = array("code" => -1, "message" => "Error: missing file name."); return false; } $ext = FilesStorage::pathinfo_fix($this->file_name, PATHINFO_EXTENSION); $conversionHandler = new ConversionHandler(); $conversionHandler->setFileName($this->file_name); $conversionHandler->setSourceLang($this->source_lang); $conversionHandler->setTargetLang($this->target_lang); $conversionHandler->setSegmentationRule($this->segmentation_rule); $conversionHandler->setCookieDir($this->cookieDir); $conversionHandler->setIntDir($this->intDir); $conversionHandler->setErrDir($this->errDir); if ($ext == "zip") { if ($this->convertZipFile) { // this makes the conversionhandler accumulate eventual errors on files and continue $conversionHandler->setStopOnFileException(false); $internalZipFileNames = $conversionHandler->extractZipFile(); //call convertFileWrapper and start conversions for each file if ($conversionHandler->uploadError) { $fileErrors = $conversionHandler->getUploadedFiles(); foreach ($fileErrors as $fileError) { if (count($fileError->error) == 0) { continue; } $brokenFileName = ZipArchiveExtended::getFileName($fileError->name); /* * TODO * return error code is 2 because * <=0 is for errors * 1 is OK * * In this case, we raise warnings, hence the return code must be a new code */ $this->result['code'] = 2; $this->result['errors'][$brokenFileName] = array('code' => $fileError->error['code'], 'message' => $fileError->error['message'], 'debug' => $brokenFileName); } } $realFileNames = array_map(array('ZipArchiveExtended', 'getFileName'), $internalZipFileNames); foreach ($realFileNames as $i => &$fileObject) { $fileObject = array('name' => $fileObject, 'size' => filesize($this->intDir . DIRECTORY_SEPARATOR . $internalZipFileNames[$i])); } $this->result['data']['zipFiles'] = json_encode($realFileNames); $stdFileObjects = array(); if ($internalZipFileNames !== null) { foreach ($internalZipFileNames as $fName) { $newStdFile = new stdClass(); $newStdFile->name = $fName; $stdFileObjects[] = $newStdFile; } } else { $errors = $conversionHandler->getResult(); $errors = array_map(array('Upload', 'formatExceptionMessage'), $errors['errors']); $this->result['errors'] = array_merge($this->result['errors'], $errors); return false; } /* Do conversions here */ $converter = new ConvertFileWrapper($stdFileObjects, false); $converter->intDir = $this->intDir; $converter->errDir = $this->errDir; $converter->cookieDir = $this->cookieDir; $converter->source_lang = $this->source_lang; $converter->target_lang = $this->target_lang; $converter->doAction(); $errors = $converter->checkResult(); if (count($errors) > 0) { $this->result['code'] = 2; foreach ($errors as $__err) { $brokenFileName = ZipArchiveExtended::getFileName($__err['debug']); if (!isset($this->result['errors'][$brokenFileName])) { $this->result['errors'][$brokenFileName] = array('code' => $__err['code'], 'message' => $__err['message'], 'debug' => $brokenFileName); } } } } else { $this->result['errors'][] = array("code" => -2, "message" => "Nested zip files are not allowed"); return false; } } else { $conversionHandler->doAction(); $this->result = $conversionHandler->getResult(); } isset($this->result['errors']) ? null : ($this->result['errors'] = array()); if (count($this->result['errors']) == 0) { $this->result['code'] = 1; } else { $this->result['errors'] = array_values($this->result['errors']); } }