Bio-GMOD
view release on metacpan or search on metacpan
GMOD/Util/CheckVersions.pm view on Meta::CPAN
my $response = $self->_check_version($adaptor->development_url,$adaptor->version_dev);
# Save the current dev version
$adaptor->{defaults}->{dev_version} = $response->{version};
return (wantarray ? %$response : $response->{version});
}
sub mirror_version {
my ($self,@p) = @_;
my ($site,$cgi) = rearrange([qw/SITE CGI/],@p);
my $adaptor = $self->adaptor;
$site =~ s/\/$//;
my $response = $self->_check_version($site,"$site/$cgi");
return (wantarray ? %$response : $response->{version});
}
# Local version should be supplied by subclass
# We not yet have instantiated a CheckVersions::* object
# if we have come from, say, Update::*
# Instantiate now, and pass the parent class for the adaptor
# Exceptionally poor design flaw.
sub local_version {
my $self = shift;
my $mod = $self->mod;
my $subclass = "Bio::GMOD::Util::CheckVersions::$mod";
eval "require $subclass" or $self->logit(-msg=>"Could not subclass $subclass: $!",-die=>1);
my %response = $subclass->local_version(-parent => $self);
return (wantarray ? %response : $response{version});
}
# Placeholder - not sure if I am going to implement this
#sub package_version {
#}
# Read the contents of a provided symlink (or path) to parse out a version
# Returning the full path the symlink points at, the installed version
# and its modtime
sub read_symlink {
my ($self,$path) = @_;
my $realdir = -l $path ? readlink $path : $path;
my ($root) = $path =~ /(.*\/).*/;
my $full_path = $root . "/$realdir";
my @temp = stat($full_path);
my $modtime = localtime($temp[9]);
return ($realdir,$modtime);
}
##################################
# PRIVATE METHODS
##################################
sub _check_version {
my ($self,$site,$url) = @_;
# Version script holds a simple cgi that dumps out the
# title, release date, and version of the database
$url ||= $site;
my $version = $self->biogmod_version;
my $ua = LWP::UserAgent->new();
$ua->agent("Bio::GMOD::Util::CheckVersions/$version");
my $request = HTTP::Request->new('GET',$url);
my $response = $ua->request($request);
my %response;
if ($response->is_success) {
# Parse out the content
my $content = $response->content;
my $parsed = XMLin($content);
foreach (keys %{$parsed}) {
$response{$_} = $parsed->{$_};
}
$response{status} = "SUCCESS";
} else {
$response{error} = "FAILURE: Couldn't check version: " . $response->status_line;
}
$response{url} = $site;
return \%response;
}
__END__
=pod
=head1 NAME
Bio::GMOD::Util::CheckVersions - Find current versions of GMOD installations
=head1 SYNOPSIS
use Bio::GMOD::Util::CheckVersions;
my $gmod = Bio::GMOD::Util::CheckVersions->new(-mod => 'WormBase');
my $live = $gmod->live_version();
my $dev = $gmod->development_version();
my $local = $gmod->local_version();
=head1 DESCRIPTION
Bio::GMOD::Util::CheckVersions provides several methods for determining the
current live and development versions of a MOD. In addition it
includes several methods for fetching locally installed version as
well as versions of installed packages, useful for updating and
archiving purposes.
By providing live_url annd version_cgi_live in the MOD adaptor
defaults -- as well as installing a suitable CGI, no additional
subclassing will be necessary. Likewise, to provide easy access to
development versions, provide the development_url and version_cgi_dev
variables.
Alternatively, you may provide custom methods for live_version,
development_version, and local_version by subclassing
Bio::GMOD::Util::CheckVersions, using the name of the MOD.
=head2 PUBLIC METHODS
=head3 CHECKING REMOTE VERSIONS
=over 4
( run in 1.908 second using v1.01-cache-2.11-cpan-98e64b0badf )