delphimvcframework/sources/MVCFramework.Middleware.CORS.pas

104 lines
3.3 KiB
ObjectPascal
Raw Normal View History

// ***************************************************************************
//
// Delphi MVC Framework
//
// Copyright (c) 2010-2017 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.
//
// *************************************************************************** }
2015-12-22 12:38:17 +01:00
2014-10-03 11:40:57 +02:00
unit MVCFramework.Middleware.CORS;
{$I dmvcframework.inc}
2014-10-03 11:40:57 +02:00
interface
uses
2017-03-20 19:08:01 +01:00
System.StrUtils,
MVCFramework,
MVCFramework.Commons;
2014-10-03 11:40:57 +02:00
type
2017-03-20 19:08:01 +01:00
TMVCCORSMiddleware = class(TInterfacedObject, IMVCMiddleware)
private
FAllowedOriginURL: string;
FAllowsCredentials: string;
2017-03-20 19:08:01 +01:00
protected
procedure OnBeforeRouting(
AContext: TWebContext;
var AHandled: Boolean
);
2017-03-20 19:08:01 +01:00
procedure OnBeforeControllerAction(
AContext: TWebContext;
const AControllerQualifiedClassName: string;
const AActionName: string;
var AHandled: Boolean
);
procedure OnAfterControllerAction(
AContext: TWebContext;
const AActionName: string;
const AHandled: Boolean
);
public
constructor Create(const AAllowedOriginURL: string = '*'; const AAllowsCredentials: Boolean = True); virtual;
end;
2014-10-03 11:40:57 +02:00
TCORSMiddleware = TMVCCORSMiddleware;
2014-10-03 11:40:57 +02:00
implementation
{ TMVCCORSMiddleware }
2014-10-03 11:40:57 +02:00
constructor TMVCCORSMiddleware.Create(const AAllowedOriginURL: string; const AAllowsCredentials: Boolean);
begin
inherited Create;
FAllowedOriginURL := AAllowedOriginURL;
FAllowsCredentials := IfThen(AAllowsCredentials, 'true', 'false');
end;
procedure TMVCCORSMiddleware.OnAfterControllerAction(AContext: TWebContext;
const AActionName: string; const AHandled: Boolean);
begin
// Implement as needed
end;
procedure TMVCCORSMiddleware.OnBeforeControllerAction(
AContext: TWebContext; const AControllerQualifiedClassName,
AActionName: string; var AHandled: Boolean);
2014-10-03 11:40:57 +02:00
begin
// Implement as needed
2014-10-03 11:40:57 +02:00
end;
procedure TMVCCORSMiddleware.OnBeforeRouting(AContext: TWebContext; var AHandled: Boolean);
2014-10-03 11:40:57 +02:00
begin
2017-03-20 19:08:01 +01:00
AContext.Response.RawWebResponse.CustomHeaders.Values['Access-Control-Allow-Origin'] := FAllowedOriginURL;
AContext.Response.RawWebResponse.CustomHeaders.Values['Access-Control-Allow-Methods'] := 'POST, GET, OPTIONS, PUT, DELETE';
AContext.Response.RawWebResponse.CustomHeaders.Values['Access-Control-Allow-Headers'] := 'Content-Type, Accept, jwtusername, jwtpassword';
AContext.Response.RawWebResponse.CustomHeaders.Values['Access-Control-Allow-Credentials'] := FAllowsCredentials;
if (AContext.Request.HTTPMethod = httpOPTIONS) then
begin
AContext.Response.StatusCode := HTTP_STATUS.OK;
2017-03-20 19:08:01 +01:00
AHandled := True;
end;
2014-10-03 11:40:57 +02:00
end;
end.