mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
8038af4bd5
Summary: Fixes T6013. Old image macros/memes never had the file edge written. We also never wrote file edges for audio. Finally, the meme controller didn't allow public access. Write edges for images and audio, perform a migration to populate the historic ones, and make the Editor keep them up to date going forward. Test Plan: - Updated image, saw new image attach and old image detach. - Updated audio, saw new audio attach and old audio detach. - Ran migration. - Viewed memes as a logged-out user. Reviewers: btrahan Reviewed By: btrahan Subscribers: epriestley Maniphest Tasks: T6013 Differential Revision: https://secure.phabricator.com/D10411
26 lines
542 B
PHP
26 lines
542 B
PHP
<?php
|
|
|
|
$table = new PhabricatorFileImageMacro();
|
|
foreach (new LiskMigrationIterator($table) as $macro) {
|
|
$name = $macro->getName();
|
|
|
|
echo "Linking macro '{$name}'...\n";
|
|
|
|
$editor = new PhabricatorEdgeEditor();
|
|
|
|
$phids[] = $macro->getFilePHID();
|
|
$phids[] = $macro->getAudioPHID();
|
|
$phids = array_filter($phids);
|
|
|
|
if ($phids) {
|
|
foreach ($phids as $phid) {
|
|
$editor->addEdge(
|
|
$macro->getPHID(),
|
|
PhabricatorEdgeConfig::TYPE_OBJECT_HAS_FILE,
|
|
$phid);
|
|
}
|
|
$editor->save();
|
|
}
|
|
}
|
|
|
|
echo "Done.\n";
|