X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FDatabase%2FPostUpdate.php;h=94c02013e719804f83340e4c069fd5b887d98b32;hb=b0d8a2fcd087c2a7c34460ced3c7334eccaa1c0a;hp=00e95fa2f45be88af4ab551e593af463a2157655;hpb=14fde5dc9b1915392601fb94efc6224c01f2b216;p=friendica.git diff --git a/src/Database/PostUpdate.php b/src/Database/PostUpdate.php index 00e95fa2f4..94c02013e7 100644 --- a/src/Database/PostUpdate.php +++ b/src/Database/PostUpdate.php @@ -53,7 +53,7 @@ class PostUpdate return true; } - Logger::log("Start", LOGGER_DEBUG); + Logger::log("Start", Logger::DEBUG); $end_id = Config::get("system", "post_update_1194_end"); if (!$end_id) { @@ -64,7 +64,7 @@ class PostUpdate } } - Logger::log("End ID: ".$end_id, LOGGER_DEBUG); + Logger::log("End ID: ".$end_id, Logger::DEBUG); $start_id = Config::get("system", "post_update_1194_start"); @@ -83,14 +83,14 @@ class PostUpdate DBA::escape(Protocol::DFRN), DBA::escape(Protocol::DIASPORA), DBA::escape(Protocol::OSTATUS)); if (!$r) { Config::set("system", "post_update_version", 1194); - Logger::log("Update is done", LOGGER_DEBUG); + Logger::log("Update is done", Logger::DEBUG); return true; } else { Config::set("system", "post_update_1194_start", $r[0]["id"]); $start_id = Config::get("system", "post_update_1194_start"); } - Logger::log("Start ID: ".$start_id, LOGGER_DEBUG); + 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), @@ -100,13 +100,13 @@ class PostUpdate } else { $pos_id = $end_id; } - Logger::log("Progress: Start: ".$start_id." position: ".$pos_id." end: ".$end_id, LOGGER_DEBUG); + 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); + Logger::log("Done", Logger::DEBUG); } /** @@ -123,7 +123,7 @@ class PostUpdate return true; } - Logger::log("Start", LOGGER_DEBUG); + 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` @@ -139,7 +139,7 @@ class PostUpdate } Config::set("system", "post_update_version", 1206); - Logger::log("Done", LOGGER_DEBUG); + Logger::log("Done", Logger::DEBUG); return true; } @@ -157,7 +157,7 @@ class PostUpdate $id = Config::get("system", "post_update_version_1279_id", 0); - Logger::log("Start from item " . $id, LOGGER_DEBUG); + 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', @@ -226,7 +226,7 @@ class PostUpdate Config::set("system", "post_update_version_1279_id", $id); - Logger::log("Processed rows: " . $rows . " - last processed item: " . $id, LOGGER_DEBUG); + 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 @@ -238,13 +238,13 @@ class PostUpdate foreach ($nullfields as $field) { $fields = [$field => null]; $condition = [$field => '']; - Logger::log("Setting '" . $field . "' to null if empty.", LOGGER_DEBUG); + 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); } Config::set("system", "post_update_version", 1279); - Logger::log("Done", LOGGER_DEBUG); + Logger::log("Done", Logger::DEBUG); return true; } @@ -307,7 +307,7 @@ class PostUpdate $id = Config::get("system", "post_update_version_1281_id", 0); - Logger::log("Start from item " . $id, LOGGER_DEBUG); + Logger::log("Start from item " . $id, Logger::DEBUG); $fields = ['id', 'guid', 'uri', 'uri-id', 'parent-uri', 'parent-uri-id', 'thr-parent', 'thr-parent-id']; @@ -359,17 +359,17 @@ class PostUpdate Config::set("system", "post_update_version_1281_id", $id); - Logger::log("Processed rows: " . $rows . " - last processed item: " . $id, LOGGER_DEBUG); + 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); + 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); + 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"); Config::set("system", "post_update_version", 1281); - Logger::log("Done", LOGGER_DEBUG); + Logger::log("Done", Logger::DEBUG); return true; }