%PDF- %PDF-
| Direktori : /var/www/projetos/stb.ind.br/wp-content/plugins/loco-translate/src/fs/ |
| Current File : /var/www/projetos/stb.ind.br/wp-content/plugins/loco-translate/src/fs/Siblings.php |
<?php
/**
* Manages a POT or PO/MO pair and its on-disk dependants
*/
class Loco_fs_Siblings {
/**
* @var Loco_fs_File
*/
private $po;
/**
* @var Loco_fs_File
*/
private $mo;
public function __construct( Loco_fs_File $file ){
$ext = $file->extension();
if( 'pot' === $ext ){
$this->po = $file;
}
else if( 'po' === $ext ){
$this->po = $file;
$this->mo = $file->cloneExtension('mo');
}
else if( 'mo' === $ext ){
$this->mo = $file;
$this->po = $file->cloneExtension('po');
}
else {
throw new InvalidArgumentException('Unexpected file extension: '.$ext);
}
}
/**
* Get all dependant files (including self) that actually exist on disk
* @return Loco_fs_File[]
*/
public function expand(){
$siblings = array();
// Source and binary pair
foreach( array( $this->po, $this->mo ) as $file ){
if( $file && $file->exists() ){
$siblings[] = $file;
}
}
// Revisions / backup files:
$revs = new Loco_fs_Revisions( $this->po );
foreach( $revs->getPaths() as $path ){
$siblings[] = new Loco_fs_File( $path );
}
// JSON exports, unless in POT mode:
if( 'po' === $this->po->extension() ){
$siblings = array_merge($siblings,$this->getJsons());
}
return $siblings;
}
/**
* @return Loco_fs_File
*/
public function getSource(){
return $this->po;
}
/**
* @return Loco_fs_File
*/
public function getBinary(){
return $this->mo;
}
/**
* @return Loco_fs_File[]
*/
public function getJsons(){
$list = new Loco_fs_FileList;
$name = $this->po->filename();
$finder = new Loco_fs_FileFinder( $this->po->dirname() );
// match .json files with same name as .po, plus hashed names
$regex = '/^'.preg_quote($name,'/').'-[0-9a-f]{32}$/';
/* @var Loco_fs_File $file */
foreach( $finder->group('json')->exportGroups() as $files ) {
foreach( $files as $file ){
$match = $file->filename();
if( $match === $name || preg_match($regex,$match) ) {
$list->add($file);
}
}
}
// append single json using our filter
$path = apply_filters('loco_compile_single_json', '', $this->po->getPath() );
if( is_string($path) && '' !== $path && file_exists($path) ){
$list->add( new Loco_fs_File($path) );
}
return $list->getArrayCopy();
}
}