2021-08-15 04:43:35 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\DataFixtures;
|
|
|
|
|
|
|
|
use App\Core\DB\DB;
|
|
|
|
use App\Core\GSFile;
|
|
|
|
use Doctrine\Bundle\FixturesBundle\Fixture;
|
|
|
|
use Doctrine\Persistence\ObjectManager;
|
2021-08-19 09:44:03 +09:00
|
|
|
use Exception;
|
2021-08-15 05:46:44 +09:00
|
|
|
use Functional as F;
|
2021-08-15 04:43:35 +09:00
|
|
|
use Symfony\Component\HttpFoundation\File\File;
|
|
|
|
|
|
|
|
class MediaFixtures extends Fixture
|
|
|
|
{
|
|
|
|
public function load(ObjectManager $manager)
|
|
|
|
{
|
|
|
|
DB::setManager($manager);
|
2021-08-15 05:46:44 +09:00
|
|
|
F\map(glob(INSTALLDIR . '/tests/sample-uploads/*'),
|
|
|
|
function (string $filepath) {
|
|
|
|
$copy_filepath = str_replace('.', '.copy.', $filepath);
|
|
|
|
copy($filepath, $copy_filepath);
|
|
|
|
$file = new File($copy_filepath, checkPath: true);
|
|
|
|
try {
|
|
|
|
GSFile::sanitizeAndStoreFileAsAttachment($file);
|
2021-08-19 09:44:03 +09:00
|
|
|
} catch (Exception $e) {
|
|
|
|
echo "Could not save file {$copy_filepath}, failed with {$e}\n";
|
2021-08-15 05:46:44 +09:00
|
|
|
}
|
2021-08-17 01:09:02 +09:00
|
|
|
@unlink($copy_filepath);
|
2021-08-15 05:46:44 +09:00
|
|
|
});
|
2021-08-15 04:43:35 +09:00
|
|
|
$manager->flush();
|
|
|
|
}
|
|
|
|
}
|