Deleted_notice had a superfluous field
This commit is contained in:
parent
df19791a8f
commit
5ba6be1a87
|
@ -159,7 +159,6 @@ class ActivityModerationPlugin extends ActivityVerbHandlerPlugin
|
||||||
$deleted->id = $target->getID();
|
$deleted->id = $target->getID();
|
||||||
$deleted->profile_id = $actor->getID();
|
$deleted->profile_id = $actor->getID();
|
||||||
$deleted->uri = $stored->getUri();
|
$deleted->uri = $stored->getUri();
|
||||||
$deleted->act_uri = $stored->getUri();
|
|
||||||
$deleted->act_created = $stored->created;
|
$deleted->act_created = $stored->created;
|
||||||
$deleted->created = common_sql_now();
|
$deleted->created = common_sql_now();
|
||||||
|
|
||||||
|
|
|
@ -29,7 +29,6 @@ class Deleted_notice extends Managed_DataObject
|
||||||
public $id; // int(4) primary_key not_null
|
public $id; // int(4) primary_key not_null
|
||||||
public $profile_id; // int(4) not_null
|
public $profile_id; // int(4) not_null
|
||||||
public $uri; // varchar(191) unique_key not 255 because utf8mb4 takes more space
|
public $uri; // varchar(191) unique_key not 255 because utf8mb4 takes more space
|
||||||
public $act_uri; // varchar(191) unique_key not 255 because utf8mb4 takes more space
|
|
||||||
public $act_created; // datetime() not_null
|
public $act_created; // datetime() not_null
|
||||||
public $created; // datetime() not_null
|
public $created; // datetime() not_null
|
||||||
|
|
||||||
|
@ -40,14 +39,12 @@ class Deleted_notice extends Managed_DataObject
|
||||||
'id' => array('type' => 'int', 'not null' => true, 'description' => 'notice ID'),
|
'id' => array('type' => 'int', 'not null' => true, 'description' => 'notice ID'),
|
||||||
'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'profile that deleted the notice'),
|
'profile_id' => array('type' => 'int', 'not null' => true, 'description' => 'profile that deleted the notice'),
|
||||||
'uri' => array('type' => 'varchar', 'length' => 191, 'description' => 'URI of the deleted notice'),
|
'uri' => array('type' => 'varchar', 'length' => 191, 'description' => 'URI of the deleted notice'),
|
||||||
'act_uri' => array('type' => 'varchar', 'length' => 191, 'description' => 'URI of the delete activity, may exist in notice table'),
|
|
||||||
'act_created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice record was created'),
|
'act_created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice record was created'),
|
||||||
'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice record was deleted'),
|
'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date the notice record was deleted'),
|
||||||
),
|
),
|
||||||
'primary key' => array('id'),
|
'primary key' => array('id'),
|
||||||
'unique keys' => array(
|
'unique keys' => array(
|
||||||
'deleted_notice_uri_key' => array('uri'),
|
'deleted_notice_uri_key' => array('uri'),
|
||||||
'deleted_notice_act_uri_key' => array('act_uri'),
|
|
||||||
),
|
),
|
||||||
'indexes' => array(
|
'indexes' => array(
|
||||||
'deleted_notice_profile_id_idx' => array('profile_id'),
|
'deleted_notice_profile_id_idx' => array('profile_id'),
|
||||||
|
@ -176,41 +173,34 @@ class Deleted_notice extends Managed_DataObject
|
||||||
$schema = Schema::get();
|
$schema = Schema::get();
|
||||||
$schemadef = $schema->getTableDef($table);
|
$schemadef = $schema->getTableDef($table);
|
||||||
|
|
||||||
// 2015-10-03 We change the meaning of the 'uri' field and move its
|
// 2015-12-31 If we have the act_uri field we want to remove it
|
||||||
// content to the 'act_uri' for the deleted activity. act_created is
|
// since there's no difference in delete verbs and the original URI
|
||||||
// added too.
|
// but the act_created field stays.
|
||||||
if (isset($schemadef['fields']['act_uri'])) {
|
if (!isset($schemadef['fields']['act_uri']) && isset($schemadef['fields']['act_created'])) {
|
||||||
// We already have the act_uri field, so no need to migrate to it.
|
// We don't have an act_uri field, and we also have act_created, so no need to migrate.
|
||||||
return;
|
return;
|
||||||
|
} elseif (isset($schemadef['fields']['act_uri']) && !isset($schemadef['fields']['act_created'])) {
|
||||||
|
throw new ServerException('Something is wrong with your database, you have the act_uri field but NOT act_created in deleted_notice!');
|
||||||
}
|
}
|
||||||
echo "\nFound old $table table, upgrading it to contain 'act_uri' and 'act_created' field...";
|
|
||||||
|
|
||||||
$schemadef['fields']['act_uri'] = array('type' => 'varchar', 'not null' => true, 'length' => 191, 'description' => 'URI of the deleted notice');
|
if (!isset($schemadef['fields']['act_created'])) {
|
||||||
$schemadef['fields']['act_created'] = array('type' => 'datetime', 'not null' => true, 'description' => 'datetime the notice record was created');
|
// this is a "normal" upgrade from StatusNet for example
|
||||||
unset($schemadef['unique keys']);
|
echo "\nFound old $table table, upgrading it to add 'act_created' field...";
|
||||||
$schema->ensureTable($table, $schemadef);
|
|
||||||
|
|
||||||
$deleted = new Deleted_notice();
|
$schemadef['fields']['act_created'] = array('type' => 'datetime', 'not null' => true, 'description' => 'datetime the notice record was created');
|
||||||
$result = $deleted->find();
|
$schema->ensureTable($table, $schemadef);
|
||||||
if ($result === false) {
|
|
||||||
print "\nFound no deleted_notice entries, continuing...";
|
$deleted = new Deleted_notice();
|
||||||
return true;
|
// we don't actually know when the notice was created for the old ones
|
||||||
}
|
$deleted->query('UPDATE deleted_notice SET act_created=created;');
|
||||||
print "\nFound $result deleted_notice entries, aligning with new database layout: ";
|
} else {
|
||||||
while($deleted->fetch()) {
|
// 2015-10-03 For a while we had act_uri and act_created fields which
|
||||||
$orig = clone($deleted);
|
// apparently wasn't necessary.
|
||||||
$deleted->act_uri = $deleted->uri;
|
echo "\nFound old $table table, upgrading it to remove 'act_uri' field...";
|
||||||
// this is a fake URI just to have something to put there to avoid NULL. crc32 of uri is to avoid collisions
|
|
||||||
$deleted->uri = TagURI::mint(strtolower(get_called_class()).':%d:%s:%s:%s:crc32=%x',
|
// we stored what should be in 'uri' in the 'act_uri' field for some night-coding reason.
|
||||||
$deleted->profile_id,
|
$deleted = new Deleted_notice();
|
||||||
ActivityUtils::resolveUri(self::getObjectType(), true),
|
$deleted->query('UPDATE deleted_notice SET uri=act_uri;');
|
||||||
'unknown',
|
|
||||||
common_date_iso8601($deleted->created),
|
|
||||||
crc32($deleted->act_uri)
|
|
||||||
);
|
|
||||||
$deleted->act_created = $deleted->created; // we don't actually know when the notice was created
|
|
||||||
$deleted->updateWithKeys($orig, 'id');
|
|
||||||
print ".";
|
|
||||||
}
|
}
|
||||||
print "DONE.\n";
|
print "DONE.\n";
|
||||||
print "Resuming core schema upgrade...";
|
print "Resuming core schema upgrade...";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user