mirror of
https://github.com/ovh/the-bastion.git
synced 2025-01-10 01:15:15 +08:00
69 lines
2 KiB
Text
69 lines
2 KiB
Text
|
#! /usr/bin/env perl
|
||
|
# vim: set filetype=perl ts=4 sw=4 sts=4 et:
|
||
|
use common::sense;
|
||
|
|
||
|
use File::Basename;
|
||
|
use lib dirname(__FILE__) . '/../../../lib/perl';
|
||
|
use OVH::Result;
|
||
|
use OVH::Bastion;
|
||
|
use OVH::Bastion::Plugin qw( :DEFAULT help );
|
||
|
|
||
|
my ($group, $reverse);
|
||
|
my $remainingOptions = OVH::Bastion::Plugin::begin(
|
||
|
argv => \@ARGV,
|
||
|
header => "list of servers pertaining to the group",
|
||
|
options => {
|
||
|
"group=s" => \$group,
|
||
|
"reverse-dns" => \$reverse,
|
||
|
},
|
||
|
helptext => <<'EOF',
|
||
|
List the servers (IPs and IP blocks) pertaining to a group
|
||
|
|
||
|
Usage: --osh SCRIPT_NAME --group GROUP [--reverse-dns]
|
||
|
|
||
|
--group GROUP List the servers of this group
|
||
|
--reverse-dns Resolve and display the reverse DNS of each IP (SLOW!)
|
||
|
EOF
|
||
|
);
|
||
|
|
||
|
my $fnret;
|
||
|
|
||
|
if (!$group) {
|
||
|
help();
|
||
|
osh_exit 'ERR_MISSING_PARAMETER', "Missing parameter 'group'";
|
||
|
}
|
||
|
|
||
|
$fnret = OVH::Bastion::is_valid_group_and_existing(group => $group, groupType => "key");
|
||
|
$fnret or osh_exit $fnret;
|
||
|
|
||
|
# get returned untainted value
|
||
|
$group = $fnret->value->{'group'};
|
||
|
my $shortGroup = $fnret->value->{'shortGroup'};
|
||
|
|
||
|
if (
|
||
|
!(
|
||
|
OVH::Bastion::is_group_member(group => $shortGroup, account => $self)
|
||
|
|| OVH::Bastion::is_group_aclkeeper(group => $shortGroup, account => $self, superowner => 1)
|
||
|
|| OVH::Bastion::is_auditor(account => $self)
|
||
|
)
|
||
|
)
|
||
|
{
|
||
|
osh_exit(
|
||
|
R(
|
||
|
'KO_ACCESS_DENIED',
|
||
|
msg =>
|
||
|
"Sorry, you're neither a member or aclkeeper of group $shortGroup, you can't list the servers of this group.\nIf you think you should be able to, use groupInfo to get contact info."
|
||
|
)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
$fnret = OVH::Bastion::get_acl_way(way => 'group', group => $shortGroup);
|
||
|
$fnret or osh_exit $fnret;
|
||
|
|
||
|
if (not @{$fnret->value}) {
|
||
|
osh_ok R('OK_EMPTY', msg => "This group is empty, if you are an aclkeeper of this group, you might want to add servers to it with groupAddServer");
|
||
|
}
|
||
|
|
||
|
OVH::Bastion::print_acls(acls => [{type => 'group', group => $shortGroup, acl => $fnret->value}], reverse => $reverse);
|
||
|
osh_ok($fnret->value);
|