/usr/share/otrs/Kernel/System/Loader.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 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 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 | # --
# 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 Kernel::System::Loader;
use strict;
use warnings;
use CSS::Minifier qw();
use JavaScript::Minifier qw();
our @ObjectDependencies = (
'Kernel::Config',
'Kernel::Output::HTML::Layout',
'Kernel::System::Cache',
'Kernel::System::Log',
'Kernel::System::Main',
);
=head1 NAME
Kernel::System::Loader - CSS/JavaScript loader backend
=head1 DESCRIPTION
All valid functions.
=head1 PUBLIC INTERFACE
=head2 new()
create an object
my $LoaderObject = $Kernel::OM->Get('Kernel::System::Loader');
=cut
sub new {
my ( $Type, %Param ) = @_;
# allocate new hash for object
my $Self = {};
bless( $Self, $Type );
$Self->{CacheType} = 'Loader';
$Self->{CacheTTL} = 60 * 60 * 24 * 20;
return $Self;
}
=head2 MinifyFiles()
takes a list of files and returns a filename in the target directory
which holds the minified and concatenated content of the files.
Uses caching internally.
my $TargetFilename = $LoaderObject->MinifyFiles(
List => [ # optional, minify list of files
$Filename,
$Filename2,
],
Checksum => '...' # optional, pass a checksum for the minified file
Content => '...' # optional, pass direct (already minified) content instead of a file list
Type => 'CSS', # CSS | JavaScript
TargetDirectory => $TargetDirectory,
TargetFilenamePrefix => 'CommonCSS', # optional, prefix for the target filename
);
=cut
sub MinifyFiles {
my ( $Self, %Param ) = @_;
# check needed params
my $List = $Param{List};
my $Content = $Param{Content};
if ( !$Content && ( ref $List ne 'ARRAY' || !@{$List} ) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => 'Need List or Content!',
);
return;
}
my $TargetDirectory = $Param{TargetDirectory};
if ( !-e $TargetDirectory ) {
if ( !mkdir( $TargetDirectory, 0775 ) ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Can't create directory '$TargetDirectory': $!",
);
return;
}
}
if ( !$TargetDirectory || !-d $TargetDirectory ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need valid TargetDirectory, got '$TargetDirectory'!",
);
return;
}
my $TargetFilenamePrefix = $Param{TargetFilenamePrefix} ? "$Param{TargetFilenamePrefix}_" : '';
my %ValidTypeParams = (
CSS => 1,
JavaScript => 1,
);
if ( !$Param{Type} || !$ValidTypeParams{ $Param{Type} } ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need Type! Must be one of '" . join( ', ', keys %ValidTypeParams ) . "'."
);
return;
}
my $MainObject = $Kernel::OM->Get('Kernel::System::Main');
my $Filename;
if ( $Param{Checksum} ) {
$Filename = $TargetFilenamePrefix . $Param{Checksum};
}
else {
my $FileString;
if ( $Param{List} ) {
LOCATION:
for my $Location ( @{$List} ) {
if ( !-e $Location ) {
next LOCATION;
}
my $FileMTime = $MainObject->FileGetMTime(
Location => $Location
);
# For the caching, use both filename and mtime to make sure that
# caches are correctly regenerated on changes.
$FileString .= "$Location:$FileMTime:";
}
}
$Filename = $TargetFilenamePrefix . $MainObject->MD5sum(
String => \$FileString,
);
}
if ( $Param{Type} eq 'CSS' ) {
$Filename .= '.css';
}
elsif ( $Param{Type} eq 'JavaScript' ) {
$Filename .= '.js';
}
if ( !-r "$TargetDirectory/$Filename" ) {
# no cache available, so loop through all files, get minified version and concatenate
LOCATION: for my $Location ( @{$List} ) {
next LOCATION if ( !-r $Location );
# cut out the system specific parts for the comments (for easier testing)
# for now, only keep filename
my $Label = $Location;
$Label =~ s{^.*/}{}smx;
if ( $Param{Type} eq 'CSS' ) {
eval {
$Content .= $Self->GetMinifiedFile(
Location => $Location,
Type => $Param{Type},
);
};
if ($@) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Error during file minification: $@",
);
}
$Content .= "\n";
}
elsif ( $Param{Type} eq 'JavaScript' ) {
eval {
$Content .= $Self->GetMinifiedFile(
Location => $Location,
Type => $Param{Type},
);
};
if ($@) {
my $JSError = "Error during minification of file $Location: $@";
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => $JSError,
);
$JSError =~ s/'/\\'/gsmx;
$JSError =~ s/\r?\n/ /gsmx;
$Content .= "alert('$JSError');";
}
$Content .= "\n";
}
}
my $FileLocation = $MainObject->FileWrite(
Directory => $TargetDirectory,
Filename => $Filename,
Content => \$Content,
);
}
return $Filename;
}
=head2 GetMinifiedFile()
returns the minified contents of a given CSS or JavaScript file.
Uses caching internally.
my $MinifiedCSS = $LoaderObject->GetMinifiedFile(
Location => $Filename,
Type => 'CSS', # CSS | JavaScript
);
Warning: this function may cause a die() if there are errors in the file,
protect against that with eval().
=cut
sub GetMinifiedFile {
my ( $Self, %Param ) = @_;
# check needed params
my $Location = $Param{Location};
if ( !$Location ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => 'Need Location!',
);
return;
}
my %ValidTypeParams = (
CSS => 1,
JavaScript => 1,
);
if ( !$Param{Type} || !$ValidTypeParams{ $Param{Type} } ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Need Type! Must be one of '" . join( ', ', keys %ValidTypeParams ) . "'."
);
return;
}
my $MainObject = $Kernel::OM->Get('Kernel::System::Main');
my $FileMTime = $MainObject->FileGetMTime(
Location => $Location,
);
# For the caching, use both filename and mtime to make sure that
# caches are correctly regenerated on changes.
my $CacheKey = "$Location:$FileMTime";
# check if a cached version exists
my $CacheContent = $Kernel::OM->Get('Kernel::System::Cache')->Get(
Type => $Self->{CacheType},
Key => $CacheKey,
);
if ( ref $CacheContent eq 'SCALAR' ) {
return ${$CacheContent};
}
# no cache available, read and minify file
my $FileContents = $MainObject->FileRead(
Location => $Location,
# It would be more correct to use UTF8 mode, but then the JavaScript::Minifier
# will cause timeouts due to extreme slowness on some UT servers. Disable for now.
# Unicode in the files still works correctly.
#Mode => 'utf8',
);
if ( ref $FileContents ne 'SCALAR' ) {
return;
}
my $Result;
if ( $Param{Type} eq 'CSS' ) {
$Result = $Self->MinifyCSS( Code => $$FileContents );
}
elsif ( $Param{Type} eq 'JavaScript' ) {
$Result = $Self->MinifyJavaScript( Code => $$FileContents );
}
# and put it in the cache
$Kernel::OM->Get('Kernel::System::Cache')->Set(
Type => $Self->{CacheType},
TTL => $Self->{CacheTTL},
Key => $CacheKey,
Value => \$Result,
);
return $Result;
}
=head2 MinifyCSS()
returns a minified version of the given CSS Code
my $MinifiedCSS = $LoaderObject->MinifyCSS( Code => $CSS );
Warning: this function may cause a die() if there are errors in the file,
protect against that with eval().
=cut
sub MinifyCSS {
my ( $Self, %Param ) = @_;
# check needed params
if ( !$Param{Code} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => 'Need Code Param!',
);
return;
}
my $Result = CSS::Minifier::minify( input => $Param{Code} );
# a few optimizations can be made for the minified CSS that CSS::Minifier doesn't yet do
# remove remaining linebreaks
$Result =~ s/\r?\n\s*//smxg;
# remove superfluous whitespace after commas in chained selectors
$Result =~ s/,\s*/,/smxg;
return $Result;
}
=head2 MinifyJavaScript()
returns a minified version of the given JavaScript Code.
my $MinifiedJS = $LoaderObject->MinifyJavaScript( Code => $JavaScript );
Warning: this function may cause a die() if there are errors in the file,
protect against that with eval().
This function internally uses the CPAN module JavaScript::Minifier.
As of version 1.05 of that module, there is an issue with regular expressions:
This will cause a die:
function test(s) { return /\d{1,2}/.test(s); }
A workaround is to enclose the regular expression in parentheses:
function test(s) { return (/\d{1,2}/).test(s); }
=cut
sub MinifyJavaScript {
my ( $Self, %Param ) = @_;
# check needed params
if ( !$Param{Code} ) {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => 'Need Code Param!',
);
return;
}
return JavaScript::Minifier::minify( input => $Param{Code} );
}
=head2 CacheGenerate()
generates the loader cache files for all frontend modules.
my %GeneratedFiles = $LoaderObject->CacheGenerate();
=cut
sub CacheGenerate {
my ( $Self, %Param ) = @_;
my @Result;
my $ConfigObject = $Kernel::OM->Get('Kernel::Config');
## nofilter(TidyAll::Plugin::OTRS::Perl::LayoutObject)
my $LayoutObject = $Kernel::OM->Get('Kernel::Output::HTML::Layout');
my %AgentFrontends = %{ $ConfigObject->Get('Frontend::Module') // {} };
for my $FrontendModule ( sort { $a cmp $b } keys %AgentFrontends ) {
$LayoutObject->{Action} = $FrontendModule;
$LayoutObject->LoaderCreateAgentCSSCalls();
$LayoutObject->LoaderCreateAgentJSCalls();
push @Result, $FrontendModule;
}
my %CustomerFrontends = (
%{ $ConfigObject->Get('CustomerFrontend::Module') // {} },
%{ $ConfigObject->Get('PublicFrontend::Module') // {} },
);
for my $FrontendModule ( sort { $a cmp $b } keys %CustomerFrontends ) {
$LayoutObject->{Action} = $FrontendModule;
$LayoutObject->LoaderCreateCustomerCSSCalls();
$LayoutObject->LoaderCreateCustomerJSCalls();
push @Result, $FrontendModule;
}
# Now generate JavaScript translation content
for my $UserLanguage ( sort keys %{ $ConfigObject->Get('DefaultUsedLanguages') // {} } ) {
$Kernel::OM->ObjectsDiscard( Objects => ['Kernel::Language'] );
my $LocalLayoutObject = Kernel::Output::HTML::Layout->new(
Lang => $UserLanguage,
);
$LocalLayoutObject->LoaderCreateJavaScriptTranslationData();
}
# generate JS template cache
$LayoutObject->LoaderCreateJavaScriptTemplateData();
return @Result;
}
=head2 CacheDelete()
deletes all the loader cache files.
Returns a list of deleted files.
my @DeletedFiles = $LoaderObject->CacheDelete();
=cut
sub CacheDelete {
my ( $Self, %Param ) = @_;
my @Result;
my $Home = $Kernel::OM->Get('Kernel::Config')->Get('Home');
my $JSCacheFolder = "$Home/var/httpd/htdocs/js/js-cache";
my @SkinTypeDirectories = (
"$Home/var/httpd/htdocs/skins/Agent",
"$Home/var/httpd/htdocs/skins/Customer",
);
my @CacheFoldersList = ($JSCacheFolder);
my $MainObject = $Kernel::OM->Get('Kernel::System::Main');
# Looking for all skin folders that may contain a cache folder
for my $Folder (@SkinTypeDirectories) {
my @List = $MainObject->DirectoryRead(
Directory => $Folder,
Filter => '*',
);
FOLDER:
for my $Folder (@List) {
next FOLDER if ( !-d $Folder );
my @CacheFolder = $MainObject->DirectoryRead(
Directory => $Folder,
Filter => 'css-cache',
);
if ( @CacheFolder && -d $CacheFolder[0] ) {
push @CacheFoldersList, $CacheFolder[0];
}
}
}
# now go through the cache folders and delete all .js and .css files
my @FileTypes = ( "*.js", "*.css" );
my $TotalCounter = 0;
FOLDERTODELETE:
for my $FolderToDelete (@CacheFoldersList) {
next FOLDERTODELETE if ( !-d $FolderToDelete );
my @FilesList = $MainObject->DirectoryRead(
Directory => $FolderToDelete,
Filter => \@FileTypes,
);
for my $File (@FilesList) {
if ( $MainObject->FileDelete( Location => $File ) ) {
push @Result, $File;
}
else {
$Kernel::OM->Get('Kernel::System::Log')->Log(
Priority => 'error',
Message => "Can't remove: $File"
);
}
}
}
# finally, also clean up the internal perl cache files
$Kernel::OM->Get('Kernel::System::Cache')->CleanUp(
Type => $Self->{CacheType},
);
return @Result;
}
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
|