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 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514
|
# --
# Kernel/System/Ticket/ArticleStorageFS.pm - article storage module for OTRS kernel
# Copyright (C) 2001-2005 Martin Edenhofer <martin+code@otrs.org>
# --
# $Id: ArticleStorageFS.pm,v 1.28 2005/11/08 06:59:06 martin Exp $
# --
# 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 http://www.gnu.org/licenses/gpl.txt.
# --
package Kernel::System::Ticket::ArticleStorageFS;
use strict;
use File::Path;
use File::Basename;
use MIME::Words qw(:all);
use MIME::Base64;
# --
# to get it writable for the otrs group (just in case)
# --
umask 002;
use vars qw($VERSION);
$VERSION = '$Revision: 1.28 $';
$VERSION =~ s/^\$.*:\W(.*)\W.+?$/$1/;
# --
sub ArticleStorageInit {
my $Self = shift;
my %Param = @_;
# ArticleDataDir
$Self->{ArticleDataDir} = $Self->{ConfigObject}->Get('ArticleDir')
|| die "Got no ArticleDir!";
# create ArticleContentPath
my ($Sec, $Min, $Hour, $Day, $Month, $Year) = $Self->{TimeObject}->SystemTime2Date(
SystemTime => $Self->{TimeObject}->SystemTime(),
);
$Self->{ArticleContentPath} = $Year.'/'.$Month.'/'.$Day;
# check fs write permissions!
my $Path = "$Self->{ArticleDataDir}/$Self->{ArticleContentPath}/check_permissions.$$";
if (-d $Path) {
File::Path::rmtree([$Path]) || die "Can't remove $Path: $!\n";
}
if (mkdir("$Self->{ArticleDataDir}/check_permissions_$$", 022)) {
if (!rmdir("$Self->{ArticleDataDir}/check_permissions_$$")) {
die "Can't remove $Self->{ArticleDataDir}/check_permissions_$$: $!\n";
}
if (File::Path::mkpath([$Path], 0, 0775)) {
File::Path::rmtree([$Path]) || die "Can't remove $Path: $!\n";
}
}
else {
my $Error = $!;
$Self->{LogObject}->Log(
Priority => 'notice',
Message => "Can't create $Self->{ArticleDataDir}/check_permissions_$$: $Error, ".
"Try: \$OTRS_HOME/bin/SetPermissions.sh !",
);
die "Error: Can't create $Self->{ArticleDataDir}/check_permissions_$$: $Error \n\n ".
"Try: \$OTRS_HOME/bin/SetPermissions.sh !!!\n";
}
return 1;
}
# --
sub ArticleDelete {
my $Self = shift;
my %Param = @_;
# check needed stuff
foreach (qw(TicketID UserID)) {
if (!$Param{$_}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
return;
}
}
# delete attachments and plain emails
my @Articles = $Self->ArticleIndex(TicketID => $Param{TicketID});
foreach (@Articles) {
# delete attachments
$Self->ArticleDeleteAttachment(
ArticleID => $_,
UserID => $Param{UserID},
);
# delete plain message
$Self->ArticleDeletePlain(
ArticleID => $_,
UserID => $Param{UserID},
);
# delete storage directory
$Self->_ArticleDeleteDirectory(
ArticleID => $_,
UserID => $Param{UserID},
);
}
# delete articles
foreach (qw(TicketID)) {
$Param{$_} = $Self->{DBObject}->Quote($Param{$_}, 'Integer');
}
if ($Self->{DBObject}->Do(SQL => "DELETE FROM article WHERE ticket_id = $Param{TicketID}")) {
# delete history
if ($Self->HistoryDelete(TicketID => $Param{TicketID}, UserID => $Param{UserID})) {
return 1;
}
else {
return;
}
}
else {
return;
}
}
# --
sub _ArticleDeleteDirectory {
my $Self = shift;
my %Param = @_;
# check needed stuff
foreach (qw(ArticleID UserID)) {
if (!$Param{$_}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
return;
}
}
# delete directory from fs
my $ContentPath = $Self->ArticleGetContentPath(ArticleID => $Param{ArticleID});
my $Path = "$Self->{ArticleDataDir}/$ContentPath/$Param{ArticleID}";
if (-d $Path) {
if (! rmdir($Path)) {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Can't remove: $Path: $!!",
);
return;
}
}
return 1;
}
# --
sub ArticleDeletePlain {
my $Self = shift;
my %Param = @_;
# check needed stuff
foreach (qw(ArticleID UserID)) {
if (!$Param{$_}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
return;
}
}
# delete attachments
foreach (qw(ArticleID)) {
$Param{$_} = $Self->{DBObject}->Quote($Param{$_}, 'Integer');
}
$Self->{DBObject}->Do(SQL => "DELETE FROM article_plain WHERE article_id = $Param{ArticleID}");
# delete from fs
my $ContentPath = $Self->ArticleGetContentPath(ArticleID => $Param{ArticleID});
my $File = "$Self->{ArticleDataDir}/$ContentPath/$Param{ArticleID}/plain.txt";
if (-f $File) {
if (!unlink($File)) {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Can't remove: $File: $!!",
);
return;
}
}
return 1;
}
# --
sub ArticleDeleteAttachment {
my $Self = shift;
my %Param = @_;
# check needed stuff
foreach (qw(ArticleID UserID)) {
if (!$Param{$_}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
return;
}
}
# delete attachments
foreach (qw(ArticleID)) {
$Param{$_} = $Self->{DBObject}->Quote($Param{$_}, 'Integer');
}
$Self->{DBObject}->Do(SQL => "DELETE FROM article_attachment WHERE article_id = $Param{ArticleID}");
# delete from fs
my $ContentPath = $Self->ArticleGetContentPath(ArticleID => $Param{ArticleID});
my $Path = "$Self->{ArticleDataDir}/$ContentPath/$Param{ArticleID}";
if (-e $Path) {
my @List = glob($Path."/*");
foreach my $File (@List) {
$File =~ s!^.*/!!;
if ($File !~ /^plain.txt$/) {
if (!unlink "$Path/$File") {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Can't remove: $Path/$File: $!!",
);
}
}
}
}
return 1;
}
# --
sub ArticleWritePlain {
my $Self = shift;
my %Param = @_;
# check needed stuff
foreach (qw(ArticleID Email UserID)) {
if (!$Param{$_}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
return;
}
}
# prepare/filter ArticleID
$Param{ArticleID} = quotemeta($Param{ArticleID});
$Param{ArticleID} =~ s/\0//g;
# define path
my $Path = $Self->{ArticleDataDir}.'/'.$Self->{ArticleContentPath}.'/'.$Param{ArticleID};
# debug
if ($Self->{Debug} > 1) {
$Self->{LogObject}->Log(Message => "->WriteArticle: $Path");
}
# write article to fs 1:1
File::Path::mkpath([$Path], 0, 0775);
# write article to fs
if (open (DATA, "> $Path/plain.txt")) {
binmode(DATA);
print DATA $Param{Email};
close (DATA);
return 1;
}
else {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Can't write: $Path/plain.txt: $!",
);
return;
}
}
# --
sub ArticleWriteAttachment {
my $Self = shift;
my %Param = @_;
# check needed stuff
foreach (qw(Content Filename ContentType ArticleID UserID)) {
if (!$Param{$_}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
return;
}
}
# prepare/filter ArticleID
$Param{ArticleID} = quotemeta($Param{ArticleID});
$Param{ArticleID} =~ s/\0//g;
my $ContentPath = $Self->ArticleGetContentPath(ArticleID => $Param{ArticleID});
# define path
$Param{Path} = $Self->{ArticleDataDir}.'/'.$ContentPath.'/'.$Param{ArticleID};
# check used name (we want just uniq names)
$Param{Filename} = decode_mimewords($Param{Filename});
# strip spaces from filenames
$Param{Filename} =~ s/ /_/g;
# strip dots from filenames
$Param{Filename} =~ s/^\.//g;
my $NewFileName = $Param{Filename};
my %UsedFile = ();
my %Index = $Self->ArticleAttachmentIndex(
ArticleID => $Param{ArticleID},
);
foreach (keys %Index) {
$UsedFile{$Index{$_}->{Filename}} = 1;
}
for (my $i=1; $i<=12; $i++) {
if (exists $UsedFile{$NewFileName}) {
if ($Param{Filename} =~ /^(.*)\.(.+?)$/) {
$NewFileName = "$1-$i.$2";
}
else {
$NewFileName = "$Param{Filename}-$i";
}
}
}
$Param{Filename} = $NewFileName;
# write attachment to backend
if (! -d $Param{Path}) {
if (! File::Path::mkpath([$Param{Path}], 0, 0775)) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Can't create $Param{Path}: $!");
return;
}
}
# write attachment to fs
if (open (DATA, "> $Param{Path}/$Param{Filename}")) {
binmode(DATA);
print DATA "$Param{ContentType}\n";
print DATA $Param{Content};
close (DATA);
return 1;
}
else {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Can't write: $Param{Path}/$Param{Filename}: $!",
);
return;
}
}
# --
sub ArticlePlain {
my $Self = shift;
my %Param = @_;
# check needed stuff
if (!$Param{ArticleID}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need ArticleID!");
return;
}
# prepare/filter ArticleID
$Param{ArticleID} = quotemeta($Param{ArticleID});
$Param{ArticleID} =~ s/\0//g;
# get content path
my $ContentPath = $Self->ArticleGetContentPath(ArticleID => $Param{ArticleID});
# open plain article
my $Data = '';
if (!open (DATA, "< $Self->{ArticleDataDir}/$ContentPath/$Param{ArticleID}/plain.txt")) {
# can't open article
# try database
foreach (qw(ArticleID)) {
$Param{$_} = $Self->{DBObject}->Quote($Param{$_}, 'Integer');
}
my $SQL = "SELECT body FROM article_plain ".
" WHERE ".
" article_id = $Param{ArticleID}";
$Self->{DBObject}->Prepare(SQL => $SQL);
while (my @Row = $Self->{DBObject}->FetchrowArray()) {
$Data = $Row[0];
}
if ($Data) {
return $Data;
}
else {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "Can't open $Self->{ArticleDataDir}/$ContentPath/$Param{ArticleID}/plain.txt: $!",
);
return;
}
}
else {
# read whole article
binmode(DATA);
while (<DATA>) {
$Data .= $_;
}
close (DATA);
return $Data;
}
}
# --
sub ArticleAttachmentIndex {
my $Self = shift;
my %Param = @_;
# check ArticleContentPath
if (!$Self->{ArticleContentPath}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need ArticleContentPath!");
return;
}
# check needed stuff
if (!$Param{ArticleID}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need ArticleID!");
return;
}
my $ContentPath = $Self->ArticleGetContentPath(ArticleID => $Param{ArticleID});
my %Index = ();
my $Counter = 0;
# try fs
my @List = glob("$Self->{ArticleDataDir}/$ContentPath/$Param{ArticleID}/*");
foreach my $Filename (@List) {
$Counter++;
my $FileSize = -s $Filename;
# human readable file size
if ($FileSize) {
# remove meta data in files
$FileSize = $FileSize - 30 if ($FileSize > 30);
if ($FileSize > (1024*1024)) {
$FileSize = sprintf "%.1f MBytes", ($FileSize/(1024*1024));
}
elsif ($FileSize > 1024) {
$FileSize = sprintf "%.1f KBytes", (($FileSize/1024));
}
else {
$FileSize = $FileSize.' Bytes';
}
}
# read content type
my $ContentType = '';
if (open(IN, "< $Filename")) {
while (<IN>) {
if ($ContentType) {
last;
}
else {
$ContentType = $_;
}
}
close(IN);
}
# strip filename
$Filename =~ s!^.*/!!;
if ($Filename ne 'plain.txt') {
# add the info the the hash
$Index{$Counter} = {
Filename => $Filename,
Filesize => $FileSize,
ContentType => $ContentType,
};
}
}
# try database (if there is no index in fs)
if (!%Index) {
foreach (qw(ArticleID)) {
$Param{$_} = $Self->{DBObject}->Quote($Param{$_}, 'Integer');
}
my $SQL = "SELECT filename, content_type, content_size FROM article_attachment ".
" WHERE ".
" article_id = $Param{ArticleID} ORDER BY id";
$Self->{DBObject}->Prepare(SQL => $SQL);
while (my @Row = $Self->{DBObject}->FetchrowArray()) {
$Counter++;
# human readable file size
if ($Row[2]) {
if ($Row[2] > (1024*1024)) {
$Row[2] = sprintf "%.1f MBytes", ($Row[2]/(1024*1024));
}
elsif ($Row[2] > 1024) {
$Row[2] = sprintf "%.1f KBytes", (($Row[2]/1024));
}
else {
$Row[2] = $Row[2].' Bytes';
}
}
# add the info the the hash
$Index{$Counter} = {
Filename => $Row[0],
ContentType => $Row[1],
Filesize => $Row[2] || '',
};
}
}
return %Index;
}
# --
sub ArticleAttachment {
my $Self = shift;
my %Param = @_;
# check needed stuff
foreach (qw(ArticleID FileID)) {
if (!$Param{$_}) {
$Self->{LogObject}->Log(Priority => 'error', Message => "Need $_!");
return;
}
}
# prepare/filter ArticleID
$Param{ArticleID} = quotemeta($Param{ArticleID});
$Param{ArticleID} =~ s/\0//g;
# get attachment index
my %Index = $Self->ArticleAttachmentIndex(ArticleID => $Param{ArticleID});
# get content path
my $ContentPath = $Self->ArticleGetContentPath(ArticleID => $Param{ArticleID});
my %Data = %{$Index{$Param{FileID}}};;
my $Counter = 0;
if (open (DATA, "< $Self->{ArticleDataDir}/$ContentPath/$Param{ArticleID}/$Data{Filename}")) {
binmode(DATA);
while (<DATA>) {
$Data{ContentType} = $_ if ($Counter == 0);
$Data{Content} .= $_ if ($Counter > 0);
$Counter++;
}
close (DATA);
chomp ($Data{ContentType});
return %Data;
}
else {
# try database
foreach (qw(ArticleID)) {
$Param{$_} = $Self->{DBObject}->Quote($Param{$_}, 'Integer');
}
my $SQL = "SELECT content_type, content FROM article_attachment ".
" WHERE ".
" article_id = $Param{ArticleID}";
$Self->{DBObject}->Prepare(SQL => $SQL, Limit => $Param{FileID});
while (my @Row = $Self->{DBObject}->FetchrowArray()) {
$Data{ContentType} = $Row[0];
# decode attachemnt if it's e. g. a postgresql backend!!!
if (!$Self->{DBObject}->GetDatabaseFunction('DirectBlob')) {
$Data{Content} = decode_base64($Row[1]);
}
else {
$Data{Content} = $Row[1];
}
}
if ($Data{Content}) {
return %Data;
}
else {
$Self->{LogObject}->Log(
Priority => 'error',
Message => "$!: $Self->{ArticleDataDir}/$ContentPath/$Param{ArticleID}/$Index{$Param{FileID}}!",
);
return;
}
}
}
# --
1;
|