2020-04-24 02:48:39 +02:00
|
|
|
|
// ***************************************************************************
|
|
|
|
|
//
|
|
|
|
|
// Delphi MVC Framework
|
|
|
|
|
//
|
|
|
|
|
// Copyright (c) 2010-2020 Daniele Teti and the DMVCFramework Team
|
|
|
|
|
//
|
|
|
|
|
// https://github.com/danieleteti/delphimvcframework
|
|
|
|
|
//
|
|
|
|
|
// Collaborators on this file:
|
|
|
|
|
// Jo<4A>o Ant<6E>nio Duarte (https://github.com/joaoduarte19)
|
|
|
|
|
//
|
|
|
|
|
// ***************************************************************************
|
|
|
|
|
//
|
|
|
|
|
// 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.
|
|
|
|
|
//
|
|
|
|
|
// *************************************************************************** }
|
|
|
|
|
|
|
|
|
|
unit MVCFramework.Middleware.StaticFiles;
|
|
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
MVCFramework,
|
2020-04-25 01:48:07 +02:00
|
|
|
|
MVCFramework.Commons,
|
2020-04-24 02:48:39 +02:00
|
|
|
|
System.Generics.Collections;
|
|
|
|
|
|
|
|
|
|
type
|
2020-04-25 01:48:07 +02:00
|
|
|
|
TMVCStaticFilesDefaults = class sealed
|
|
|
|
|
public const
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// URL segment that represents the path to static files
|
|
|
|
|
/// </summary>
|
|
|
|
|
STATIC_FILES_PATH = '/';
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Physical path of the root folder that contains the static files
|
|
|
|
|
/// </summary>
|
|
|
|
|
DOCUMENT_ROOT = '.\www';
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Default static file
|
|
|
|
|
/// </summary>
|
|
|
|
|
INDEX_DOCUMENT = 'index.html';
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Charset of static files
|
|
|
|
|
/// </summary>
|
|
|
|
|
STATIC_FILES_CONTENT_CHARSET = TMVCConstants.DEFAULT_CONTENT_CHARSET;
|
|
|
|
|
end;
|
|
|
|
|
|
2020-04-24 02:48:39 +02:00
|
|
|
|
TMVCStaticFilesMiddleware = class(TInterfacedObject, IMVCMiddleware)
|
|
|
|
|
private
|
|
|
|
|
fMediaTypes: TDictionary<string, string>;
|
2020-04-25 01:48:07 +02:00
|
|
|
|
fStaticFilesPath: string;
|
|
|
|
|
fDocumentRoot: string;
|
|
|
|
|
fIndexDocument: string;
|
|
|
|
|
fStaticFilesCharset: string;
|
2020-04-24 02:48:39 +02:00
|
|
|
|
procedure AddMediaTypes;
|
2020-04-25 01:48:07 +02:00
|
|
|
|
function IsStaticFileRequest(const APathInfo: string; out AFileName: string): Boolean;
|
2020-04-24 02:48:39 +02:00
|
|
|
|
function SendStaticFileIfPresent(const AContext: TWebContext; const AFileName: string): Boolean;
|
|
|
|
|
public
|
2020-04-25 01:48:07 +02:00
|
|
|
|
constructor Create(
|
|
|
|
|
const AStaticFilesPath: string = TMVCStaticFilesDefaults.STATIC_FILES_PATH;
|
|
|
|
|
const ADocumentRoot: string = TMVCStaticFilesDefaults.DOCUMENT_ROOT;
|
|
|
|
|
const AIndexDocument: string = TMVCStaticFilesDefaults.INDEX_DOCUMENT;
|
|
|
|
|
const AStaticFilesCharset: string = TMVCStaticFilesDefaults.STATIC_FILES_CONTENT_CHARSET);
|
2020-04-24 02:48:39 +02:00
|
|
|
|
destructor Destroy; override;
|
|
|
|
|
|
|
|
|
|
procedure OnBeforeRouting(AContext: TWebContext; var AHandled: Boolean);
|
|
|
|
|
procedure OnBeforeControllerAction(AContext: TWebContext; const AControllerQualifiedClassName: string;
|
|
|
|
|
const AActionName: string; var AHandled: Boolean);
|
2020-04-28 01:36:45 +02:00
|
|
|
|
|
2020-04-24 02:48:39 +02:00
|
|
|
|
procedure OnAfterControllerAction(AContext: TWebContext; const AActionName: string; const AHandled: Boolean);
|
|
|
|
|
|
2020-04-28 01:36:45 +02:00
|
|
|
|
procedure OnAfterRouting(AContext: TWebContext; const AHandled: Boolean);
|
2020-04-24 02:48:39 +02:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
System.SysUtils,
|
2020-04-25 01:48:07 +02:00
|
|
|
|
System.IOUtils;
|
2020-04-24 02:48:39 +02:00
|
|
|
|
|
|
|
|
|
{ TMVCStaticFilesMiddleware }
|
|
|
|
|
|
|
|
|
|
procedure TMVCStaticFilesMiddleware.AddMediaTypes;
|
|
|
|
|
begin
|
|
|
|
|
fMediaTypes.Add('.html', TMVCMediaType.TEXT_HTML);
|
|
|
|
|
fMediaTypes.Add('.htm', TMVCMediaType.TEXT_HTML);
|
|
|
|
|
fMediaTypes.Add('.txt', TMVCMediaType.TEXT_PLAIN);
|
2020-04-26 22:56:20 +02:00
|
|
|
|
fMediaTypes.Add('.text', TMVCMediaType.TEXT_PLAIN);
|
|
|
|
|
fMediaTypes.Add('.csv', TMVCMediaType.TEXT_CSV);
|
2020-04-24 02:48:39 +02:00
|
|
|
|
fMediaTypes.Add('.css', TMVCMediaType.TEXT_CSS);
|
|
|
|
|
fMediaTypes.Add('.js', TMVCMediaType.TEXT_JAVASCRIPT);
|
|
|
|
|
fMediaTypes.Add('.jpg', TMVCMediaType.IMAGE_JPEG);
|
|
|
|
|
fMediaTypes.Add('.jpeg', TMVCMediaType.IMAGE_JPEG);
|
2020-04-26 22:56:20 +02:00
|
|
|
|
fMediaTypes.Add('.jpe', TMVCMediaType.IMAGE_JPEG);
|
2020-04-24 02:48:39 +02:00
|
|
|
|
fMediaTypes.Add('.png', TMVCMediaType.IMAGE_PNG);
|
|
|
|
|
fMediaTypes.Add('.ico', TMVCMediaType.IMAGE_X_ICON);
|
|
|
|
|
fMediaTypes.Add('.appcache', TMVCMediaType.TEXT_CACHEMANIFEST);
|
2020-04-26 22:56:20 +02:00
|
|
|
|
fMediaTypes.Add('.svg', TMVCMediaType.IMAGE_SVG_XML);
|
|
|
|
|
fMediaTypes.Add('.svgz', TMVCMediaType.IMAGE_SVG_XML);
|
|
|
|
|
fMediaTypes.Add('.gif',TMVCMediaType.IMAGE_GIF);
|
2020-04-24 02:48:39 +02:00
|
|
|
|
end;
|
|
|
|
|
|
2020-04-25 01:48:07 +02:00
|
|
|
|
constructor TMVCStaticFilesMiddleware.Create(const AStaticFilesPath, ADocumentRoot, AIndexDocument,
|
|
|
|
|
AStaticFilesCharset: string);
|
2020-04-24 02:48:39 +02:00
|
|
|
|
begin
|
|
|
|
|
inherited Create;
|
2020-04-25 01:48:07 +02:00
|
|
|
|
|
|
|
|
|
fStaticFilesPath := AStaticFilesPath;
|
|
|
|
|
fDocumentRoot := ADocumentRoot;
|
|
|
|
|
fIndexDocument := AIndexDocument;
|
2020-04-26 22:56:20 +02:00
|
|
|
|
fStaticFilesCharset := AStaticFilesCharset;
|
2020-04-24 02:48:39 +02:00
|
|
|
|
|
|
|
|
|
fMediaTypes := TDictionary<string, string>.Create;
|
|
|
|
|
AddMediaTypes;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
destructor TMVCStaticFilesMiddleware.Destroy;
|
|
|
|
|
begin
|
|
|
|
|
fMediaTypes.Free;
|
|
|
|
|
|
|
|
|
|
inherited Destroy;
|
|
|
|
|
end;
|
|
|
|
|
|
2020-04-25 01:48:07 +02:00
|
|
|
|
function TMVCStaticFilesMiddleware.IsStaticFileRequest(const APathInfo: string; out AFileName: string): Boolean;
|
2020-04-24 02:48:39 +02:00
|
|
|
|
begin
|
2020-04-25 01:48:07 +02:00
|
|
|
|
Result := (not fDocumentRoot.IsEmpty) and (TMVCStaticContents.IsStaticFile(fDocumentRoot, APathInfo, AFileName));
|
2020-04-24 02:48:39 +02:00
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TMVCStaticFilesMiddleware.OnAfterControllerAction(AContext: TWebContext; const AActionName: string;
|
|
|
|
|
const AHandled: Boolean);
|
|
|
|
|
begin
|
|
|
|
|
// do nothing
|
|
|
|
|
end;
|
|
|
|
|
|
2020-04-28 01:36:45 +02:00
|
|
|
|
procedure TMVCStaticFilesMiddleware.OnAfterRouting(AContext: TWebContext; const AHandled: Boolean);
|
|
|
|
|
begin
|
|
|
|
|
// do nothing
|
|
|
|
|
end;
|
|
|
|
|
|
2020-04-24 02:48:39 +02:00
|
|
|
|
procedure TMVCStaticFilesMiddleware.OnBeforeControllerAction(AContext: TWebContext; const AControllerQualifiedClassName,
|
|
|
|
|
AActionName: string; var AHandled: Boolean);
|
|
|
|
|
begin
|
|
|
|
|
// do nothing
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
procedure TMVCStaticFilesMiddleware.OnBeforeRouting(AContext: TWebContext; var AHandled: Boolean);
|
|
|
|
|
var
|
2020-04-25 01:48:07 +02:00
|
|
|
|
lPathInfo: string;
|
2020-04-24 02:48:39 +02:00
|
|
|
|
lFileName: string;
|
|
|
|
|
begin
|
2020-04-25 01:48:07 +02:00
|
|
|
|
lPathInfo := AContext.Request.PathInfo;
|
|
|
|
|
|
|
|
|
|
if not lPathInfo.StartsWith(fStaticFilesPath, True) then
|
|
|
|
|
begin
|
|
|
|
|
AHandled := False;
|
|
|
|
|
Exit;
|
|
|
|
|
end;
|
|
|
|
|
|
2020-04-29 17:53:29 +02:00
|
|
|
|
if not ((fStaticFilesPath = '/') or (fStaticFilesPath = '')) then
|
2020-04-25 01:48:07 +02:00
|
|
|
|
begin
|
|
|
|
|
lPathInfo := lPathInfo.Remove(0, fStaticFilesPath.Length);
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
if not fIndexDocument.IsEmpty then
|
2020-04-24 02:48:39 +02:00
|
|
|
|
begin
|
2020-04-25 01:48:07 +02:00
|
|
|
|
if (lPathInfo = '/') or (lPathInfo = '') then
|
2020-04-24 02:48:39 +02:00
|
|
|
|
begin
|
2020-04-25 01:48:07 +02:00
|
|
|
|
lFileName := TPath.GetFullPath(TPath.Combine(fDocumentRoot, fIndexDocument));
|
2020-04-24 02:48:39 +02:00
|
|
|
|
AHandled := SendStaticFileIfPresent(AContext, lFileName);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
2020-04-25 01:48:07 +02:00
|
|
|
|
if (not AHandled) and (IsStaticFileRequest(lPathInfo, lFileName)) then
|
2020-04-24 02:48:39 +02:00
|
|
|
|
begin
|
|
|
|
|
AHandled := SendStaticFileIfPresent(AContext, lFileName);
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
function TMVCStaticFilesMiddleware.SendStaticFileIfPresent(const AContext: TWebContext;
|
|
|
|
|
const AFileName: string): Boolean;
|
|
|
|
|
var
|
|
|
|
|
lContentType: string;
|
|
|
|
|
begin
|
|
|
|
|
Result := False;
|
|
|
|
|
if TFile.Exists(AFileName) then
|
|
|
|
|
begin
|
|
|
|
|
if FMediaTypes.TryGetValue(LowerCase(ExtractFileExt(AFileName)), lContentType) then
|
|
|
|
|
begin
|
2020-04-25 01:48:07 +02:00
|
|
|
|
lContentType := BuildContentType(lContentType, fStaticFilesCharset);
|
2020-04-24 02:48:39 +02:00
|
|
|
|
end
|
|
|
|
|
else
|
|
|
|
|
begin
|
|
|
|
|
lContentType := BuildContentType(TMVCMediaType.APPLICATION_OCTETSTREAM, '');
|
|
|
|
|
end;
|
|
|
|
|
TMVCStaticContents.SendFile(AFileName, lContentType, AContext);
|
|
|
|
|
Result := True;
|
|
|
|
|
end;
|
|
|
|
|
end;
|
|
|
|
|
|
|
|
|
|
end.
|