X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDatabase%2FPostUpdate.php;h=6d744a1ba1a26e1db2102fad690af49bc96212e9;hb=612e91b603a5a5817839d04d120e1cf672b8a80e;hp=51ce0d2b55a5c91b56dbf0e61ee399a124c72bcc;hpb=c3398511b45a89f8a11626d88dc6bd27bc2494e9;p=friendica.git diff --git a/src/Database/PostUpdate.php b/src/Database/PostUpdate.php index 51ce0d2b55..6d744a1ba1 100644 --- a/src/Database/PostUpdate.php +++ b/src/Database/PostUpdate.php @@ -1,6 +1,6 @@ set('system', 'post_update_version', 1329); + return true; + } + $id = DI::config()->get('system', 'post_update_version_1329_id', 0); Logger::info('Start', ['item' => $id]); @@ -188,7 +215,7 @@ class PostUpdate $rows = 0; $condition = ["`id` > ?", $id]; $params = ['order' => ['id'], 'limit' => 10000]; - $items = DBA::select('item', ['id'], $condition, $params); + $items = DBA::select('item', ['id', 'uri-id', 'uid'], $condition, $params); if (DBA::errorNo() != 0) { Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]); @@ -198,7 +225,7 @@ class PostUpdate while ($item = DBA::fetch($items)) { $id = $item['id']; - UserItem::setNotification($item['id']); + Post\UserNotification::setNotification($item['uri-id'], $item['uid']); ++$rows; } @@ -515,7 +542,7 @@ class PostUpdate return true; } - if (!DBStructure::existsTable('item-activity')) { + if (!DBStructure::existsTable('item-activity') || !DBStructure::existsTable('item')) { DI::config()->set('system', 'post_update_version', 1347); return true; } @@ -733,7 +760,7 @@ class PostUpdate Logger::info('Start', ['rest' => DBA::count('photo', $condition)]); $rows = 0; - $photos = DBA::select('photo', [], $condition, ['limit' => 10000]); + $photos = DBA::select('photo', [], $condition, ['limit' => 100]); if (DBA::errorNo() != 0) { Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]); @@ -762,4 +789,300 @@ class PostUpdate return false; } + + /** + * update the "external-id" field in the post table + * + * @return bool "true" when the job is done + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException + */ + private static function update1400() + { + // Was the script completed? + if (DI::config()->get("system", "post_update_version") >= 1400) { + return true; + } + + if (!DBStructure::existsTable('item')) { + DI::config()->set("system", "post_update_version", 1400); + return true; + } + + $condition = ["`extid` != ? AND EXISTS(SELECT `id` FROM `post-user` WHERE `uri-id` = `item`.`uri-id` AND `uid` = `item`.`uid` AND `external-id` IS NULL)", '']; + Logger::info('Start', ['rest' => DBA::count('item', $condition)]); + + $rows = 0; + $items = DBA::select('item', ['uri-id', 'uid', 'extid'], $condition, ['order' => ['id'], 'limit' => 10000]); + + if (DBA::errorNo() != 0) { + Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]); + return false; + } + + while ($item = DBA::fetch($items)) { + Post::update(['external-id' => ItemURI::getIdByURI($item['extid'])], ['uri-id' => $item['uri-id'], 'uid' => $item['uid']]); + ++$rows; + } + DBA::close($items); + + Logger::info('Processed', ['rows' => $rows]); + + if ($rows <= 100) { + DI::config()->set("system", "post_update_version", 1400); + Logger::info('Done'); + return true; + } + + return false; + } + + /** + * update the "uri-id" field in the contact table + * + * @return bool "true" when the job is done + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException + */ + private static function update1424() + { + // Was the script completed? + if (DI::config()->get("system", "post_update_version") >= 1424) { + return true; + } + + $condition = ["`uri-id` IS NULL"]; + Logger::info('Start', ['rest' => DBA::count('contact', $condition)]); + + $rows = 0; + $contacts = DBA::select('contact', ['id', 'url'], $condition, ['limit' => 1000]); + + if (DBA::errorNo() != 0) { + Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]); + return false; + } + + while ($contact = DBA::fetch($contacts)) { + DBA::update('contact', ['uri-id' => ItemURI::getIdByURI($contact['url'])], ['id' => $contact['id']]); + ++$rows; + } + DBA::close($contacts); + + Logger::info('Processed', ['rows' => $rows]); + + if ($rows <= 100) { + DI::config()->set("system", "post_update_version", 1424); + Logger::info('Done'); + return true; + } + + return false; + } + + /** + * update the "uri-id" field in the fcontact table + * + * @return bool "true" when the job is done + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException + */ + private static function update1425() + { + // Was the script completed? + if (DI::config()->get("system", "post_update_version") >= 1425) { + return true; + } + + $condition = ["`uri-id` IS NULL"]; + Logger::info('Start', ['rest' => DBA::count('fcontact', $condition)]); + + $rows = 0; + $fcontacts = DBA::select('fcontact', ['id', 'url', 'guid'], $condition, ['limit' => 1000]); + + if (DBA::errorNo() != 0) { + Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]); + return false; + } + + while ($fcontact = DBA::fetch($fcontacts)) { + if (!empty($fcontact['guid'])) { + $uriid = ItemURI::insert(['uri' => $fcontact['url'], 'guid' => $fcontact['guid']]); + } else { + $uriid = ItemURI::getIdByURI($fcontact['url']); + } + DBA::update('fcontact', ['uri-id' => $uriid], ['id' => $fcontact['id']]); + ++$rows; + } + DBA::close($fcontacts); + + Logger::info('Processed', ['rows' => $rows]); + + if ($rows <= 100) { + DI::config()->set("system", "post_update_version", 1425); + Logger::info('Done'); + return true; + } + + return false; + } + + /** + * update the "uri-id" field in the apcontact table + * + * @return bool "true" when the job is done + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException + */ + private static function update1426() + { + // Was the script completed? + if (DI::config()->get("system", "post_update_version") >= 1426) { + return true; + } + + $condition = ["`uri-id` IS NULL"]; + Logger::info('Start', ['rest' => DBA::count('apcontact', $condition)]); + + $rows = 0; + $apcontacts = DBA::select('apcontact', ['url', 'uuid'], $condition, ['limit' => 1000]); + + if (DBA::errorNo() != 0) { + Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]); + return false; + } + + while ($apcontact = DBA::fetch($apcontacts)) { + if (!empty($apcontact['uuid'])) { + $uriid = ItemURI::insert(['uri' => $apcontact['url'], 'guid' => $apcontact['uuid']]); + } else { + $uriid = ItemURI::getIdByURI($apcontact['url']); + } + DBA::update('apcontact', ['uri-id' => $uriid], ['url' => $apcontact['url']]); + ++$rows; + } + DBA::close($apcontacts); + + Logger::info('Processed', ['rows' => $rows]); + + if ($rows <= 100) { + DI::config()->set("system", "post_update_version", 1426); + Logger::info('Done'); + return true; + } + + return false; + } + + /** + * update the "uri-id" field in the event table + * + * @return bool "true" when the job is done + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException + */ + private static function update1427() + { + // Was the script completed? + if (DI::config()->get("system", "post_update_version") >= 1427) { + return true; + } + + $condition = ["`uri-id` IS NULL"]; + Logger::info('Start', ['rest' => DBA::count('event', $condition)]); + + $rows = 0; + $events = DBA::select('event', ['id', 'uri', 'guid'], $condition, ['limit' => 1000]); + + if (DBA::errorNo() != 0) { + Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]); + return false; + } + + while ($event = DBA::fetch($events)) { + if (!empty($event['guid'])) { + $uriid = ItemURI::insert(['uri' => $event['uri'], 'guid' => $event['guid']]); + } else { + $uriid = ItemURI::getIdByURI($event['uri']); + } + DBA::update('event', ['uri-id' => $uriid], ['id' => $event['id']]); + ++$rows; + } + DBA::close($events); + + Logger::info('Processed', ['rows' => $rows]); + + if ($rows <= 100) { + DI::config()->set("system", "post_update_version", 1427); + Logger::info('Done'); + return true; + } + + return false; + } + + /** + * Fill the receivers of the post via the raw source + * + * @return bool "true" when the job is done + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException + */ + private static function update1452() + { + // Was the script completed? + if (DI::config()->get('system', 'post_update_version') >= 1452) { + return true; + } + + $id = DI::config()->get('system', 'post_update_version_1452_id', 0); + + Logger::info('Start', ['uri-id' => $id]); + + $rows = 0; + $received = ''; + + $conversations = DBA::p("SELECT `post-view`.`uri-id`, `conversation`.`source`, `conversation`.`received` FROM `conversation` + INNER JOIN `post-view` ON `post-view`.`uri` = `conversation`.`item-uri` + WHERE NOT `source` IS NULL AND `conversation`.`protocol` = ? AND `uri-id` > ? LIMIT ?", + Conversation::PARCEL_ACTIVITYPUB, $id, 1000); + + if (DBA::errorNo() != 0) { + Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]); + return false; + } + + while ($conversation = DBA::fetch($conversations)) { + $id = $conversation['uri-id']; + $received = $conversation['received']; + + $raw = json_decode($conversation['source'], true); + if (empty($raw)) { + continue; + } + $activity = JsonLD::compact($raw); + + $urls = Receiver::getReceiverURL($activity); + Processor::storeReceivers($conversation['uri-id'], $urls); + + if (!empty($activity['as:object'])) { + $urls = array_merge($urls, Receiver::getReceiverURL($activity['as:object'])); + Processor::storeReceivers($conversation['uri-id'], $urls); + } + ++$rows; + } + + DBA::close($conversations); + + DI::config()->set('system', '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); + Logger::info('Done'); + return true; + } + + return false; + } }