function hosting_package_update_6001 in Hosting 7.4
Same name and namespace in other branches
- 6.2 package/hosting_package.install \hosting_package_update_6001()
- 7.3 package/hosting_package.install \hosting_package_update_6001()
File
- package/
hosting_package.install, line 343 - Define database schema and update functions for the package management module.
Code
function hosting_package_update_6001() {
// The task database schema needs to be changed before hosting_add_task will work.
$ret = hosting_task_update_6000();
// There appear to be two types of duplication that can be encountered. So we try and find traces of either here.
$duplicate = array();
$result = db_query("SELECT DISTINCT(package_id) FROM {hosting_package_instance} GROUP BY rid, filename HAVING count(*) > 1 ORDER BY package_id;");
while ($instance = db_fetch_array($result)) {
$duplicate[$instance['package_id']] = $instance['package_id'];
}
$result = db_query("SELECT nid FROM {hosting_package} WHERE nid NOT IN (SELECT package_id FROM {hosting_package_instance});");
while ($package = db_fetch_array($result)) {
$duplicate[$package['nid']] = $package['nid'];
}
// We'll only actually execute this fix if duplicates were found (i.e users upgrading from 0.3 should never encounter this).
if (count($duplicate)) {
foreach ($duplicate as $nid) {
$ret[] = array(
'success' => TRUE,
'query' => "Delete package " . $nid,
);
node_delete($nid);
}
// Schedule re-verify of all existing platforms
$result = db_query("SELECT nid FROM {node} WHERE type='platform' AND status=1");
while ($platform = db_fetch_object($result)) {
$ret[] = array(
'success' => TRUE,
'query' => "Re-verify scheduled for platform " . $platform->nid,
);
hosting_add_task($platform->nid, 'verify');
}
}
return $ret;
}