以File对象的形式动态创建文件,然后发布

时间:2018-02-08 09:19:12

标签: silverstripe-4

在SS4中动态创建文件显然有点复杂

$folder = Folder::find_or_make('Cards');
$filename = 'myimage.jpg';
$contents = file_get_contents('http://example.com/image.jpg');
$pathToFile = Controller::join_links(Director::baseFolder(), ASSETS_DIR, $folder->Title, $filename);
file_put_contents($pathToFile, $contents);

$image = Image::create();

$image->ParentID = $folder->ID;
$image->Title = "My title";
$image->Name = $filename;
$image->FileFilename = 'Cards/' . $filename;
$image->write();

Member::actAs(Member::get()->first(), function() use ($image, $folder) {
    if (!$image->isPublished()) {
        $image->publishFile();
        $image->publishSingle();
    }
    if (!$folder->isPublished()) {
        $folder->publishSingle();
    }
});

以上内容,在/assets/Cards/myimage.jpg中按预期创建文件并发布正确

但是所有预览都是空白的,所以很明显找不到文件:

All previews are blank

知道我在创建Image对象时遗漏了什么吗?

1 个答案:

答案 0 :(得分:4)

这应该有效:

$folder = Folder::find_or_make('Cards');
$contents = file_get_contents('http://example.com/image.jpg');

$img = Image::create();
$img->setFromString($contents, 'image.jpg');
$img->ParentID = $parent->ID;
$img->write();

// This is needed to build the thumbnails
\SilverStripe\AssetAdmin\Controller\AssetAdmin::create()->generateThumbnails($img);
$img->publishSingle();

仅供参考:$img->Filename不再存在。 ImageFile对象具有File属性,该属性是DBFile类型的复合字段。此复合字段包含文件名,哈希和变体... 因此,您应该使用复合字段来处理这些字段。