#! /bin/false
$Qgoda::Repository::VERSION
=
'0.9.8'
;
sub
new {
my
(
$class
,
$uri
) =
@_
;
$uri
= URI->new(
$uri
);
if
(
$uri
=~ m{^\.\.?\\/}) {
$uri
=
'file://'
. File::Spec->rel2abs(
$uri
);
$uri
=~ s{\\}{/}g;
$uri
= URI->new(
$uri
);
}
elsif
(
$uri
=~ s{^~([^/\\]*)}{}) {
my
$user
= $1;
my
$home
;
if
(
length
$user
) {
$home
= File::HomeDir->user_home(
$user
);
}
else
{
$home
= File::HomeDir->my_home;
}
$uri
=
'file://'
.
$home
.
'/'
.
$uri
;
$uri
=~ s{\\}{/}g;
$uri
= URI->new(
$uri
);
}
elsif
(File::Spec->file_name_is_absolute(
$uri
)) {
}
if
(
undef
eq
$uri
->scheme) {
my
$file
=
"$uri"
;
if
(File::Spec->file_name_is_absolute(
$file
)) {
$uri
= URI->new(
$file
,
'file'
);
}
else
{
if
(
$file
=~ /^[_a-zA-Z][_a-zA-Z0-9]*\@/) {
$uri
=~ s{:}{/};
$uri
= URI->new(
'git+ssh://'
.
$uri
);
}
elsif
(!-e
$file
&&
$file
=~ m{/}) {
}
else
{
$uri
= URI::file->new_abs(
$file
);
}
}
}
my
$self
= {
__uri
=>
$uri
};
my
$protocol
=
$uri
->scheme;
my
%known
= (
'git'
=>
'Git'
,
'git+ssh'
=>
'Git'
,
'git+http'
=>
'Git'
,
'git+https'
=>
'Git'
,
'git+file'
=>
'Git'
,
'file'
=>
'File'
);
$self
->{__type} =
$known
{
$protocol
} ||
'LWP'
;
if
(
'Git'
eq
$self
->{__type}) {
my
$scheme
=
$self
->{__uri}->scheme;
if
(
$scheme
=~ /\+(.*)/) {
$self
->{__uri}->scheme($1);
}
}
if
(
'http'
eq
$uri
->scheme ||
'https'
eq
$uri
->scheme) {
if
(!is_archive
$uri
->path) {
$self
->{__type} =
'Git'
;
$self
->{__source} =
'Github'
if
'github.com'
eq
$self
->{__uri}->host;
}
}
if
(
$self
->{__type}) {
if
(
'Git'
eq
$self
->{__type}) {
if
(
'github.com'
eq
$self
->{__uri}->host) {
$self
->{__source} =
'Github'
;
}
}
}
bless
$self
,
$class
;
}
sub
type {
shift
->{__type} }
sub
source {
shift
->{__source} }
sub
uri {
shift
->{__uri} }
sub
fetch {
my
(
$self
) =
@_
;
my
$logger
= Qgoda->new->logger;
my
$fetcher_class
=
'Qgoda::Repository::Fetcher::'
.
$self
->{__type};
my
$fetcher_module
=
$fetcher_class
;
$fetcher_module
=~ s{::}{/}g;
$fetcher_module
.=
'.pm'
;
require
$fetcher_module
;
$logger
->info(__x(
"fetching '{uri}'"
,
uri
=>
$self
->{__uri}));
my
$tmp
= File::Temp->newdir;
$logger
->debug(__x(
"created temporary directory '{dir}'"
,
dir
=>
$tmp
));
my
$fetcher
=
$fetcher_class
->new;
my
$dir
=
$fetcher
->fetch(
$self
->{__uri},
$tmp
->dirname);
return
(
$dir
,
$tmp
);
}
$URI::git_Phttp::VERSION
=
'0.9.8'
;
$URI::git_Phttps::VERSION
=
'0.9.8'
;
$URI::git_Pssh::VERSION
=
'0.9.8'
;
$URI::git_Pfile::VERSION
=
'0.9.8'
;
1;