mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-10 08:52:39 +01:00
2532cb9613
Summary: We need to go slightly farther to stub reply handler functionality for Ponder in at least some configurations, where we rely on the presence of a unique random key to generate per-object or per-object+user reply addresses. This should probably be formalized in an interface since it's currently pretty ad-hoc. Test Plan: - Made comments in Ponder under a per-user email configuration. - Ran migration, verified mail keys were generated. - Ran migration again (with --apply), verified existing questions were skipped. - Created a new question, verified mail key generation. Reviewers: pieter Reviewed By: pieter CC: aran Maniphest Tasks: T1873 Differential Revision: https://secure.phabricator.com/D3665
37 lines
1.1 KiB
PHP
37 lines
1.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* Copyright 2012 Facebook, Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
echo "Populating Questions with mail keys...\n";
|
|
foreach (new LiskMigrationIterator(new PonderQuestion()) as $question) {
|
|
$id = $question->getID();
|
|
|
|
echo "Question {$id}: ";
|
|
if (!$question->getMailKey()) {
|
|
queryfx(
|
|
$question->establishConnection('w'),
|
|
'UPDATE %T SET mailKey = %s WHERE id = %d',
|
|
$question->getTableName(),
|
|
Filesystem::readRandomCharacters(20),
|
|
$id);
|
|
echo "Generated Key\n";
|
|
} else {
|
|
echo "-\n";
|
|
}
|
|
}
|
|
|
|
echo "Done.\n";
|