/usr/share/otrs/bin/otrs.ArticleStorageSwitch.pl is in otrs2 3.3.5-1.
This file is owned by root:root, with mode 0o755.
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 | #!/usr/bin/perl
# --
# otrs.ArticleStorageSwitch.pl - to move stored attachments from one backend to other
# Copyright (C) 2001-2014 OTRS AG, http://otrs.com/
# --
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU AFFERO General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
# or see http://www.gnu.org/licenses/agpl.txt.
# --
use strict;
use warnings;
use File::Basename;
use FindBin qw($RealBin);
use lib dirname($RealBin);
use lib dirname($RealBin) . '/Kernel/cpan-lib';
use lib dirname($RealBin) . '/Custom';
use Getopt::Std;
use Kernel::Config;
use Kernel::System::Encode;
use Kernel::System::Log;
use Kernel::System::Time;
use Kernel::System::DB;
use Kernel::System::PID;
use Kernel::System::Main;
use Kernel::System::Ticket;
# get options
my %Opts;
getopt( 'hsdcCf', \%Opts );
if ( $Opts{h} ) {
print "otrs.ArticleStorageSwitch.pl - to move storage content\n";
print "Copyright (C) 2001-2014 OTRS AG, http://otrs.com/\n";
print
"usage: otrs.ArticleStorageSwitch.pl -s ArticleStorageDB -d ArticleStorageFS [-c <JUST_SELECT_WHERE_CLOSE_DATE_IS_BEFORE> e. g. -c '2011-06-29 14:00:00' -C <JUST_SELECT_WHERE_CLOSE_IS_OLDER_IN_DAYS] e. g. -C '5' [-f force]\n";
exit 1;
}
if ( !$Opts{s} ) {
print STDERR "ERROR: Need -s SOURCE, e. g. -s ArticleStorageDB param\n";
exit 1;
}
if ( !$Opts{d} ) {
print STDERR "ERROR: Need -d DESTINATION , e. g. -s ArticleStorageFS param\n";
exit 1;
}
if ( $Opts{s} eq $Opts{d} ) {
print STDERR
"ERROR: Need different source and destination params, e. g. -s ArticleStorageDB -d ArticleStorageFS param\n";
exit 1;
}
# create common objects
my %CommonObject;
$CommonObject{ConfigObject} = Kernel::Config->new();
$CommonObject{EncodeObject} = Kernel::System::Encode->new(%CommonObject);
$CommonObject{LogObject} = Kernel::System::Log->new(
LogPrefix => 'OTRS-otrs.ArticleStorageSwitch.pl',
%CommonObject,
);
$CommonObject{MainObject} = Kernel::System::Main->new(%CommonObject);
$CommonObject{TimeObject} = Kernel::System::Time->new(%CommonObject);
# create needed objects
$CommonObject{DBObject} = Kernel::System::DB->new(%CommonObject);
$CommonObject{PIDObject} = Kernel::System::PID->new(%CommonObject);
$CommonObject{TicketObject} = Kernel::System::Ticket->new(%CommonObject);
# disable ticket events
$CommonObject{ConfigObject}->{'Ticket::EventModulePost'} = {};
# create pid lock
if ( !$Opts{f} && !$CommonObject{PIDObject}->PIDCreate( Name => 'ArticleStorageSwitch' ) ) {
print
"NOTICE: otrs.ArticleStorageSwitch.pl is already running (use '-f 1' if you want to start it ";
print "forced)!\n";
exit 1;
}
elsif ( $Opts{f} && !$CommonObject{PIDObject}->PIDCreate( Name => 'ArticleStorageSwitch' ) ) {
print "NOTICE: otrs.ArticleStorageSwitch.pl is already running but is starting again!\n";
}
# extended input validation
my %SearchParams;
if ( $Opts{c} ) {
# check time stamp format
if ( !$CommonObject{TimeObject}->TimeStamp2SystemTime( String => $Opts{c} ) ) {
print STDERR
"ERROR: -c '$Opts{c}' is not a valid time stamp, please use 'yyyy-mm-dd hh:mm:ss'\n";
exit 1;
}
%SearchParams = (
StateType => 'Closed',
TicketCloseTimeOlderDate => $Opts{c},
);
}
elsif ( $Opts{C} ) {
# check time stamp format
if ( $Opts{C} !~ /^\d+$/ ) {
print STDERR
"ERROR: -C '$Opts{C}' is not a valid integer, please use e. g. '5' for 5 days\n";
exit 1;
}
$Opts{C} = $Opts{C} * 60 * 60 * 24;
my $TimeStamp = $CommonObject{TimeObject}->SystemTime() - $Opts{C};
$TimeStamp = $CommonObject{TimeObject}->SystemTime2TimeStamp(
SystemTime => $TimeStamp,
);
print "NOTICE: Searching for ticket which are closed before '$TimeStamp'\n";
%SearchParams = (
StateType => 'Closed',
TicketCloseTimeOlderDate => $TimeStamp,
);
}
# set new PID
$CommonObject{PIDObject}->PIDCreate(
Name => 'ArticleStorageSwitch',
Force => 1,
TTL => 60 * 60 * 24 * 3,
);
# get all tickets
my @TicketIDs = $CommonObject{TicketObject}->TicketSearch(
# additional search params
%SearchParams,
# result (required)
Result => 'ARRAY',
OrderBy => 'Up',
# result limit
Limit => 1_000_000_000,
UserID => 1,
Permission => 'ro',
);
my $Count = 0;
my $CountTotal = scalar @TicketIDs;
for my $TicketID (@TicketIDs) {
$Count++;
print "NOTICE: $Count/$CountTotal (TicketID:$TicketID)\n";
exit 1 if !$CommonObject{TicketObject}->TicketArticleStorageSwitch(
TicketID => $TicketID,
Source => $Opts{s},
Destination => $Opts{d},
UserID => 1,
);
}
# delete pid lock
$CommonObject{PIDObject}->PIDDelete( Name => 'ArticleStorageSwitch' );
print "NOTICE: done.\n";
exit 0;
|