# --
# 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::Maint::OTRSBusiness::EntitlementCheck;
use strict;
use warnings;
use utf8;
use parent qw(Kernel::System::Console::BaseCommand);
our @ObjectDependencies = (
'Kernel::System::DateTime',
'Kernel::System::OTRSBusiness',
'Kernel::System::SystemData',
);
sub Configure {
my ( $Self, %Param ) = @_;
$Self->Description('Check the OTRS Business Solution™ is entitled for this system.');
$Self->AddOption(
Name => 'force',
Description => "Force to execute even if next update time has not been reached yet.",
Required => 0,
HasValue => 0,
ValueRegex => qr/.*/smx,
);
return;
}
sub Run {
my ( $Self, %Param ) = @_;
my $OTRSBusinessStr = "OTRS Business Solution™";
$Self->Print("Checking the $OTRSBusinessStr entitlement status...\n");
my $Force = $Self->GetOption('force') || 0;
# get OTRS Business object
my $OTRSBusinessObject = $Kernel::OM->Get('Kernel::System::OTRSBusiness');
my $OTRSBusinessInstalled = $OTRSBusinessObject->OTRSBusinessIsInstalled();
if ( !$Force && !$OTRSBusinessInstalled ) {
$Self->Print("$OTRSBusinessStr is not installed in this system, skipping...\n");
$Self->Print("Done.\n");
return $Self->ExitCodeOk();
}
my $SystemDataObject = $Kernel::OM->Get('Kernel::System::SystemData');
my $AvailabilityCheckNextUpdateTime = $SystemDataObject->SystemDataGet(
Key => 'OTRSBusiness::EntitlementCheck::NextUpdateTime',
);
my $NextUpdateSystemTime;
# if there is a defined NextUpdeTime convert it system time
if ($AvailabilityCheckNextUpdateTime) {
$NextUpdateSystemTime = $Kernel::OM->Create(
'Kernel::System::DateTime',
ObjectParams => {
String => $AvailabilityCheckNextUpdateTime,
},
);
}
my $SystemTime = $Kernel::OM->Create('Kernel::System::DateTime');
# do not update registration info before the next update (unless is forced)
if ( !$Force && $NextUpdateSystemTime && $SystemTime < $NextUpdateSystemTime ) {
$Self->Print("No need to execute the availability check at this moment, skipping...\n");
$Self->Print("Done.\n");
return $Self->ExitCodeOk();
}
my $Result = $OTRSBusinessObject->OTRSBusinessEntitlementStatus(
CallCloudService => 1,
);
my $IsInstalled = $OTRSBusinessObject->OTRSBusinessIsInstalled();
# set the next update time
$OTRSBusinessObject->OTRSBusinessCommandNextUpdateTimeSet(
Command => 'EntitlementCheck',
);
if ( lc $Result eq 'forbidden' && $IsInstalled ) {
$Self->PrintError("$OTRSBusinessStr is not entitled for this system.");
return $Self->ExitCodeError();
}
$Self->Print("Done.\n");
return $Self->ExitCodeOk();
}
1;