mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 00:42:41 +01:00
3e82ab5adb
Summary: Ref T13658. I used the linter in D21763 to identify these and `split` them into arbitrary groups of 10 files. Test Plan: This test plan is non-exhaustive, because some of these strings are difficult to reach. - Looked at "Create Service" in Almanac. - Used "bin/auth" to go through a one-time auth workflow (not all related strings can be hit on a single workflow). - Started the "Generate Keypair" worfklow in "SSH Public Keys". Subscribers: PHID-OPKG-gm6ozazyms6q6i22gyam Maniphest Tasks: T13658 Differential Revision: https://secure.phabricator.com/D21765
38 lines
1 KiB
PHP
38 lines
1 KiB
PHP
<?php
|
|
|
|
echo pht('Populating files with mail keys...')."\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) {
|
|
// NOTE: MySQL requires that the INSERT specify all columns which don't
|
|
// have default values when configured in strict mode. This query will
|
|
// never actually insert rows, but we need to hand it values anyway.
|
|
|
|
$sql[] = qsprintf(
|
|
$conn_w,
|
|
'(%d, %s, 0, 0, 0, 0, 0, 0, 0, 0)',
|
|
$row['id'],
|
|
Filesystem::readRandomCharacters(20));
|
|
}
|
|
|
|
if ($sql) {
|
|
foreach (PhabricatorLiskDAO::chunkSQL($sql) as $chunk) {
|
|
queryfx(
|
|
$conn_w,
|
|
'INSERT INTO %T
|
|
(id, mailKey, phid, byteSize, storageEngine, storageFormat,
|
|
storageHandle, dateCreated, dateModified, metadata) VALUES %LQ '.
|
|
'ON DUPLICATE KEY UPDATE mailKey = VALUES(mailKey)',
|
|
$table_name,
|
|
$chunk);
|
|
}
|
|
}
|
|
|
|
$table->saveTransaction();
|
|
echo pht('Done.')."\n";
|