@@ -8,20 +8,20 @@ |
||
8 | 8 | * |
9 | 9 | * @return array|null |
10 | 10 | */ |
11 | - public function check( ?array $tmp = [] ): ?array { |
|
11 | + public function check(?array $tmp = []): ?array { |
|
12 | 12 | $fileType = []; |
13 | 13 | |
14 | - if ( isset( $tmp[ 0 ] ) ) { |
|
15 | - preg_match( '#tool-id\s*=\s*"matecat-converter(\s+([^"]+))?"#i', $tmp[ 0 ], $matches ); |
|
16 | - if ( !empty( $matches ) ) { |
|
17 | - $fileType[ 'proprietary' ] = false; |
|
18 | - $fileType[ 'proprietary_name' ] = 'MateCAT Converter'; |
|
19 | - $fileType[ 'proprietary_short_name' ] = 'matecat_converter'; |
|
20 | - if ( isset( $matches[ 2 ] ) ) { |
|
21 | - $fileType[ 'converter_version' ] = $matches[ 2 ]; |
|
14 | + if (isset($tmp[0])) { |
|
15 | + preg_match('#tool-id\s*=\s*"matecat-converter(\s+([^"]+))?"#i', $tmp[0], $matches); |
|
16 | + if (!empty($matches)) { |
|
17 | + $fileType['proprietary'] = false; |
|
18 | + $fileType['proprietary_name'] = 'MateCAT Converter'; |
|
19 | + $fileType['proprietary_short_name'] = 'matecat_converter'; |
|
20 | + if (isset($matches[2])) { |
|
21 | + $fileType['converter_version'] = $matches[2]; |
|
22 | 22 | } else { |
23 | 23 | // First converter release didn't specify version |
24 | - $fileType[ 'converter_version' ] = '1.0'; |
|
24 | + $fileType['converter_version'] = '1.0'; |
|
25 | 25 | } |
26 | 26 | |
27 | 27 | return $fileType; |
@@ -8,22 +8,22 @@ |
||
8 | 8 | * |
9 | 9 | * @return array|null |
10 | 10 | */ |
11 | - public function check( ?array $tmp = [] ): ?array { |
|
11 | + public function check(?array $tmp = []): ?array { |
|
12 | 12 | $fileType = []; |
13 | 13 | |
14 | - if ( isset( $tmp[ 0 ] ) ) { |
|
15 | - preg_match( '|<xliff.*?\sversion\s?=\s?["\'](.*?)["\']|si', substr( $tmp[ 0 ], 0, 1000 ), $versionMatches ); |
|
16 | - preg_match( '|<xliff.*?\sxmlns\s?=\s?["\']urn:oasis:names:tc:xliff:document:(.*?)["\']|si', substr( $tmp[ 0 ], 0, 1000 ), $xmlnsMatches ); |
|
14 | + if (isset($tmp[0])) { |
|
15 | + preg_match('|<xliff.*?\sversion\s?=\s?["\'](.*?)["\']|si', substr($tmp[0], 0, 1000), $versionMatches); |
|
16 | + preg_match('|<xliff.*?\sxmlns\s?=\s?["\']urn:oasis:names:tc:xliff:document:(.*?)["\']|si', substr($tmp[0], 0, 1000), $xmlnsMatches); |
|
17 | 17 | |
18 | - if ( !empty( $versionMatches ) && !empty( $xmlnsMatches ) ) { |
|
19 | - $version = $versionMatches[ 1 ]; |
|
20 | - $xmlns = $xmlnsMatches[ 1 ]; |
|
18 | + if (!empty($versionMatches) && !empty($xmlnsMatches)) { |
|
19 | + $version = $versionMatches[1]; |
|
20 | + $xmlns = $xmlnsMatches[1]; |
|
21 | 21 | |
22 | - if ( $version === $xmlns && $version >= 2 ) { |
|
23 | - $fileType[ 'proprietary' ] = false; |
|
24 | - $fileType[ 'proprietary_name' ] = 'Xliff v' . $version . ' File'; |
|
25 | - $fileType[ 'proprietary_short_name' ] = 'xliff_v2'; |
|
26 | - $fileType[ 'converter_version' ] = '2.0'; |
|
22 | + if ($version === $xmlns && $version >= 2) { |
|
23 | + $fileType['proprietary'] = false; |
|
24 | + $fileType['proprietary_name'] = 'Xliff v' . $version . ' File'; |
|
25 | + $fileType['proprietary_short_name'] = 'xliff_v2'; |
|
26 | + $fileType['converter_version'] = '2.0'; |
|
27 | 27 | |
28 | 28 | return $fileType; |
29 | 29 | } |
@@ -8,5 +8,5 @@ |
||
8 | 8 | * |
9 | 9 | * @return array|null |
10 | 10 | */ |
11 | - public function check( ?array $tmp = [] ): ?array; |
|
11 | + public function check(?array $tmp = []): ?array; |
|
12 | 12 | } |
@@ -9,12 +9,12 @@ discard block |
||
9 | 9 | /** |
10 | 10 | * @var array |
11 | 11 | */ |
12 | - private static array $versions_1 = [ '1.0', '1.1', '1.2' ]; |
|
12 | + private static array $versions_1 = ['1.0', '1.1', '1.2']; |
|
13 | 13 | |
14 | 14 | /** |
15 | 15 | * @var array |
16 | 16 | */ |
17 | - private static array $versions_2 = [ '2.0', '2.1' ]; |
|
17 | + private static array $versions_2 = ['2.0', '2.1']; |
|
18 | 18 | |
19 | 19 | /** |
20 | 20 | * @param string $xliffContent |
@@ -23,16 +23,16 @@ discard block |
||
23 | 23 | * @throws NotSupportedVersionException |
24 | 24 | * @throws NotValidFileException |
25 | 25 | */ |
26 | - public static function detect( string $xliffContent ): int { |
|
27 | - preg_match( '|<xliff.*?\sversion\s?=\s?["\'](.*?)["\']|si', substr( $xliffContent, 0, 1000 ), $versionMatches ); |
|
26 | + public static function detect(string $xliffContent): int { |
|
27 | + preg_match('|<xliff.*?\sversion\s?=\s?["\'](.*?)["\']|si', substr($xliffContent, 0, 1000), $versionMatches); |
|
28 | 28 | |
29 | - if ( empty( $versionMatches ) ) { |
|
30 | - throw new NotValidFileException( 'This is not a valid xliff file' ); |
|
29 | + if (empty($versionMatches)) { |
|
30 | + throw new NotValidFileException('This is not a valid xliff file'); |
|
31 | 31 | } |
32 | 32 | |
33 | - $version = $versionMatches[ 1 ]; |
|
33 | + $version = $versionMatches[1]; |
|
34 | 34 | |
35 | - return self::resolveVersion( $version ); |
|
35 | + return self::resolveVersion($version); |
|
36 | 36 | } |
37 | 37 | |
38 | 38 | /** |
@@ -41,15 +41,15 @@ discard block |
||
41 | 41 | * @return int |
42 | 42 | * @throws NotSupportedVersionException |
43 | 43 | */ |
44 | - private static function resolveVersion( string $version ): int { |
|
45 | - if ( in_array( $version, self::$versions_1 ) ) { |
|
44 | + private static function resolveVersion(string $version): int { |
|
45 | + if (in_array($version, self::$versions_1)) { |
|
46 | 46 | return 1; |
47 | 47 | } |
48 | 48 | |
49 | - if ( in_array( $version, self::$versions_2 ) ) { |
|
49 | + if (in_array($version, self::$versions_2)) { |
|
50 | 50 | return 2; |
51 | 51 | } |
52 | 52 | |
53 | - throw new NotSupportedVersionException( 'Not supported version' ); |
|
53 | + throw new NotSupportedVersionException('Not supported version'); |
|
54 | 54 | } |
55 | 55 | } |
@@ -28,14 +28,14 @@ |
||
28 | 28 | ?LoggerInterface $logger = null, |
29 | 29 | ?XliffReplacerCallbackInterface $callback = null |
30 | 30 | ): AbstractXliffReplacer { |
31 | - $info = XliffProprietaryDetect::getInfo( $originalXliffPath ); |
|
31 | + $info = XliffProprietaryDetect::getInfo($originalXliffPath); |
|
32 | 32 | |
33 | - if ( $info[ 'version' ] == 1 && $info[ 'proprietary_short_name' ] !== 'trados' ) { |
|
34 | - return new Xliff12( $originalXliffPath, $info[ 'version' ], $data, $transUnits, $targetLang, $outputFilePath, $setSourceInTarget, $logger, $callback ); |
|
35 | - } elseif ( $info[ 'version' ] == 2 ) { |
|
36 | - return new Xliff20( $originalXliffPath, $info[ 'version' ], $data, $transUnits, $targetLang, $outputFilePath, $setSourceInTarget, $logger, $callback ); |
|
33 | + if ($info['version'] == 1 && $info['proprietary_short_name'] !== 'trados') { |
|
34 | + return new Xliff12($originalXliffPath, $info['version'], $data, $transUnits, $targetLang, $outputFilePath, $setSourceInTarget, $logger, $callback); |
|
35 | + } elseif ($info['version'] == 2) { |
|
36 | + return new Xliff20($originalXliffPath, $info['version'], $data, $transUnits, $targetLang, $outputFilePath, $setSourceInTarget, $logger, $callback); |
|
37 | 37 | } |
38 | 38 | |
39 | - return new XliffSdl( $originalXliffPath, $info[ 'version' ], $data, $transUnits, $targetLang, $outputFilePath, $setSourceInTarget, $logger, $callback ); |
|
39 | + return new XliffSdl($originalXliffPath, $info['version'], $data, $transUnits, $targetLang, $outputFilePath, $setSourceInTarget, $logger, $callback); |
|
40 | 40 | } |
41 | 41 | } |
@@ -12,5 +12,5 @@ |
||
12 | 12 | * |
13 | 13 | * @return bool |
14 | 14 | */ |
15 | - public function thereAreErrors( int $segmentId, string $segment, string $translation, ?array $dataRefMap = [], ?string $error = null ): bool; |
|
15 | + public function thereAreErrors(int $segmentId, string $segment, string $translation, ?array $dataRefMap = [], ?string $error = null): bool; |
|
16 | 16 | } |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | ?string $lastMrkState = null |
27 | 27 | ): array { |
28 | 28 | |
29 | - $status = empty( $status ) ? TranslationStatus::STATUS_TRANSLATED : $status; |
|
29 | + $status = empty($status) ? TranslationStatus::STATUS_TRANSLATED : $status; |
|
30 | 30 | |
31 | 31 | $stateLevelsMap = [ |
32 | 32 | TranslationStatus::STATUS_APPROVED2 => 100, |
@@ -37,26 +37,26 @@ discard block |
||
37 | 37 | TranslationStatus::STATUS_NEW => 50 |
38 | 38 | ]; |
39 | 39 | |
40 | - $orderedValues = array_flip( $stateLevelsMap ); |
|
40 | + $orderedValues = array_flip($stateLevelsMap); |
|
41 | 41 | |
42 | 42 | // Define state mappings for different statuses |
43 | 43 | $stateMap = [ |
44 | - TranslationStatus::STATUS_APPROVED2 => [ "state=\"final\"", TranslationStatus::STATUS_APPROVED2 ], |
|
44 | + TranslationStatus::STATUS_APPROVED2 => ["state=\"final\"", TranslationStatus::STATUS_APPROVED2], |
|
45 | 45 | TranslationStatus::STATUS_APPROVED => [ |
46 | - ( $xliffVersion === 2 ) ? "state=\"reviewed\"" : "state=\"signed-off\"", |
|
46 | + ($xliffVersion === 2) ? "state=\"reviewed\"" : "state=\"signed-off\"", |
|
47 | 47 | TranslationStatus::STATUS_APPROVED |
48 | 48 | ], |
49 | - TranslationStatus::STATUS_TRANSLATED => [ "state=\"translated\"", TranslationStatus::STATUS_TRANSLATED ], |
|
49 | + TranslationStatus::STATUS_TRANSLATED => ["state=\"translated\"", TranslationStatus::STATUS_TRANSLATED], |
|
50 | 50 | TranslationStatus::STATUS_REJECTED => [ |
51 | - ( $xliffVersion === 2 ) ? "state=\"initial\"" : "state=\"needs-review-translation\"", |
|
51 | + ($xliffVersion === 2) ? "state=\"initial\"" : "state=\"needs-review-translation\"", |
|
52 | 52 | TranslationStatus::STATUS_REJECTED |
53 | 53 | ], |
54 | 54 | TranslationStatus::STATUS_NEW => [ |
55 | - ( $xliffVersion === 2 ) ? "state=\"initial\"" : "state=\"new\"", |
|
55 | + ($xliffVersion === 2) ? "state=\"initial\"" : "state=\"new\"", |
|
56 | 56 | TranslationStatus::STATUS_NEW |
57 | 57 | ], |
58 | 58 | TranslationStatus::STATUS_DRAFT => [ |
59 | - ( $xliffVersion === 2 ) ? "state=\"initial\"" : "state=\"new\"", |
|
59 | + ($xliffVersion === 2) ? "state=\"initial\"" : "state=\"new\"", |
|
60 | 60 | TranslationStatus::STATUS_DRAFT |
61 | 61 | ], |
62 | 62 | ]; |
@@ -67,14 +67,14 @@ discard block |
||
67 | 67 | // ---> $seg[ 'status' ] is NULL |
68 | 68 | // If lastMrkState is empty |
69 | 69 | $minStatus = min( |
70 | - $stateLevelsMap[ $status ], |
|
71 | - ( $stateLevelsMap[ $lastMrkState ] ?? $stateLevelsMap[ TranslationStatus::STATUS_NEW ] ) |
|
70 | + $stateLevelsMap[$status], |
|
71 | + ($stateLevelsMap[$lastMrkState] ?? $stateLevelsMap[TranslationStatus::STATUS_NEW]) |
|
72 | 72 | ); |
73 | 73 | |
74 | 74 | // If the last mark state is set, get the minimum value, otherwise get the current state |
75 | - [ $state_prop, $lastMrkState ] = empty( $lastMrkState ) ? $stateMap[ $status ] : $stateMap[ $orderedValues[ $minStatus ] ]; |
|
75 | + [$state_prop, $lastMrkState] = empty($lastMrkState) ? $stateMap[$status] : $stateMap[$orderedValues[$minStatus]]; |
|
76 | 76 | |
77 | - return [ $state_prop, $lastMrkState ]; |
|
77 | + return [$state_prop, $lastMrkState]; |
|
78 | 78 | |
79 | 79 | } |
80 | 80 |
@@ -18,15 +18,15 @@ discard block |
||
18 | 18 | * |
19 | 19 | * @return array|mixed |
20 | 20 | */ |
21 | - public static function pathInfo( string $path, ?int $options = 15 ) { |
|
22 | - $rawPath = explode( DIRECTORY_SEPARATOR, $path ); |
|
21 | + public static function pathInfo(string $path, ?int $options = 15) { |
|
22 | + $rawPath = explode(DIRECTORY_SEPARATOR, $path); |
|
23 | 23 | |
24 | - $basename = array_pop( $rawPath ); |
|
25 | - $dirname = implode( DIRECTORY_SEPARATOR, $rawPath ); |
|
24 | + $basename = array_pop($rawPath); |
|
25 | + $dirname = implode(DIRECTORY_SEPARATOR, $rawPath); |
|
26 | 26 | |
27 | - $explodedFileName = explode( ".", $basename ); |
|
28 | - $extension = strtolower( array_pop( $explodedFileName ) ); |
|
29 | - $filename = implode( ".", $explodedFileName ); |
|
27 | + $explodedFileName = explode(".", $basename); |
|
28 | + $extension = strtolower(array_pop($explodedFileName)); |
|
29 | + $filename = implode(".", $explodedFileName); |
|
30 | 30 | |
31 | 31 | $returnArray = []; |
32 | 32 | |
@@ -39,17 +39,17 @@ discard block |
||
39 | 39 | |
40 | 40 | // foreach flag, add in $return_array the corresponding field, |
41 | 41 | // obtained by variable name correspondence |
42 | - foreach ( $flagMap as $field => $i ) { |
|
42 | + foreach ($flagMap as $field => $i) { |
|
43 | 43 | //binary AND |
44 | - if ( ( $options & $i ) > 0 ) { |
|
44 | + if (($options & $i) > 0) { |
|
45 | 45 | //variable substitution: $field can be one between 'dirname', 'basename', 'extension', 'filename' |
46 | 46 | // $$field gets the value of the variable named $field |
47 | - $returnArray[ $field ] = $$field; |
|
47 | + $returnArray[$field] = $$field; |
|
48 | 48 | } |
49 | 49 | } |
50 | 50 | |
51 | - if ( count( $returnArray ) == 1 ) { |
|
52 | - $returnArray = array_pop( $returnArray ); |
|
51 | + if (count($returnArray) == 1) { |
|
52 | + $returnArray = array_pop($returnArray); |
|
53 | 53 | } |
54 | 54 | |
55 | 55 | return $returnArray; |
@@ -60,14 +60,14 @@ discard block |
||
60 | 60 | * |
61 | 61 | * @return ?string |
62 | 62 | */ |
63 | - public static function getExtension( $path ): ?string { |
|
64 | - $pathInfo = self::pathInfo( $path ); |
|
63 | + public static function getExtension($path): ?string { |
|
64 | + $pathInfo = self::pathInfo($path); |
|
65 | 65 | |
66 | - if ( empty( $pathInfo ) ) { |
|
66 | + if (empty($pathInfo)) { |
|
67 | 67 | return null; |
68 | 68 | } |
69 | 69 | |
70 | - return strtolower( $pathInfo[ 'extension' ] ); |
|
70 | + return strtolower($pathInfo['extension']); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | /** |
@@ -75,14 +75,14 @@ discard block |
||
75 | 75 | * |
76 | 76 | * @return bool |
77 | 77 | */ |
78 | - public static function isXliff( ?string $path ): bool { |
|
79 | - $extension = self::getExtension( $path ); |
|
78 | + public static function isXliff(?string $path): bool { |
|
79 | + $extension = self::getExtension($path); |
|
80 | 80 | |
81 | - if ( !$extension ) { |
|
81 | + if (!$extension) { |
|
82 | 82 | return false; |
83 | 83 | } |
84 | 84 | |
85 | - switch ( $extension ) { |
|
85 | + switch ($extension) { |
|
86 | 86 | case 'xliff': |
87 | 87 | case 'sdlxliff': |
88 | 88 | case 'tmx': |
@@ -98,14 +98,14 @@ discard block |
||
98 | 98 | * |
99 | 99 | * @return bool|string |
100 | 100 | */ |
101 | - public static function getMemoryFileType( string $path ) { |
|
102 | - $pathInfo = self::pathInfo( $path ); |
|
101 | + public static function getMemoryFileType(string $path) { |
|
102 | + $pathInfo = self::pathInfo($path); |
|
103 | 103 | |
104 | - if ( empty( $pathInfo ) ) { |
|
104 | + if (empty($pathInfo)) { |
|
105 | 105 | return false; |
106 | 106 | } |
107 | 107 | |
108 | - switch ( strtolower( $pathInfo[ 'extension' ] ) ) { |
|
108 | + switch (strtolower($pathInfo['extension'])) { |
|
109 | 109 | case 'tmx': |
110 | 110 | return 'tmx'; |
111 | 111 | case 'g': |
@@ -120,8 +120,8 @@ discard block |
||
120 | 120 | * |
121 | 121 | * @return bool |
122 | 122 | */ |
123 | - public static function isTMXFile( $path ): bool { |
|
124 | - return self::getMemoryFileType( $path ) === 'tmx'; |
|
123 | + public static function isTMXFile($path): bool { |
|
124 | + return self::getMemoryFileType($path) === 'tmx'; |
|
125 | 125 | } |
126 | 126 | |
127 | 127 | /** |
@@ -129,7 +129,7 @@ discard block |
||
129 | 129 | * |
130 | 130 | * @return bool |
131 | 131 | */ |
132 | - public static function isGlossaryFile( $path ): bool { |
|
133 | - return self::getMemoryFileType( $path ) === 'glossary'; |
|
132 | + public static function isGlossaryFile($path): bool { |
|
133 | + return self::getMemoryFileType($path) === 'glossary'; |
|
134 | 134 | } |
135 | 135 | } |
@@ -22,11 +22,11 @@ discard block |
||
22 | 22 | * |
23 | 23 | * @return array |
24 | 24 | */ |
25 | - public static function getInfoFromXliffContent( string $xliffContent ): array { |
|
25 | + public static function getInfoFromXliffContent(string $xliffContent): array { |
|
26 | 26 | self::reset(); |
27 | - $tmp = self::getFirst1024CharsFromXliff( $xliffContent ); |
|
27 | + $tmp = self::getFirst1024CharsFromXliff($xliffContent); |
|
28 | 28 | |
29 | - return self::getInfoFromTmp( $tmp ); |
|
29 | + return self::getInfoFromTmp($tmp); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | /** |
@@ -34,12 +34,12 @@ discard block |
||
34 | 34 | * |
35 | 35 | * @return array |
36 | 36 | */ |
37 | - public static function getInfo( string $fullPathToFile ): array { |
|
37 | + public static function getInfo(string $fullPathToFile): array { |
|
38 | 38 | self::reset(); |
39 | - $tmp = self::getFirst1024CharsFromXliff( null, $fullPathToFile ); |
|
40 | - self::$fileType[ 'info' ] = Files::pathInfo( $fullPathToFile ); |
|
39 | + $tmp = self::getFirst1024CharsFromXliff(null, $fullPathToFile); |
|
40 | + self::$fileType['info'] = Files::pathInfo($fullPathToFile); |
|
41 | 41 | |
42 | - return self::getInfoFromTmp( $tmp ); |
|
42 | + return self::getInfoFromTmp($tmp); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | /** |
@@ -47,21 +47,21 @@ discard block |
||
47 | 47 | * |
48 | 48 | * @return array |
49 | 49 | */ |
50 | - private static function getInfoFromTmp( array $tmp ): array { |
|
50 | + private static function getInfoFromTmp(array $tmp): array { |
|
51 | 51 | try { |
52 | - self::checkVersion( $tmp ); |
|
53 | - } catch ( Exception $ignore ) { |
|
52 | + self::checkVersion($tmp); |
|
53 | + } catch (Exception $ignore) { |
|
54 | 54 | // do nothing |
55 | 55 | // self::$fileType[ 'version' ] is left empty |
56 | 56 | } |
57 | 57 | |
58 | 58 | // run CheckXliffProprietaryPipeline |
59 | - $pipeline = self::runPipeline( $tmp ); |
|
59 | + $pipeline = self::runPipeline($tmp); |
|
60 | 60 | |
61 | - self::$fileType[ 'proprietary' ] = $pipeline[ 'proprietary' ]; |
|
62 | - self::$fileType[ 'proprietary_name' ] = $pipeline[ 'proprietary_name' ]; |
|
63 | - self::$fileType[ 'proprietary_short_name' ] = $pipeline[ 'proprietary_short_name' ]; |
|
64 | - self::$fileType[ 'converter_version' ] = $pipeline[ 'converter_version' ]; |
|
61 | + self::$fileType['proprietary'] = $pipeline['proprietary']; |
|
62 | + self::$fileType['proprietary_name'] = $pipeline['proprietary_name']; |
|
63 | + self::$fileType['proprietary_short_name'] = $pipeline['proprietary_short_name']; |
|
64 | + self::$fileType['converter_version'] = $pipeline['converter_version']; |
|
65 | 65 | |
66 | 66 | return self::$fileType; |
67 | 67 | } |
@@ -71,12 +71,12 @@ discard block |
||
71 | 71 | * |
72 | 72 | * @return array |
73 | 73 | */ |
74 | - private static function runPipeline( ?array $tmp = [] ): array { |
|
75 | - $pipeline = new CheckXliffProprietaryPipeline( $tmp ); |
|
76 | - $pipeline->addCheck( new CheckSDL() ); |
|
77 | - $pipeline->addCheck( new CheckGlobalSight() ); |
|
78 | - $pipeline->addCheck( new CheckMateCATConverter() ); |
|
79 | - $pipeline->addCheck( new CheckXliffVersion2() ); |
|
74 | + private static function runPipeline(?array $tmp = []): array { |
|
75 | + $pipeline = new CheckXliffProprietaryPipeline($tmp); |
|
76 | + $pipeline->addCheck(new CheckSDL()); |
|
77 | + $pipeline->addCheck(new CheckGlobalSight()); |
|
78 | + $pipeline->addCheck(new CheckMateCATConverter()); |
|
79 | + $pipeline->addCheck(new CheckXliffVersion2()); |
|
80 | 80 | |
81 | 81 | return $pipeline->run(); |
82 | 82 | } |
@@ -98,9 +98,9 @@ discard block |
||
98 | 98 | * |
99 | 99 | * @return string |
100 | 100 | */ |
101 | - private static function getFirst1024CharsFromString( ?string $stringData ): string { |
|
102 | - if ( !empty( $stringData ) ) { |
|
103 | - return substr( $stringData, 0, 1024 ); |
|
101 | + private static function getFirst1024CharsFromString(?string $stringData): string { |
|
102 | + if (!empty($stringData)) { |
|
103 | + return substr($stringData, 0, 1024); |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | return ''; |
@@ -111,13 +111,13 @@ discard block |
||
111 | 111 | * |
112 | 112 | * @return string |
113 | 113 | */ |
114 | - private static function getFirst1024CharsFromFile( ?string $fullPathToFile ): string { |
|
114 | + private static function getFirst1024CharsFromFile(?string $fullPathToFile): string { |
|
115 | 115 | $stringData = ''; |
116 | - if ( !empty( $fullPathToFile ) && is_file( $fullPathToFile ) ) { |
|
117 | - $file_pointer = fopen( "$fullPathToFile", 'r' ); |
|
116 | + if (!empty($fullPathToFile) && is_file($fullPathToFile)) { |
|
117 | + $file_pointer = fopen("$fullPathToFile", 'r'); |
|
118 | 118 | // Checking Requirements (By specs, I know that xliff version is in the first 1KB) |
119 | - $stringData = fread( $file_pointer, 1024 ); |
|
120 | - fclose( $file_pointer ); |
|
119 | + $stringData = fread($file_pointer, 1024); |
|
120 | + fclose($file_pointer); |
|
121 | 121 | } |
122 | 122 | |
123 | 123 | return $stringData; |
@@ -130,13 +130,13 @@ discard block |
||
130 | 130 | * |
131 | 131 | * @return string[] |
132 | 132 | */ |
133 | - private static function getFirst1024CharsFromXliff( ?string $stringData = null, string $fullPathToFile = null ): ?array { |
|
134 | - $stringData = static::getFirst1024CharsFromString( $stringData ); |
|
135 | - if ( empty( $stringData ) ) { |
|
136 | - $stringData = static::getFirst1024CharsFromFile( $fullPathToFile ); |
|
133 | + private static function getFirst1024CharsFromXliff(?string $stringData = null, string $fullPathToFile = null): ?array { |
|
134 | + $stringData = static::getFirst1024CharsFromString($stringData); |
|
135 | + if (empty($stringData)) { |
|
136 | + $stringData = static::getFirst1024CharsFromFile($fullPathToFile); |
|
137 | 137 | } |
138 | 138 | |
139 | - return !empty( $stringData ) ? [ $stringData ] : []; |
|
139 | + return !empty($stringData) ? [$stringData] : []; |
|
140 | 140 | } |
141 | 141 | |
142 | 142 | /** |
@@ -145,9 +145,9 @@ discard block |
||
145 | 145 | * @throws NotSupportedVersionException |
146 | 146 | * @throws NotValidFileException |
147 | 147 | */ |
148 | - protected static function checkVersion( array $tmp ) { |
|
149 | - if ( isset( $tmp[ 0 ] ) ) { |
|
150 | - self::$fileType[ 'version' ] = XliffVersionDetector::detect( $tmp[ 0 ] ); |
|
148 | + protected static function checkVersion(array $tmp) { |
|
149 | + if (isset($tmp[0])) { |
|
150 | + self::$fileType['version'] = XliffVersionDetector::detect($tmp[0]); |
|
151 | 151 | } |
152 | 152 | } |
153 | 153 | |
@@ -158,20 +158,20 @@ discard block |
||
158 | 158 | * @throws NotSupportedVersionException |
159 | 159 | * @throws NotValidFileException |
160 | 160 | */ |
161 | - public static function getInfoByStringData( string $stringData ): array { |
|
161 | + public static function getInfoByStringData(string $stringData): array { |
|
162 | 162 | self::reset(); |
163 | 163 | |
164 | - $tmp = self::getFirst1024CharsFromXliff( $stringData ); |
|
165 | - self::$fileType[ 'info' ] = []; |
|
166 | - self::checkVersion( $tmp ); |
|
164 | + $tmp = self::getFirst1024CharsFromXliff($stringData); |
|
165 | + self::$fileType['info'] = []; |
|
166 | + self::checkVersion($tmp); |
|
167 | 167 | |
168 | 168 | // run CheckXliffProprietaryPipeline |
169 | - $pipeline = self::runPipeline( $tmp ); |
|
169 | + $pipeline = self::runPipeline($tmp); |
|
170 | 170 | |
171 | - self::$fileType[ 'proprietary' ] = $pipeline[ 'proprietary' ]; |
|
172 | - self::$fileType[ 'proprietary_name' ] = $pipeline[ 'proprietary_name' ]; |
|
173 | - self::$fileType[ 'proprietary_short_name' ] = $pipeline[ 'proprietary_short_name' ]; |
|
174 | - self::$fileType[ 'converter_version' ] = $pipeline[ 'converter_version' ]; |
|
171 | + self::$fileType['proprietary'] = $pipeline['proprietary']; |
|
172 | + self::$fileType['proprietary_name'] = $pipeline['proprietary_name']; |
|
173 | + self::$fileType['proprietary_short_name'] = $pipeline['proprietary_short_name']; |
|
174 | + self::$fileType['converter_version'] = $pipeline['converter_version']; |
|
175 | 175 | |
176 | 176 | return self::$fileType; |
177 | 177 | } |
@@ -183,33 +183,33 @@ discard block |
||
183 | 183 | * |
184 | 184 | * @return bool|int |
185 | 185 | */ |
186 | - public static function fileMustBeConverted( string $fullPath, bool $enforceOnXliff = false, ?string $filterAddress = null ) { |
|
186 | + public static function fileMustBeConverted(string $fullPath, bool $enforceOnXliff = false, ?string $filterAddress = null) { |
|
187 | 187 | $convert = true; |
188 | 188 | |
189 | - $fileType = self::getInfo( $fullPath ); |
|
190 | - $memoryFileType = Files::getMemoryFileType( $fullPath ); |
|
189 | + $fileType = self::getInfo($fullPath); |
|
190 | + $memoryFileType = Files::getMemoryFileType($fullPath); |
|
191 | 191 | |
192 | - if ( Files::isXliff( $fullPath ) || $memoryFileType ) { |
|
193 | - if ( !empty( $filterAddress ) ) { |
|
192 | + if (Files::isXliff($fullPath) || $memoryFileType) { |
|
193 | + if (!empty($filterAddress)) { |
|
194 | 194 | |
195 | 195 | //conversion enforce |
196 | - if ( !$enforceOnXliff ) { |
|
196 | + if (!$enforceOnXliff) { |
|
197 | 197 | |
198 | 198 | //if file is not proprietary AND Enforce is disabled |
199 | 199 | //we take it as is |
200 | - if ( !$fileType[ 'proprietary' ] || $memoryFileType ) { |
|
200 | + if (!$fileType['proprietary'] || $memoryFileType) { |
|
201 | 201 | $convert = false; |
202 | 202 | //ok don't convert a standard sdlxliff |
203 | 203 | } |
204 | 204 | } else { |
205 | 205 | //if conversion enforce is active |
206 | 206 | //we force all xliff files but not files produced by SDL Studio because we can handle them |
207 | - if ( in_array( $fileType[ 'proprietary_short_name' ], [ 'matecat_converter', 'trados', 'xliff_v2' ] ) || $memoryFileType ) { |
|
207 | + if (in_array($fileType['proprietary_short_name'], ['matecat_converter', 'trados', 'xliff_v2']) || $memoryFileType) { |
|
208 | 208 | $convert = false; |
209 | 209 | //ok don't convert a standard sdlxliff |
210 | 210 | } |
211 | 211 | } |
212 | - } elseif ( $fileType[ 'proprietary' ] ) { |
|
212 | + } elseif ($fileType['proprietary']) { |
|
213 | 213 | |
214 | 214 | /** |
215 | 215 | * Application misconfiguration. |