delphimvcframework/sources/MVCFramework.Middleware.Compression.pas

229 lines
7.1 KiB
ObjectPascal
Raw Normal View History

// ***************************************************************************
//
// Delphi MVC Framework
//
2024-01-02 17:04:27 +01:00
// Copyright (c) 2010-2024 Daniele Teti and the DMVCFramework Team
//
// https://github.com/danieleteti/delphimvcframework
//
// ***************************************************************************
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
//
// *************************************************************************** }
2017-10-09 10:41:38 +02:00
unit MVCFramework.Middleware.Compression;
{$I dmvcframework.inc}
2017-10-09 10:41:38 +02:00
interface
uses
MVCFramework,
MVCFramework.Logger;
2017-10-09 10:41:38 +02:00
type
TMVCCompressionMiddleware = class(TInterfacedObject, IMVCMiddleware)
private
fCompressionThreshold: Integer;
2017-10-09 10:41:38 +02:00
protected
procedure OnAfterControllerAction(
AContext: TWebContext;
const AControllerQualifiedClassName: string; const AActionName: string;
const AHandled: Boolean);
procedure OnBeforeRouting(AContext: TWebContext; var AHandled: Boolean);
procedure OnBeforeControllerAction(AContext: TWebContext;
const AControllerQualifiedClassName: string; const AActionNAme: string;
var AHandled: Boolean);
procedure OnAfterRouting(AContext: TWebContext; const AHandled: Boolean);
public
constructor Create(aCompressionThreshold: Integer = 1024); virtual;
2017-10-09 10:41:38 +02:00
end;
implementation
uses
System.SysUtils,
System.ZLib,
System.Classes,
MVCFramework.Commons;
2017-10-09 10:41:38 +02:00
{ TMVCSalutationMiddleware }
constructor TMVCCompressionMiddleware.Create(aCompressionThreshold: Integer);
begin
inherited Create;
fCompressionThreshold := aCompressionThreshold;
end;
procedure TMVCCompressionMiddleware.OnAfterControllerAction(
AContext: TWebContext;
const AControllerQualifiedClassName: string; const AActionName: string;
const AHandled: Boolean);
begin
// do nothing
end;
procedure TMVCCompressionMiddleware.OnAfterRouting(AContext: TWebContext;
const AHandled: Boolean);
2017-10-09 10:41:38 +02:00
var
lMemStream: TMemoryStream;
lContentStream: TStream;
2017-10-16 22:57:27 +02:00
lAcceptEncoding: string;
lEncodings: TArray<string>;
lItem: string;
lRespCompressionType: TMVCCompressionType;
lTmpItem: string;
{.$IF not Defined(ALEXANDRIAORBETTER)}
lZStream: TZCompressionStream;
{.$ENDIF}
2017-10-09 10:41:38 +02:00
begin
if IsLibrary then
begin
Exit;
end;
lContentStream := AContext.Response.RawWebResponse.ContentStream;
if (lContentStream = nil) or (lContentStream.Size <= fCompressionThreshold)
then
Exit;
lAcceptEncoding := AContext.Request.Headers['Accept-Encoding'];
2017-10-16 22:57:27 +02:00
if lAcceptEncoding.IsEmpty then
begin
2017-10-16 22:57:27 +02:00
Exit;
end;
lAcceptEncoding := lAcceptEncoding.Trim.ToLower;
2017-10-16 22:57:27 +02:00
lRespCompressionType := TMVCCompressionType.ctNone;
2017-10-16 22:57:27 +02:00
lEncodings := lAcceptEncoding.Split([',']);
for lItem in lEncodings do
begin
lTmpItem := lItem.Trim;
if lTmpItem = 'gzip' then
2017-10-16 22:57:27 +02:00
begin
{.$IF Defined(ALEXANDRIAORBETTER)}
{
There is a bug in 11 Alexandria with TZCompressionStream, so the gzip compression
is not available until the fix.
The issue has been created on https://quality.embarcadero.com/browse/RSP-35516
}
{.$ELSE}
lRespCompressionType := TMVCCompressionType.ctGZIP;
break;
{.$ENDIF}
end
else if lTmpItem = 'deflate' then
begin
lRespCompressionType := TMVCCompressionType.ctDeflate;
break;
2017-10-16 22:57:27 +02:00
end;
end;
if lRespCompressionType = TMVCCompressionType.ctNone then
2017-10-09 10:41:38 +02:00
Exit;
{ When it is a TFileStream copy it to a TMemoryStream, as TFileStream is read only }
// if lContentStream is TFileStream then
// begin
2017-10-09 10:41:38 +02:00
lMemStream := TMemoryStream.Create;
try
{.$IF Defined(ALEXANDRIAORBETTER)}
//ZCompressStream(lContentStream, lMemStream);
// use it only for deflate, ZCompressStream (Delphi 11.0) cannot
// create gzip compliant streams
{.$ELSE}
lZStream := TZCompressionStream.Create(lMemStream,
TZCompressionLevel.zcMax, MVC_COMPRESSION_ZLIB_WINDOW_BITS
[lRespCompressionType]);
try
lContentStream.Position := 0;
// WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING!
// WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING!
// WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING!
// There is a bug in 11 Alexandria with TZCompressionStream, this bug
// raises an exception here and the debugger catches it, but it its "normal" behavior.
// The gzip stream is correctly created. Please, vote for its resolution.
// https://quality.embarcadero.com/browse/RSP-35516
// WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING!
// WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING!
// WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING! WARNING!
lZStream.CopyFrom(lContentStream, 0);
finally
lZStream.Free;
end;
{.$ENDIF}
except
lMemStream.Free;
raise;
end;
lMemStream.Position := 0;
AContext.Response.RawWebResponse.ContentStream := lMemStream;
{$IF Defined(SeattleOrBetter)}
AContext.Response.RawWebResponse.ContentEncoding :=
MVC_COMPRESSION_TYPE_AS_STRING[lRespCompressionType];
{$ELSE}
AContext.Response.RawWebResponse.ContentEncoding :=
AnsiString(MVC_COMPRESSION_TYPE_AS_STRING[lRespCompressionType]);
{$ENDIF}
// end;
//
// lContentStream.Position := 0;
// lMemStream := TMemoryStream.Create;
// try
// ZCompressStream(lContentStream, lMemStream, TZCompressionLevel.zcDefault);
// except
// lMemStream.Free;
// raise;
// end;
//
// { TODO -oDanieleT -cGeneral : Use directly lContentStreamHelper? }
// // lZStream := TZCompressionStream.Create(lMemStream, TZCompressionLevel.zcMax,
// // MVC_COMPRESSION_ZLIB_WINDOW_BITS[lRespCompressionType]);
// // try
// // lZStream.CopyFrom(lContentStreamHelper, 0);
// // finally
// // lZStream.Free;
// // end;
// lMemStream.Position := 0;
//
// // AContext.Response.Content := '';
// // lContentStreamHelper.Size := 0;
// // lContentStreamHelper.CopyFrom(lMemStream, 0);
// AContext.Response.RawWebResponse.ContentStream := lMemStream;
// {$IF Defined(SeattleOrBetter)}
// AContext.Response.RawWebResponse.ContentEncoding :=
// MVC_COMPRESSION_TYPE_AS_STRING[lRespCompressionType];
// {$ELSE}
// AContext.Response.RawWebResponse.ContentEncoding :=
// AnsiString(MVC_COMPRESSION_TYPE_AS_STRING[lRespCompressionType]);
// {$ENDIF}
// // finally
// // lMemStream.Free;
// // end;
end;
procedure TMVCCompressionMiddleware.OnBeforeControllerAction
(AContext: TWebContext; const AControllerQualifiedClassName,
AActionNAme: string; var AHandled: Boolean);
2017-10-09 10:41:38 +02:00
begin
// do nothing
end;
procedure TMVCCompressionMiddleware.OnBeforeRouting(AContext: TWebContext;
var AHandled: Boolean);
2017-10-09 10:41:38 +02:00
begin
// do nothing
end;
end.