/usr/share/otrs/scripts/DBUpdateTo6/MigratePostMasterData.pm is in otrs2 6.0.5-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 | # --
# Copyright (C) 2001-2018 OTRS AG, http://otrs.com/
# --
# This software comes with ABSOLUTELY NO WARRANTY. For details, see
# the enclosed file COPYING for license information (AGPL). If you
# did not receive this file, see http://www.gnu.org/licenses/agpl.txt.
# --
package scripts::DBUpdateTo6::MigratePostMasterData; ## no critic
use strict;
use warnings;
use parent qw(scripts::DBUpdateTo6::Base);
our @ObjectDependencies = (
'Kernel::System::DB',
'Kernel::System::Log',
);
=head1 NAME
scripts::DBUpdateTo6::MigratePostMasterData - Migrate PostMaster data.
=cut
sub Run {
my ( $Self, %Param ) = @_;
my $DBObject = $Kernel::OM->Get('Kernel::System::DB');
# get the needed ArticleTypeMapping from a YML file
my $TaskConfig = $Self->GetTaskConfig( Module => 'MigrateArticleData' );
my %ArticleTypeMapping = %{ $TaskConfig->{ArticleTypeMapping} };
PFTABLE:
for my $Field (qw(X-OTRS-ArticleType X-OTRS-FollowUp-ArticleType)) {
next PFTABLE if !$DBObject->Prepare(
SQL => 'SELECT f_name, f_key, f_value
FROM postmaster_filter
WHERE f_key = ?
ORDER BY f_name ASC',
Bind => [ \$Field ],
);
my $NewKeyValue;
if ( $Field eq 'X-OTRS-ArticleType' ) {
$NewKeyValue = 'X-OTRS-IsVisibleForCustomer';
}
else {
$NewKeyValue = 'X-OTRS-FollowUp-IsVisibleForCustomer';
}
my @Data;
ROW:
while ( my @Row = $DBObject->FetchrowArray() ) {
my $FilterName = $Row[0];
my $FilterKey = $Row[1];
my $FilterValue = $Row[2];
next ROW if !$FilterKey;
# Map visible for customer.
my $IsVisibleForCustomer = $ArticleTypeMapping{$FilterValue}->{Visible} || 0;
my %CurrentRow = (
Name => $FilterName,
OldKey => $Field,
Key => $NewKeyValue,
Value => $IsVisibleForCustomer,
);
push @Data, \%CurrentRow;
}
# No data means migration is not needed.
next PFTABLE if !@Data;
my $MigrationResult = $Self->_MigrateData(
Data => \@Data,
);
if ( !$MigrationResult ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "An error occurs during data migration for: $Field!",
);
return;
}
}
return 1;
}
=head2 _MigrateData()
Change ArticleType data to IsVisibleForAgent in postmaster+filter table. Returns 1 on success
my $Result = $DBUpdateTo6Object->_MigrateData(
Data => \@OldArticleData, # Old structure content
);
=cut
sub _MigrateData {
my ( $Self, %Param ) = @_;
# Check needed stuff.
if ( !$Param{Data} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need Data!",
);
return;
}
# Check needed stuff.
if ( ref $Param{Data} ne 'ARRAY' ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Data must be an array reference!",
);
return;
}
if ( !@{ $Param{Data} } ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Data array must not be empty!",
);
return;
}
my $DBObject = $Kernel::OM->Get('Kernel::System::DB');
for my $Data ( @{ $Param{Data} } ) {
return if !$DBObject->Do(
SQL => 'UPDATE postmaster_filter
SET f_key = ?,
f_value = ?
WHERE f_name = ?
AND f_key = ?',
Bind => [
\$Data->{Key},
\$Data->{Value},
\$Data->{Name},
\$Data->{OldKey},
],
);
}
return 1;
}
=head2 CheckPreviousRequirement()
check for initial conditions for running this migration step.
Returns 1 on success
my $Result = $DBUpdateTo6Object->CheckPreviousRequirement();
=cut
sub CheckPreviousRequirement {
my ( $Self, %Param ) = @_;
# try to get the needed ArticleTypeMapping from a YML file
my $TaskConfig = $Self->GetTaskConfig( Module => 'MigrateArticleData' );
return if !$TaskConfig;
my %ArticleTypeMapping = %{ $TaskConfig->{ArticleTypeMapping} };
return if !%ArticleTypeMapping;
return 1;
}
1;
=head1 TERMS AND CONDITIONS
This software is part of the OTRS project (L<http://otrs.org/>).
This software comes with ABSOLUTELY NO WARRANTY. For details, see
the enclosed file COPYING for license information (AGPL). If you
did not receive this file, see L<http://www.gnu.org/licenses/agpl.txt>.
=cut
|