X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDatabase%2FPostUpdate.php;h=6d744a1ba1a26e1db2102fad690af49bc96212e9;hb=612e91b603a5a5817839d04d120e1cf672b8a80e;hp=a418a7948dd5c99d6ecbb74dcf3f1cc30573e58f;hpb=fb7f7435c080e15bdafbbcbb5a3dfd94ef8dd952;p=friendica.git diff --git a/src/Database/PostUpdate.php b/src/Database/PostUpdate.php index a418a7948d..6d744a1ba1 100644 --- a/src/Database/PostUpdate.php +++ b/src/Database/PostUpdate.php @@ -1,6 +1,6 @@ get("system", "post_update_version") >= 1194) { - return true; - } - - Logger::log("Start", Logger::DEBUG); - - $end_id = DI::config()->get("system", "post_update_1194_end"); - if (!$end_id) { - $r = q("SELECT `id` FROM `item` WHERE `uid` != 0 ORDER BY `id` DESC LIMIT 1"); - if ($r) { - DI::config()->set("system", "post_update_1194_end", $r[0]["id"]); - $end_id = DI::config()->get("system", "post_update_1194_end"); - } - } - - Logger::log("End ID: ".$end_id, Logger::DEBUG); - - $start_id = DI::config()->get("system", "post_update_1194_start"); - - $query1 = "SELECT `item`.`id` FROM `item` "; - - $query2 = "INNER JOIN `item` AS `shadow` ON `item`.`uri` = `shadow`.`uri` AND `shadow`.`uid` = 0 "; - - $query3 = "WHERE `item`.`uid` != 0 AND `item`.`id` >= %d AND `item`.`id` <= %d - AND `item`.`visible` AND NOT `item`.`private` - AND NOT `item`.`deleted` AND NOT `item`.`moderated` - AND `item`.`network` IN ('%s', '%s', '%s', '') - AND NOT `item`.`global`"; - - $r = q($query1.$query2.$query3." ORDER BY `item`.`id` LIMIT 1", - intval($start_id), intval($end_id), - DBA::escape(Protocol::DFRN), DBA::escape(Protocol::DIASPORA), DBA::escape(Protocol::OSTATUS)); - if (!$r) { - DI::config()->set("system", "post_update_version", 1194); - Logger::log("Update is done", Logger::DEBUG); - return true; - } else { - DI::config()->set("system", "post_update_1194_start", $r[0]["id"]); - $start_id = DI::config()->get("system", "post_update_1194_start"); - } - - Logger::log("Start ID: ".$start_id, Logger::DEBUG); - - $r = q($query1.$query2.$query3." ORDER BY `item`.`id` LIMIT 1000,1", - intval($start_id), intval($end_id), - DBA::escape(Protocol::DFRN), DBA::escape(Protocol::DIASPORA), DBA::escape(Protocol::OSTATUS)); - if ($r) { - $pos_id = $r[0]["id"]; - } else { - $pos_id = $end_id; - } - Logger::log("Progress: Start: ".$start_id." position: ".$pos_id." end: ".$end_id, Logger::DEBUG); - - q("UPDATE `item` ".$query2." SET `item`.`global` = 1 ".$query3, - intval($start_id), intval($pos_id), - DBA::escape(Protocol::DFRN), DBA::escape(Protocol::DIASPORA), DBA::escape(Protocol::OSTATUS)); - - Logger::log("Done", Logger::DEBUG); - } - - /** - * update the "last-item" field in the "self" contact - * - * This field avoids cost intensive calls in the admin panel and in "nodeinfo" - * - * @return bool "true" when the job is done - * @throws \Friendica\Network\HTTPException\InternalServerErrorException - */ - private static function update1206() - { - // Was the script completed? - if (DI::config()->get("system", "post_update_version") >= 1206) { - return true; - } - - Logger::log("Start", Logger::DEBUG); - $r = q("SELECT `contact`.`id`, `contact`.`last-item`, - (SELECT MAX(`changed`) FROM `item` USE INDEX (`uid_wall_changed`) WHERE `wall` AND `uid` = `user`.`uid`) AS `lastitem_date` - FROM `user` - INNER JOIN `contact` ON `contact`.`uid` = `user`.`uid` AND `contact`.`self`"); - - if (!DBA::isResult($r)) { + if (!self::update1383()) { return false; } - foreach ($r as $user) { - if (!empty($user["lastitem_date"]) && ($user["lastitem_date"] > $user["last-item"])) { - DBA::update('contact', ['last-item' => $user['lastitem_date']], ['id' => $user['id']]); - } - } - - DI::config()->set("system", "post_update_version", 1206); - Logger::log("Done", Logger::DEBUG); - return true; - } - - /** - * update the item related tables - * - * @return bool "true" when the job is done - * @throws \Friendica\Network\HTTPException\InternalServerErrorException - * @throws \ImagickException - */ - private static function update1279() - { - // Was the script completed? - if (DI::config()->get("system", "post_update_version") >= 1279) { - return true; - } - - $id = DI::config()->get("system", "post_update_version_1279_id", 0); - - Logger::log("Start from item " . $id, Logger::DEBUG); - - $fields = array_merge(Item::MIXED_CONTENT_FIELDLIST, ['network', 'author-id', 'owner-id', 'tag', 'file', - 'author-name', 'author-avatar', 'author-link', 'owner-name', 'owner-avatar', 'owner-link', 'id', - 'uid', 'allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'psid', 'post-type', 'bookmark', 'type', - 'inform', 'postopts', 'icid']); - - $start_id = $id; - $rows = 0; - $condition = ["`id` > ?", $id]; - $params = ['order' => ['id'], 'limit' => 10000]; - $items = Item::select($fields, $condition, $params); - - if (DBA::errorNo() != 0) { - Logger::log('Database error ' . DBA::errorNo() . ':' . DBA::errorMessage()); + if (!self::update1384()) { return false; } - - while ($item = Item::fetch($items)) { - $id = $item['id']; - - if (empty($item['author-id'])) { - $default = ['url' => $item['author-link'], 'name' => $item['author-name'], - 'photo' => $item['author-avatar'], 'network' => $item['network']]; - - $item['author-id'] = Contact::getIdForURL($item["author-link"], 0, null, $default); - } - - if (empty($item['owner-id'])) { - $default = ['url' => $item['owner-link'], 'name' => $item['owner-name'], - 'photo' => $item['owner-avatar'], 'network' => $item['network']]; - - $item['owner-id'] = Contact::getIdForURL($item["owner-link"], 0, null, $default); - } - - if (empty($item['psid'])) { - $item['psid'] = PermissionSet::getIdFromACL( - $item['uid'], - $item['allow_cid'], - $item['allow_gid'], - $item['deny_cid'], - $item['deny_gid'] - ); - } - - $item['allow_cid'] = null; - $item['allow_gid'] = null; - $item['deny_cid'] = null; - $item['deny_gid'] = null; - - if ($item['post-type'] == 0) { - if (!empty($item['type']) && ($item['type'] == 'note')) { - $item['post-type'] = Item::PT_PERSONAL_NOTE; - } elseif (!empty($item['type']) && ($item['type'] == 'photo')) { - $item['post-type'] = Item::PT_IMAGE; - } elseif (!empty($item['bookmark']) && $item['bookmark']) { - $item['post-type'] = Item::PT_PAGE; - } - } - - self::createLanguage($item); - - if (!empty($item['icid']) && !empty($item['language'])) { - DBA::update('item-content', ['language' => $item['language']], ['id' => $item['icid']]); - } - unset($item['language']); - - Item::update($item, ['id' => $id]); - - ++$rows; - } - DBA::close($items); - - DI::config()->set("system", "post_update_version_1279_id", $id); - - Logger::log("Processed rows: " . $rows . " - last processed item: " . $id, Logger::DEBUG); - - if ($start_id == $id) { - // Set all deprecated fields to "null" if they contain an empty string - $nullfields = ['allow_cid', 'allow_gid', 'deny_cid', 'deny_gid', 'postopts', 'inform', 'type', - 'bookmark', 'file', 'location', 'coord', 'tag', 'plink', 'title', 'content-warning', - 'body', 'app', 'verb', 'object-type', 'object', 'target-type', 'target', - 'author-name', 'author-link', 'author-avatar', 'owner-name', 'owner-link', 'owner-avatar', - 'rendered-hash', 'rendered-html']; - foreach ($nullfields as $field) { - $fields = [$field => null]; - $condition = [$field => '']; - Logger::log("Setting '" . $field . "' to null if empty.", Logger::DEBUG); - // Important: This has to be a "DBA::update", not a "Item::update" - DBA::update('item', $fields, $condition); - } - - DI::config()->set("system", "post_update_version", 1279); - Logger::log("Done", Logger::DEBUG); - return true; - } - - return false; - } - - private static function createLanguage(&$item) - { - if (empty($item['postopts'])) { - return; - } - - $opts = explode(',', $item['postopts']); - - $postopts = []; - - foreach ($opts as $opt) { - if (strstr($opt, 'lang=')) { - $language = substr($opt, 5); - } else { - $postopts[] = $opt; - } - } - - if (empty($language)) { - return; - } - - if (!empty($postopts)) { - $item['postopts'] = implode(',', $postopts); - } else { - $item['postopts'] = null; + if (!self::update1400()) { + return false; } - - $lang_pairs = explode(':', $language); - - $lang_arr = []; - - foreach ($lang_pairs as $pair) { - $lang_pair_arr = explode(';', $pair); - if (count($lang_pair_arr) == 2) { - $lang_arr[$lang_pair_arr[0]] = $lang_pair_arr[1]; - } + if (!self::update1424()) { + return false; } - - $item['language'] = json_encode($lang_arr); - } - - /** - * update item-uri data. Prerequisite for the next item structure update. - * - * @return bool "true" when the job is done - * @throws \Friendica\Network\HTTPException\InternalServerErrorException - */ - private static function update1281() - { - // Was the script completed? - if (DI::config()->get("system", "post_update_version") >= 1281) { - return true; + if (!self::update1425()) { + return false; } - - $id = DI::config()->get("system", "post_update_version_1281_id", 0); - - Logger::log("Start from item " . $id, Logger::DEBUG); - - $fields = ['id', 'guid', 'uri', 'uri-id', 'parent-uri', 'parent-uri-id', 'thr-parent', 'thr-parent-id']; - - $start_id = $id; - $rows = 0; - $condition = ["`id` > ?", $id]; - $params = ['order' => ['id'], 'limit' => 10000]; - $items = DBA::select('item', $fields, $condition, $params); - - if (DBA::errorNo() != 0) { - Logger::log('Database error ' . DBA::errorNo() . ':' . DBA::errorMessage()); + if (!self::update1426()) { return false; } - - while ($item = DBA::fetch($items)) { - $id = $item['id']; - - if (empty($item['uri'])) { - // Should not happen - continue; - } elseif (empty($item['uri-id'])) { - $item['uri-id'] = ItemURI::insert(['uri' => $item['uri'], 'guid' => $item['guid']]); - } - - if (empty($item['parent-uri'])) { - $item['parent-uri-id'] = $item['uri-id']; - } elseif (empty($item['parent-uri-id'])) { - $item['parent-uri-id'] = ItemURI::getIdByURI($item['parent-uri']); - } - - // Very old items don't have this field - if (empty($item['thr-parent'])) { - $item['thr-parent-id'] = $item['parent-uri-id']; - } elseif (empty($item['thr-parent-id'])) { - $item['thr-parent-id'] = ItemURI::getIdByURI($item['thr-parent']); - } - - unset($item['id']); - unset($item['guid']); - unset($item['uri']); - unset($item['parent-uri']); - unset($item['thr-parent']); - - DBA::update('item', $item, ['id' => $id]); - - ++$rows; + if (!self::update1427()) { + return false; } - DBA::close($items); - - DI::config()->set("system", "post_update_version_1281_id", $id); - - Logger::log("Processed rows: " . $rows . " - last processed item: " . $id, Logger::DEBUG); - - if ($start_id == $id) { - Logger::log("Updating item-uri in item-activity", Logger::DEBUG); - DBA::e("UPDATE `item-activity` INNER JOIN `item-uri` ON `item-uri`.`uri` = `item-activity`.`uri` SET `item-activity`.`uri-id` = `item-uri`.`id` WHERE `item-activity`.`uri-id` IS NULL"); - - Logger::log("Updating item-uri in item-content", Logger::DEBUG); - DBA::e("UPDATE `item-content` INNER JOIN `item-uri` ON `item-uri`.`uri` = `item-content`.`uri` SET `item-content`.`uri-id` = `item-uri`.`id` WHERE `item-content`.`uri-id` IS NULL"); - - DI::config()->set("system", "post_update_version", 1281); - Logger::log("Done", Logger::DEBUG); - return true; + if (!self::update1452()) { + return false; } - - return false; + return true; } /** @@ -519,7 +190,7 @@ class PostUpdate } /** - * update user-item data with notifications + * update user notification data * * @return bool "true" when the job is done * @throws \Friendica\Network\HTTPException\InternalServerErrorException @@ -531,6 +202,11 @@ class PostUpdate return true; } + if (!DBStructure::existsTable('item')) { + DI::config()->set('system', 'post_update_version', 1329); + return true; + } + $id = DI::config()->get('system', 'post_update_version_1329_id', 0); Logger::info('Start', ['item' => $id]); @@ -539,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()]); @@ -549,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; } @@ -581,6 +257,11 @@ class PostUpdate return true; } + if (!DBStructure::existsTable('item-content')) { + DI::config()->set('system', 'post_update_version', 1342); + return true; + } + $id = DI::config()->get('system', 'post_update_version_1341_id', 0); Logger::info('Start', ['item' => $id]); @@ -634,6 +315,11 @@ class PostUpdate return true; } + if (!DBStructure::existsTable('term') || !DBStructure::existsTable('item-content')) { + DI::config()->set('system', 'post_update_version', 1342); + return true; + } + $id = DI::config()->get('system', 'post_update_version_1342_id', 0); Logger::info('Start', ['item' => $id]); @@ -730,7 +416,7 @@ class PostUpdate while ($delivery = DBA::fetch($deliveries)) { $id = $delivery['iid']; unset($delivery['iid']); - DBA::insert('post-delivery-data', $delivery, true); + DBA::insert('post-delivery-data', $delivery, Database::INSERT_UPDATE); ++$rows; } DBA::close($deliveries); @@ -788,6 +474,11 @@ class PostUpdate return true; } + if (!DBStructure::existsTable('term')) { + DI::config()->set('system', 'post_update_version', 1346); + return true; + } + $id = DI::config()->get('system', 'post_update_version_1346_id', 0); Logger::info('Start', ['item' => $id]); @@ -804,7 +495,7 @@ class PostUpdate } while ($term = DBA::fetch($terms)) { - $item = Item::selectFirst(['uri-id', 'uid'], ['id' => $term['oid']]); + $item = Post::selectFirst(['uri-id', 'uid'], ['id' => $term['oid']]); if (!DBA::isResult($item)) { continue; } @@ -851,6 +542,11 @@ class PostUpdate return true; } + if (!DBStructure::existsTable('item-activity') || !DBStructure::existsTable('item')) { + DI::config()->set('system', 'post_update_version', 1347); + return true; + } + $id = DI::config()->get("system", "post_update_version_1347_id", 0); Logger::info('Start', ['item' => $id]); @@ -1004,4 +700,389 @@ class PostUpdate return false; } + + /** + * Remove orphaned photo entries + * + * @return bool "true" when the job is done + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException + */ + private static function update1383() + { + // Was the script completed? + if (DI::config()->get("system", "post_update_version") >= 1383) { + return true; + } + + Logger::info('Start'); + + $deleted = 0; + $avatar = [4 => 'photo', 5 => 'thumb', 6 => 'micro']; + + $photos = DBA::select('photo', ['id', 'contact-id', 'resource-id', 'scale'], ["`contact-id` != ? AND `album` = ?", 0, Photo::CONTACT_PHOTOS]); + while ($photo = DBA::fetch($photos)) { + $delete = !in_array($photo['scale'], [4, 5, 6]); + + if (!$delete) { + // Check if there is a contact entry with that photo + $delete = !DBA::exists('contact', ["`id` = ? AND `" . $avatar[$photo['scale']] . "` LIKE ?", + $photo['contact-id'], '%' . $photo['resource-id'] . '%']); + } + + if ($delete) { + Photo::delete(['id' => $photo['id']]); + $deleted++; + } + } + DBA::close($photos); + + DI::config()->set("system", "post_update_version", 1383); + Logger::info('Done', ['deleted' => $deleted]); + return true; + } + + /** + * update the "hash" field in the photo table + * + * @return bool "true" when the job is done + * @throws \Friendica\Network\HTTPException\InternalServerErrorException + * @throws \ImagickException + */ + private static function update1384() + { + // Was the script completed? + if (DI::config()->get("system", "post_update_version") >= 1384) { + return true; + } + + $condition = ["`hash` IS NULL"]; + Logger::info('Start', ['rest' => DBA::count('photo', $condition)]); + + $rows = 0; + $photos = DBA::select('photo', [], $condition, ['limit' => 100]); + + if (DBA::errorNo() != 0) { + Logger::error('Database error', ['no' => DBA::errorNo(), 'message' => DBA::errorMessage()]); + return false; + } + + while ($photo = DBA::fetch($photos)) { + $img = Photo::getImageForPhoto($photo); + if (!empty($img)) { + $md5 = md5($img->asString()); + } else { + $md5 = ''; + } + DBA::update('photo', ['hash' => $md5], ['id' => $photo['id']]); + ++$rows; + } + DBA::close($photos); + + Logger::info('Processed', ['rows' => $rows]); + + if ($rows <= 100) { + DI::config()->set("system", "post_update_version", 1384); + Logger::info('Done'); + return true; + } + + 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; + } }