mirror of
https://github.com/friendica/friendica
synced 2025-04-26 05:10:11 +00:00
Replace PostUpdate key-value config entries with key-value pair entries
This commit is contained in:
parent
47764387b3
commit
10f8631cd9
11 changed files with 112 additions and 101 deletions
|
@ -129,12 +129,12 @@ class PostUpdate
|
|||
private static function update1297()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1297) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1297) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!DBStructure::existsTable('item-delivery-data')) {
|
||||
DI::config()->set('system', 'post_update_version', 1297);
|
||||
DI::keyValue()->set('post_update_version', 1297);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -154,7 +154,7 @@ class PostUpdate
|
|||
|
||||
Logger::info('Processed rows: ' . DBA::affectedRows());
|
||||
|
||||
DI::config()->set('system', 'post_update_version', 1297);
|
||||
DI::keyValue()->set('post_update_version', 1297);
|
||||
|
||||
Logger::info('Done');
|
||||
|
||||
|
@ -169,7 +169,7 @@ class PostUpdate
|
|||
private static function update1322()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1322) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1322) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -188,7 +188,7 @@ class PostUpdate
|
|||
}
|
||||
|
||||
DBA::close($contact);
|
||||
DI::config()->set('system', 'post_update_version', 1322);
|
||||
DI::keyValue()->set('post_update_version', 1322);
|
||||
|
||||
Logger::info('Done');
|
||||
|
||||
|
@ -204,16 +204,16 @@ class PostUpdate
|
|||
private static function update1329()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1329) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1329) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!DBStructure::existsTable('item')) {
|
||||
DI::config()->set('system', 'post_update_version', 1329);
|
||||
DI::keyValue()->set('post_update_version', 1329);
|
||||
return true;
|
||||
}
|
||||
|
||||
$id = DI::config()->get('system', 'post_update_version_1329_id', 0);
|
||||
$id = DI::keyValue()->get('post_update_version_1329_id') ?? 0;
|
||||
|
||||
Logger::info('Start', ['item' => $id]);
|
||||
|
||||
|
@ -237,12 +237,12 @@ class PostUpdate
|
|||
}
|
||||
DBA::close($items);
|
||||
|
||||
DI::config()->set('system', 'post_update_version_1329_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1329_id', $id);
|
||||
|
||||
Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
|
||||
|
||||
if ($start_id == $id) {
|
||||
DI::config()->set('system', 'post_update_version', 1329);
|
||||
DI::keyValue()->set('post_update_version', 1329);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -259,16 +259,16 @@ class PostUpdate
|
|||
private static function update1341()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1341) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1341) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!DBStructure::existsTable('item-content')) {
|
||||
DI::config()->set('system', 'post_update_version', 1342);
|
||||
DI::keyValue()->set('post_update_version', 1342);
|
||||
return true;
|
||||
}
|
||||
|
||||
$id = DI::config()->get('system', 'post_update_version_1341_id', 0);
|
||||
$id = DI::keyValue()->get('post_update_version_1341_id') ?? 0;
|
||||
|
||||
Logger::info('Start', ['item' => $id]);
|
||||
|
||||
|
@ -288,19 +288,19 @@ class PostUpdate
|
|||
$id = $item['uri-id'];
|
||||
++$rows;
|
||||
if ($rows % 1000 == 0) {
|
||||
DI::config()->set('system', 'post_update_version_1341_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1341_id', $id);
|
||||
}
|
||||
}
|
||||
DBA::close($items);
|
||||
|
||||
DI::config()->set('system', 'post_update_version_1341_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1341_id', $id);
|
||||
|
||||
Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
|
||||
|
||||
// When there are less than 1,000 items processed this means that we reached the end
|
||||
// The other entries will then be processed with the regular functionality
|
||||
if ($rows < 1000) {
|
||||
DI::config()->set('system', 'post_update_version', 1341);
|
||||
DI::keyValue()->set('post_update_version', 1341);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -317,16 +317,16 @@ class PostUpdate
|
|||
private static function update1342()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1342) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1342) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!DBStructure::existsTable('term') || !DBStructure::existsTable('item-content')) {
|
||||
DI::config()->set('system', 'post_update_version', 1342);
|
||||
DI::keyValue()->set('post_update_version', 1342);
|
||||
return true;
|
||||
}
|
||||
|
||||
$id = DI::config()->get('system', 'post_update_version_1342_id', 0);
|
||||
$id = DI::keyValue()->get('post_update_version_1342_id') ?? 0;
|
||||
|
||||
Logger::info('Start', ['item' => $id]);
|
||||
|
||||
|
@ -364,19 +364,19 @@ class PostUpdate
|
|||
$id = $term['tid'];
|
||||
++$rows;
|
||||
if ($rows % 1000 == 0) {
|
||||
DI::config()->set('system', 'post_update_version_1342_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1342_id', $id);
|
||||
}
|
||||
}
|
||||
DBA::close($terms);
|
||||
|
||||
DI::config()->set('system', 'post_update_version_1342_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1342_id', $id);
|
||||
|
||||
Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
|
||||
|
||||
// When there are less than 1,000 items processed this means that we reached the end
|
||||
// The other entries will then be processed with the regular functionality
|
||||
if ($rows < 1000) {
|
||||
DI::config()->set('system', 'post_update_version', 1342);
|
||||
DI::keyValue()->set('post_update_version', 1342);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -393,16 +393,16 @@ class PostUpdate
|
|||
private static function update1345()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1345) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1345) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!DBStructure::existsTable('item-delivery-data')) {
|
||||
DI::config()->set('system', 'post_update_version', 1345);
|
||||
DI::keyValue()->set('post_update_version', 1345);
|
||||
return true;
|
||||
}
|
||||
|
||||
$id = DI::config()->get('system', 'post_update_version_1345_id', 0);
|
||||
$id = DI::keyValue()->get('post_update_version_1345_id') ?? 0;
|
||||
|
||||
Logger::info('Start', ['item' => $id]);
|
||||
|
||||
|
@ -427,14 +427,14 @@ class PostUpdate
|
|||
}
|
||||
DBA::close($deliveries);
|
||||
|
||||
DI::config()->set('system', 'post_update_version_1345_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1345_id', $id);
|
||||
|
||||
Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
|
||||
|
||||
// When there are less than 100 items processed this means that we reached the end
|
||||
// The other entries will then be processed with the regular functionality
|
||||
if ($rows < 100) {
|
||||
DI::config()->set('system', 'post_update_version', 1345);
|
||||
DI::keyValue()->set('post_update_version', 1345);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -476,16 +476,16 @@ class PostUpdate
|
|||
private static function update1346()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1346) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1346) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!DBStructure::existsTable('term')) {
|
||||
DI::config()->set('system', 'post_update_version', 1346);
|
||||
DI::keyValue()->set('post_update_version', 1346);
|
||||
return true;
|
||||
}
|
||||
|
||||
$id = DI::config()->get('system', 'post_update_version_1346_id', 0);
|
||||
$id = DI::keyValue()->get('post_update_version_1346_id') ?? 0;
|
||||
|
||||
Logger::info('Start', ['item' => $id]);
|
||||
|
||||
|
@ -514,19 +514,19 @@ class PostUpdate
|
|||
$id = $term['oid'];
|
||||
++$rows;
|
||||
if ($rows % 100 == 0) {
|
||||
DI::config()->set('system', 'post_update_version_1346_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1346_id', $id);
|
||||
}
|
||||
}
|
||||
DBA::close($terms);
|
||||
|
||||
DI::config()->set('system', 'post_update_version_1346_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1346_id', $id);
|
||||
|
||||
Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
|
||||
|
||||
// When there are less than 10 items processed this means that we reached the end
|
||||
// The other entries will then be processed with the regular functionality
|
||||
if ($rows < 10) {
|
||||
DI::config()->set('system', 'post_update_version', 1346);
|
||||
DI::keyValue()->set('post_update_version', 1346);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -544,16 +544,16 @@ class PostUpdate
|
|||
private static function update1347()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1347) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1347) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!DBStructure::existsTable('item-activity') || !DBStructure::existsTable('item')) {
|
||||
DI::config()->set('system', 'post_update_version', 1347);
|
||||
DI::keyValue()->set('post_update_version', 1347);
|
||||
return true;
|
||||
}
|
||||
|
||||
$id = DI::config()->get('system', 'post_update_version_1347_id', 0);
|
||||
$id = DI::keyValue()->get('post_update_version_1347_id') ?? 0;
|
||||
|
||||
Logger::info('Start', ['item' => $id]);
|
||||
|
||||
|
@ -588,12 +588,12 @@ class PostUpdate
|
|||
}
|
||||
DBA::close($items);
|
||||
|
||||
DI::config()->set('system', 'post_update_version_1347_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1347_id', $id);
|
||||
|
||||
Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
|
||||
|
||||
if ($start_id == $id) {
|
||||
DI::config()->set('system', 'post_update_version', 1347);
|
||||
DI::keyValue()->set('post_update_version', 1347);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -611,11 +611,11 @@ class PostUpdate
|
|||
private static function update1348()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1348) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1348) {
|
||||
return true;
|
||||
}
|
||||
|
||||
$id = DI::config()->get('system', 'post_update_version_1348_id', 0);
|
||||
$id = DI::keyValue()->get('post_update_version_1348_id') ?? 0;
|
||||
|
||||
Logger::info('Start', ['contact' => $id]);
|
||||
|
||||
|
@ -641,12 +641,12 @@ class PostUpdate
|
|||
}
|
||||
DBA::close($contacts);
|
||||
|
||||
DI::config()->set('system', 'post_update_version_1348_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1348_id', $id);
|
||||
|
||||
Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
|
||||
|
||||
if ($start_id == $id) {
|
||||
DI::config()->set('system', 'post_update_version', 1348);
|
||||
DI::keyValue()->set('post_update_version', 1348);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -664,11 +664,11 @@ class PostUpdate
|
|||
private static function update1349()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1349) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1349) {
|
||||
return true;
|
||||
}
|
||||
|
||||
$id = DI::config()->get('system', 'post_update_version_1349_id', '');
|
||||
$id = DI::keyValue()->get('post_update_version_1349_id') ?? '';
|
||||
|
||||
Logger::info('Start', ['apcontact' => $id]);
|
||||
|
||||
|
@ -694,12 +694,12 @@ class PostUpdate
|
|||
}
|
||||
DBA::close($apcontacts);
|
||||
|
||||
DI::config()->set('system', 'post_update_version_1349_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1349_id', $id);
|
||||
|
||||
Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
|
||||
|
||||
if ($start_id == $id) {
|
||||
DI::config()->set('system', 'post_update_version', 1349);
|
||||
DI::keyValue()->set('post_update_version', 1349);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -717,7 +717,7 @@ class PostUpdate
|
|||
private static function update1383()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1383) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1383) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -743,7 +743,7 @@ class PostUpdate
|
|||
}
|
||||
DBA::close($photos);
|
||||
|
||||
DI::config()->set('system', 'post_update_version', 1383);
|
||||
DI::keyValue()->set('post_update_version', 1383);
|
||||
Logger::info('Done', ['deleted' => $deleted]);
|
||||
return true;
|
||||
}
|
||||
|
@ -758,7 +758,7 @@ class PostUpdate
|
|||
private static function update1384()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1384) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1384) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -788,7 +788,7 @@ class PostUpdate
|
|||
Logger::info('Processed', ['rows' => $rows]);
|
||||
|
||||
if ($rows <= 100) {
|
||||
DI::config()->set('system', 'post_update_version', 1384);
|
||||
DI::keyValue()->set('post_update_version', 1384);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -806,12 +806,12 @@ class PostUpdate
|
|||
private static function update1400()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1400) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1400) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!DBStructure::existsTable('item')) {
|
||||
DI::config()->set('system', 'post_update_version', 1400);
|
||||
DI::keyValue()->set('post_update_version', 1400);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -835,7 +835,7 @@ class PostUpdate
|
|||
Logger::info('Processed', ['rows' => $rows]);
|
||||
|
||||
if ($rows <= 100) {
|
||||
DI::config()->set('system', 'post_update_version', 1400);
|
||||
DI::keyValue()->set('post_update_version', 1400);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -853,7 +853,7 @@ class PostUpdate
|
|||
private static function update1424()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1424) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1424) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -877,7 +877,7 @@ class PostUpdate
|
|||
Logger::info('Processed', ['rows' => $rows]);
|
||||
|
||||
if ($rows <= 100) {
|
||||
DI::config()->set('system', 'post_update_version', 1424);
|
||||
DI::keyValue()->set('post_update_version', 1424);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -895,12 +895,12 @@ class PostUpdate
|
|||
private static function update1425()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1425) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1425) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!DBStructure::existsTable('fcontact')) {
|
||||
DI::config()->set('system', 'post_update_version', 1425);
|
||||
DI::keyValue()->set('post_update_version', 1425);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -929,7 +929,7 @@ class PostUpdate
|
|||
Logger::info('Processed', ['rows' => $rows]);
|
||||
|
||||
if ($rows <= 100) {
|
||||
DI::config()->set('system', 'post_update_version', 1425);
|
||||
DI::keyValue()->set('post_update_version', 1425);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -947,7 +947,7 @@ class PostUpdate
|
|||
private static function update1426()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1426) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1426) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -976,7 +976,7 @@ class PostUpdate
|
|||
Logger::info('Processed', ['rows' => $rows]);
|
||||
|
||||
if ($rows <= 100) {
|
||||
DI::config()->set('system', 'post_update_version', 1426);
|
||||
DI::keyValue()->set('post_update_version', 1426);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -994,7 +994,7 @@ class PostUpdate
|
|||
private static function update1427()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1427) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1427) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -1023,7 +1023,7 @@ class PostUpdate
|
|||
Logger::info('Processed', ['rows' => $rows]);
|
||||
|
||||
if ($rows <= 100) {
|
||||
DI::config()->set('system', 'post_update_version', 1427);
|
||||
DI::keyValue()->set('post_update_version', 1427);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -1041,16 +1041,16 @@ class PostUpdate
|
|||
private static function update1452()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1452) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1452) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (!DBStructure::existsTable('conversation')) {
|
||||
DI::config()->set('system', 'post_update_version', 1452);
|
||||
DI::keyValue()->set('post_update_version', 1452);
|
||||
return true;
|
||||
}
|
||||
|
||||
$id = DI::config()->get('system', 'post_update_version_1452_id', 0);
|
||||
$id = DI::keyValue()->get('post_update_version_1452_id') ?? 0;
|
||||
|
||||
Logger::info('Start', ['uri-id' => $id]);
|
||||
|
||||
|
@ -1089,12 +1089,12 @@ class PostUpdate
|
|||
|
||||
DBA::close($conversations);
|
||||
|
||||
DI::config()->set('system', 'post_update_version_1452_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1452_id', $id);
|
||||
|
||||
Logger::info('Processed', ['rows' => $rows, 'last' => $id, 'last-received' => $received]);
|
||||
|
||||
if ($rows <= 100) {
|
||||
DI::config()->set('system', 'post_update_version', 1452);
|
||||
DI::keyValue()->set('post_update_version', 1452);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -1113,7 +1113,7 @@ class PostUpdate
|
|||
private static function update1483()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1483) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1483) {
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -1129,7 +1129,7 @@ class PostUpdate
|
|||
}
|
||||
DBA::close($posts);
|
||||
|
||||
DI::config()->set('system', 'post_update_version', 1483);
|
||||
DI::keyValue()->set('post_update_version', 1483);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
@ -1144,11 +1144,11 @@ class PostUpdate
|
|||
private static function update1484()
|
||||
{
|
||||
// Was the script completed?
|
||||
if (DI::config()->get('system', 'post_update_version') >= 1484) {
|
||||
if (DI::keyValue()->get('post_update_version') >= 1484) {
|
||||
return true;
|
||||
}
|
||||
|
||||
$id = DI::config()->get('system', 'post_update_version_1484_id', 0);
|
||||
$id = DI::keyValue()->get('post_update_version_1484_id') ?? 0;
|
||||
|
||||
Logger::info('Start', ['id' => $id]);
|
||||
|
||||
|
@ -1172,12 +1172,12 @@ class PostUpdate
|
|||
}
|
||||
DBA::close($contacts);
|
||||
|
||||
DI::config()->set('system', 'post_update_version_1484_id', $id);
|
||||
DI::keyValue()->set('post_update_version_1484_id', $id);
|
||||
|
||||
Logger::info('Processed', ['rows' => $rows, 'last' => $id]);
|
||||
|
||||
if ($rows <= 100) {
|
||||
DI::config()->set('system', 'post_update_version', 1484);
|
||||
DI::keyValue()->set('post_update_version', 1484);
|
||||
Logger::info('Done');
|
||||
return true;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue