delphimvcframework/sources/MVCFramework.Middleware.CORS.pas
Daniele Teti 160bb8d51e ADDED
AllowedOriginURL: string = '*'
AllowsCredentials: Boolean = true

In CORS Middleware
2016-10-12 13:11:19 +02:00

96 lines
3.0 KiB
ObjectPascal

// ***************************************************************************
//
// Delphi MVC Framework
//
// Copyright (c) 2010-2016 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.
//
// *************************************************************************** }
unit MVCFramework.Middleware.CORS;
interface
uses
MVCFramework;
type
TCORSMiddleware = class(TInterfacedObject, IMVCMiddleware)
private
FAllowedOriginURL: string;
FAllowsCredentials: string;
public
constructor Create(const AllowedOriginURL: string = '*';
const AllowsCredentials: Boolean = true); virtual;
procedure OnBeforeRouting(Context: TWebContext; var Handled: Boolean);
procedure OnAfterControllerAction(Context: TWebContext;
const AActionNAme: string; const Handled: Boolean);
procedure OnBeforeControllerAction(Context: TWebContext;
const AControllerQualifiedClassName: string; const AActionNAme: string;
var Handled: Boolean);
end;
implementation
uses
System.StrUtils;
{ TCORSMiddleware }
constructor TCORSMiddleware.Create(const AllowedOriginURL: string;
const AllowsCredentials: Boolean);
begin
inherited Create;
FAllowedOriginURL := AllowedOriginURL;
FAllowsCredentials := ifthen(AllowsCredentials, 'true', 'false');
end;
procedure TCORSMiddleware.OnAfterControllerAction(Context: TWebContext;
const AActionNAme: string; const Handled: Boolean);
begin
end;
procedure TCORSMiddleware.OnBeforeControllerAction(Context: TWebContext;
const AControllerQualifiedClassName, AActionNAme: string;
var Handled: Boolean);
begin
// do nothing
end;
procedure TCORSMiddleware.OnBeforeRouting(Context: TWebContext;
var Handled: Boolean);
begin
Context.Response.RawWebResponse.CustomHeaders.Values
['Access-Control-Allow-Origin'] := FAllowedOriginURL;
Context.Response.RawWebResponse.CustomHeaders.Values
['Access-Control-Allow-Methods'] :=
'POST, GET, OPTIONS, PUT, DELETE';
Context.Response.RawWebResponse.CustomHeaders.Values
['Access-Control-Allow-Headers'] := 'Content-Type, Accept';
Context.Response.RawWebResponse.CustomHeaders.Values
['Access-Control-Allow-Credentials'] := FAllowsCredentials;
if Context.Request.HTTPMethod = httpOPTIONS then
begin
Context.Response.StatusCode := 200;
Handled := true;
end;
end;
end.