webgui/docs/upgrades/upgrade_7.6.11-7.6.12.pl
2009-02-20 23:47:30 +00:00

185 lines
6.1 KiB
Perl

#!/usr/bin/env perl
#-------------------------------------------------------------------
# WebGUI is Copyright 2001-2009 Plain Black Corporation.
#-------------------------------------------------------------------
# Please read the legal notices (docs/legal.txt) and the license
# (docs/license.txt) that came with this distribution before using
# this software.
#-------------------------------------------------------------------
# http://www.plainblack.com info@plainblack.com
#-------------------------------------------------------------------
our ($webguiRoot);
BEGIN {
$webguiRoot = "../..";
unshift (@INC, $webguiRoot."/lib");
}
use strict;
use Getopt::Long;
use WebGUI::Session;
use WebGUI::Storage;
use WebGUI::Asset;
use WebGUI::Utility qw/isIn/;
my $toVersion = '7.6.12';
my $quiet; # this line required
my $session = start(); # this line required
addAssetDiscoveryServiceAgain( $session );
changeMatrixAttributeIndexing( $session );
fixCollaborationGroupToEditPost( $session );
convertLongVarcharsToText( $session );
# upgrade functions go here
finish($session); # this line required
#----------------------------------------------------------------------------
# Describe what our function does
#sub exampleFunction {
# my $session = shift;
# print "\tWe're doing some stuff here that you should know about... " unless $quiet;
# # and here's our code
# print "DONE!\n" unless $quiet;
#}
#----------------------------------------------------------------------------
sub convertLongVarcharsToText {
my $session = shift;
print "\tConverting Survey VARCHAR fields to TEXT... " unless $quiet;
$session->db->write("ALTER TABLE Survey MODIFY COLUMN exitURL TEXT");
$session->db->write("ALTER TABLE Survey_tempReport MODIFY COLUMN sectionName TEXT");
$session->db->write("ALTER TABLE Survey_tempReport MODIFY COLUMN questionName TEXT");
# and here's our code
print "Done.\n" unless $quiet;
}
#----------------------------------------------------------------------------
sub addAssetDiscoveryServiceAgain {
my $session = shift;
print "\tAdding asset discovery service..." unless $quiet;
my @handlers = @{ $session->config->get('contentHandlers') };
if (isIn( 'WebGUI::Content::AssetDiscovery', @handlers) ) {
print "Done.\n" unless $quiet;
return;
}
my @newHandlers = ();
foreach my $handler (@handlers) {
if ($handler eq 'WebGUI::Content::Operation') {
push @newHandlers, 'WebGUI::Content::AssetDiscovery';
}
push @newHandlers, $handler;
}
$session->config->set('contentHandlers', \@newHandlers);
print "Done.\n" unless $quiet;
}
#----------------------------------------------------------------------------
sub changeMatrixAttributeIndexing {
my $session = shift;
print "\tChanging Matrix attribute indexing..." unless $quiet;
$session->db->write("alter table MatrixListing_attribute drop primary key, add primary key(attributeId,matrixListingId)");
print "Done.\n" unless $quiet;
}
#----------------------------------------------------------------------------
# Fix the groupToEditPost in the Collaboration (should not be "")
sub fixCollaborationGroupToEditPost {
my $session = shift;
print "\tFixing group to edit post in Collaboration..." unless $quiet;
# and here's our code
$session->db->write(<<'SQL');
UPDATE Collaboration
SET groupToEditPost= (
SELECT groupIdEdit FROM assetData
WHERE assetData.assetId=Collaboration.assetId
AND assetData.revisionDate = Collaboration.revisionDate
)
WHERE groupToEditPost = "";
SQL
print "DONE!\n" unless $quiet;
}
# -------------- DO NOT EDIT BELOW THIS LINE --------------------------------
#----------------------------------------------------------------------------
# Add a package to the import node
sub addPackage {
my $session = shift;
my $file = shift;
# Make a storage location for the package
my $storage = WebGUI::Storage->createTemp( $session );
$storage->addFileFromFilesystem( $file );
# Import the package into the import node
my $package = WebGUI::Asset->getImportNode($session)->importPackage( $storage );
# Make the package not a package anymore
$package->update({ isPackage => 0 });
# Set the default flag for templates added
my $assetIds
= $package->getLineage( ['self','descendants'], {
includeOnlyClasses => [ 'WebGUI::Asset::Template' ],
} );
for my $assetId ( @{ $assetIds } ) {
my $asset = WebGUI::Asset->newByDynamicClass( $session, $assetId );
if ( !$asset ) {
print "Couldn't instantiate asset with ID '$assetId'. Please check package '$file' for corruption.\n";
next;
}
$asset->update( { isDefault => 1 } );
}
return;
}
#-------------------------------------------------
sub start {
my $configFile;
$|=1; #disable output buffering
GetOptions(
'configFile=s'=>\$configFile,
'quiet'=>\$quiet
);
my $session = WebGUI::Session->open($webguiRoot,$configFile);
$session->user({userId=>3});
my $versionTag = WebGUI::VersionTag->getWorking($session);
$versionTag->set({name=>"Upgrade to ".$toVersion});
return $session;
}
#-------------------------------------------------
sub finish {
my $session = shift;
updateTemplates($session);
my $versionTag = WebGUI::VersionTag->getWorking($session);
$versionTag->commit;
$session->db->write("insert into webguiVersion values (".$session->db->quote($toVersion).",'upgrade',".$session->datetime->time().")");
$session->close();
}
#-------------------------------------------------
sub updateTemplates {
my $session = shift;
return undef unless (-d "packages-".$toVersion);
print "\tUpdating packages.\n" unless ($quiet);
opendir(DIR,"packages-".$toVersion);
my @files = readdir(DIR);
closedir(DIR);
my $newFolder = undef;
foreach my $file (@files) {
next unless ($file =~ /\.wgpkg$/);
# Fix the filename to include a path
$file = "packages-" . $toVersion . "/" . $file;
addPackage( $session, $file );
}
}
#vim:ft=perl