mirror of
https://we.phorge.it/source/phorge.git
synced 2025-01-31 08:58:20 +01:00
228496cdbe
Summary: this ends up being a little weird since you can't actually edit files. Also, since we create files all sorts of ways, sometimes without even having a user, we don't bother logging transactions for those events. Fixes T3651. Turns out this work is important for T3612, which is a priority of mine to help get Pholio out the door. Test Plan: left a comment on a file. it worked! use bin/mail to verify mail content looked correct. Reviewers: epriestley Reviewed By: epriestley CC: Korvin, aran, wez Maniphest Tasks: T3651, T3612 Differential Revision: https://secure.phabricator.com/D6789
32 lines
709 B
PHP
32 lines
709 B
PHP
<?php
|
|
|
|
echo "Populating Phabricator files with mail keys xactions...\n";
|
|
|
|
$table = new PhabricatorFile();
|
|
$table_name = $table->getTableName();
|
|
|
|
$conn_w = $table->establishConnection('w');
|
|
$conn_w->openTransaction();
|
|
|
|
$sql = array();
|
|
foreach (new LiskRawMigrationIterator($conn_w, 'file') as $row) {
|
|
$sql[] = qsprintf(
|
|
$conn_w,
|
|
'(%d, %s)',
|
|
$row['id'],
|
|
Filesystem::readRandomCharacters(20));
|
|
}
|
|
|
|
if ($sql) {
|
|
foreach (PhabricatorLiskDAO::chunkSQL($sql, ', ') as $chunk) {
|
|
queryfx(
|
|
$conn_w,
|
|
'INSERT INTO %T (id, mailKey) VALUES %Q '.
|
|
'ON DUPLICATE KEY UPDATE mailKey = VALUES(mailKey)',
|
|
$table_name,
|
|
$chunk);
|
|
}
|
|
}
|
|
|
|
$table->saveTransaction();
|
|
echo "Done.\n";
|