106 lines
2.9 KiB
Perl
106 lines
2.9 KiB
Perl
# --
|
|
# Copyright (C) 2001-2019 OTRS AG, https://otrs.com/
|
|
# --
|
|
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
|
|
# the enclosed file COPYING for license information (GPL). If you
|
|
# did not receive this file, see https://www.gnu.org/licenses/gpl-3.0.txt.
|
|
# --
|
|
|
|
package Kernel::System::Console::Command::Admin::Group::CustomerLink;
|
|
|
|
use strict;
|
|
use warnings;
|
|
|
|
use parent qw(Kernel::System::Console::BaseCommand);
|
|
|
|
our @ObjectDependencies = (
|
|
'Kernel::System::CustomerGroup',
|
|
'Kernel::System::CustomerUser',
|
|
'Kernel::System::Group',
|
|
);
|
|
|
|
sub Configure {
|
|
my ( $Self, %Param ) = @_;
|
|
|
|
$Self->Description('Connect a customer user to a group.');
|
|
$Self->AddOption(
|
|
Name => 'customer-user-login',
|
|
Description => 'Login name of the customer who should be linked to the given group.',
|
|
Required => 1,
|
|
HasValue => 1,
|
|
ValueRegex => qr/.*/smx,
|
|
);
|
|
$Self->AddOption(
|
|
Name => 'group-name',
|
|
Description => 'Group name of the group the given customer should be linked to.',
|
|
Required => 1,
|
|
HasValue => 1,
|
|
ValueRegex => qr/.*/smx,
|
|
);
|
|
$Self->AddOption(
|
|
Name => 'permission',
|
|
Description => 'Permission (ro|rw) the customer user should have for the group he is going to be linked to.',
|
|
Required => 1,
|
|
HasValue => 1,
|
|
ValueRegex => qr/(ro|rw)/smx,
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
sub PreRun {
|
|
my ( $Self, %Param ) = @_;
|
|
|
|
$Self->{CustomerLogin} = $Self->GetOption('customer-user-login');
|
|
$Self->{GroupName} = $Self->GetOption('group-name');
|
|
|
|
# check role
|
|
my $CustomerName = $Kernel::OM->Get('Kernel::System::CustomerUser')->CustomerName(
|
|
UserLogin => $Self->{CustomerLogin},
|
|
);
|
|
if ( !$CustomerName ) {
|
|
die "Customer $Self->{CustomerLogin} does not exist.\n";
|
|
}
|
|
|
|
# check group
|
|
$Self->{GroupID} = $Kernel::OM->Get('Kernel::System::Group')->GroupLookup( Group => $Self->{GroupName} );
|
|
if ( !$Self->{GroupID} ) {
|
|
die "Group $Self->{GroupName} does not exist.\n";
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
sub Run {
|
|
my ( $Self, %Param ) = @_;
|
|
|
|
$Self->Print("<yellow>Trying to link customer $Self->{CustomerLogin} to group $Self->{GroupName}...</yellow>\n");
|
|
|
|
my %Permissions;
|
|
for my $Permission (qw(ro rw)) {
|
|
$Permissions{$Permission} = ( $Self->GetOption('permission') eq $Permission ) ? 1 : 0;
|
|
}
|
|
|
|
# add user 2 group
|
|
if (
|
|
!$Kernel::OM->Get('Kernel::System::CustomerGroup')->GroupMemberAdd(
|
|
UID => $Self->{CustomerLogin},
|
|
GID => $Self->{GroupID},
|
|
UserID => 1,
|
|
ValidID => 1,
|
|
Permission => {
|
|
%Permissions,
|
|
},
|
|
)
|
|
)
|
|
{
|
|
$Self->PrintError("Can't add user to group.");
|
|
return $Self->ExitCodeError();
|
|
}
|
|
|
|
$Self->Print("<green>Done.</green>\n");
|
|
return $Self->ExitCodeOk();
|
|
}
|
|
|
|
1;
|