Skip to content

Commit

Permalink
Media Remapping tool debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
egbot committed Feb 27, 2023
1 parent d4f6756 commit fcbca6f
Showing 1 changed file with 9 additions and 14 deletions.
23 changes: 9 additions & 14 deletions classes/MediaResolutionTools.php
Original file line number Diff line number Diff line change
Expand Up @@ -289,13 +289,13 @@ public function migrateCollectionDerivatives($imgIdStart, $limit){
if($this->transferThumbnail){
$fileName = basename($r->thumbnailurl);
$targetPath = $this->imgRootPath.$pathFrag.$fileName;
$thumnPath = $this->getLocalPath($r->thumbnailurl);
if(copy($thumnPath, $targetPath)){
$thumbPath = $this->getLocalPath($r->thumbnailurl);
if(copy($thumbPath, $targetPath)){
$imgArr[$r->imgid]['tn'] = $targetPath;
if($this->debugMode) $this->logOrEcho('Copied: '.$thumnPath.' => '.$targetPath,1);
if($this->debugMode) $this->logOrEcho('Copied: '.$thumbPath.' => '.$targetPath,1);
if($this->deleteSource){
if(unlink($thumnPath)){
$this->logOrEcho('Source removed: '.$thumnPath,1);
if(unlink($thumbPath)){
$this->logOrEcho('Source removed: '.$thumbPath,1);
}
}
}
Expand Down Expand Up @@ -358,15 +358,10 @@ private function getLocalPath($imageUrl){
$adjustedUrl = str_replace($GLOBALS['IMAGE_ROOT_URL'], $GLOBALS['IMAGE_ROOT_PATH'], $imageUrl);
if(file_exists($adjustedUrl)) return $adjustedUrl;
}
$sourcePathPrefix = '';
$fragArr = explode('/', $imageUrl);
while($fragArr){
$sourcePathPrefix .= '/'.array_shift($fragArr);
$testPath = $GLOBALS['IMAGE_ROOT_PATH'].'/'.implode('/', $fragArr);
if(file_exists($testPath)){
$this->sourcePathPrefix = $sourcePathPrefix;
return $testPath;
}
$prefix = substr($GLOBALS['IMAGE_ROOT_PATH'], 0, strlen($GLOBALS['IMAGE_ROOT_PATH']) - strlen($GLOBALS['IMAGE_ROOT_URL']));
if(file_exists($prefix.$imageUrl)){
$this->sourcePathPrefix = $prefix;
return $prefix.$imageUrl;
}
return $imageUrl;
}
Expand Down

0 comments on commit fcbca6f

Please sign in to comment.