line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Net::Gnats::Command::DBLS; |
2
|
40
|
|
|
40
|
|
164
|
use parent 'Net::Gnats::Command'; |
|
40
|
|
|
|
|
125
|
|
|
40
|
|
|
|
|
179
|
|
3
|
40
|
|
|
40
|
|
2105
|
use strictures; |
|
40
|
|
|
|
|
64
|
|
|
40
|
|
|
|
|
165
|
|
4
|
|
|
|
|
|
|
BEGIN { |
5
|
40
|
|
|
40
|
|
2936
|
$Net::Gnats::Command::DBLS::VERSION = '0.20'; |
6
|
|
|
|
|
|
|
} |
7
|
40
|
|
|
40
|
|
182
|
use vars qw($VERSION); |
|
40
|
|
|
|
|
60
|
|
|
40
|
|
|
|
|
1545
|
|
8
|
|
|
|
|
|
|
|
9
|
40
|
|
|
40
|
|
204
|
use Net::Gnats::Constants qw(CODE_TEXT_READY); |
|
40
|
|
|
|
|
65
|
|
|
40
|
|
|
|
|
6889
|
|
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
=head1 NAME |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
Net::Gnats::Command::DBLS |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 DESCRIPTION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Lists the known set of databases. |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
The gnatsd access level listdb denies access until the user has |
20
|
|
|
|
|
|
|
authenticated with the USER command. The only other command |
21
|
|
|
|
|
|
|
available at this access level is DBLS. This access level provides a |
22
|
|
|
|
|
|
|
way for a site to secure its gnats databases while still providing a |
23
|
|
|
|
|
|
|
way for client tools to obtain a list of the databases for use on |
24
|
|
|
|
|
|
|
login screens etc. |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
The list of databases follows, one per line, using the standard |
27
|
|
|
|
|
|
|
quoting mechanism. Only the database names are sent. |
28
|
|
|
|
|
|
|
|
29
|
|
|
|
|
|
|
=head1 PROTOCOL |
30
|
|
|
|
|
|
|
|
31
|
|
|
|
|
|
|
DBLS |
32
|
|
|
|
|
|
|
|
33
|
|
|
|
|
|
|
=head1 RESPONSES |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
The possible responses are: |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
6xx (internal error) An internal error was encountered while trying |
38
|
|
|
|
|
|
|
to obtain the list of available databases, usually due to lack of |
39
|
|
|
|
|
|
|
permissions or other filesystem-related problems, or the list of |
40
|
|
|
|
|
|
|
databases is empty. |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
301 (CODE_TEXT_READY) |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
=cut |
45
|
|
|
|
|
|
|
|
46
|
|
|
|
|
|
|
my $c = 'DBLS'; |
47
|
|
|
|
|
|
|
|
48
|
|
|
|
|
|
|
sub new { |
49
|
7
|
|
|
7
|
1
|
11
|
my ( $class ) = @_; |
50
|
7
|
50
|
|
|
|
19
|
my %options = shift if $_; |
51
|
7
|
|
|
|
|
23
|
my $self = bless \%options, $class; |
52
|
7
|
|
|
|
|
21
|
return $self; |
53
|
|
|
|
|
|
|
} |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
sub as_string { |
56
|
18
|
|
|
18
|
1
|
53
|
return $c; |
57
|
|
|
|
|
|
|
} |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
sub is_ok { |
60
|
4
|
|
|
4
|
0
|
5
|
my ($self) = @_; |
61
|
4
|
100
|
|
|
|
10
|
return 1 if $self->response->code == CODE_TEXT_READY; |
62
|
1
|
|
|
|
|
4
|
return 0; |
63
|
|
|
|
|
|
|
} |
64
|
|
|
|
|
|
|
|
65
|
|
|
|
|
|
|
1; |