szurubooru/scripts/process-detached-files.php
2014-06-01 13:51:29 +02:00

77 lines
1.5 KiB
PHP

<?php
require_once __DIR__ . '/../src/core.php';
Access::disablePrivilegeChecking();
$usage = function()
{
echo 'Usage: ' . basename(__FILE__) . PHP_EOL;
echo ' -p|--print OR' . PHP_EOL;
echo ' -d|--delete OR' . PHP_EOL;
echo ' -m|--move [TARGET]' . PHP_EOL;
return true;
};
array_shift($argv);
if (empty($argv))
$usage() and die;
$action = array_shift($argv);
switch ($action)
{
case '-p':
case '--print':
$func = function($name)
{
echo $name . PHP_EOL;
};
break;
case '-m':
case '--move':
if (empty($argv))
$usage() and die;
$dir = array_shift($argv);
if (!file_exists($dir))
mkdir($dir, 0755, true);
if (!is_dir($dir))
die($dir . ' is not a dir' . PHP_EOL);
$func = function($name) use ($dir)
{
echo $name . PHP_EOL;
$srcPath = Core::getConfig()->main->filesPath . DS . $name;
$dstPath = $dir . DS . $name;
rename($srcPath, $dstPath);
};
break;
case '-d':
case '--delete':
$func = function($name)
{
echo $name . PHP_EOL;
$srcPath = Core::getConfig()->main->filesPath . DS . $name;
unlink($srcPath);
};
break;
default:
die('Unknown action' . PHP_EOL);
}
$names = [];
foreach (PostSearchService::getEntities(null, null, null) as $post)
{
$names []= $post->getName();
}
$names = array_flip($names);
$config = Core::getConfig();
foreach (glob(TextHelper::absolutePath($config->main->filesPath) . DS . '*') as $name)
{
$name = basename($name);
if (!isset($names[$name]))
{
$func($name);
}
}