CEF4Delphi/source/uCEFCookieVisitor.pas

156 lines
5.6 KiB
ObjectPascal
Raw Normal View History

2017-01-27 17:29:37 +01:00
// ************************************************************************
// ***************************** CEF4Delphi *******************************
// ************************************************************************
//
// CEF4Delphi is based on DCEF3 which uses CEF3 to embed a chromium-based
// browser in Delphi applications.
//
// The original license of DCEF3 still applies to CEF4Delphi.
//
// For more information about CEF4Delphi visit :
// https://www.briskbard.com/index.php?lang=en&pageid=cef
//
// Copyright <20> 2018 Salvador Diaz Fau. All rights reserved.
2017-01-27 17:29:37 +01:00
//
// ************************************************************************
// ************ vvvv Original license and comments below vvvv *************
// ************************************************************************
(*
* Delphi Chromium Embedded 3
*
* Usage allowed under the restrictions of the Lesser GNU General Public License
* or alternatively the restrictions of the Mozilla Public License 1.1
*
* Software distributed under the License is distributed on an "AS IS" basis,
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License for
* the specific language governing rights and limitations under the License.
*
* Unit owner : Henri Gourvest <hgourvest@gmail.com>
* Web site : http://www.progdigy.com
* Repository : http://code.google.com/p/delphichromiumembedded/
* Group : http://groups.google.com/group/delphichromiumembedded
*
* Embarcadero Technologies, Inc is not permitted to use or redistribute
* this source code without explicit permission.
*
*)
unit uCEFCookieVisitor;
{$IFDEF FPC}
{$MODE OBJFPC}{$H+}
{$ENDIF}
2017-01-27 17:29:37 +01:00
{$IFNDEF CPUX64}
{$ALIGN ON}
{$MINENUMSIZE 4}
{$ENDIF}
2017-02-05 20:56:46 +01:00
{$I cef.inc}
2017-01-27 17:29:37 +01:00
interface
uses
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
2017-01-27 17:29:37 +01:00
type
TCefCookieVisitorOwn = class(TCefBaseRefCountedOwn, ICefCookieVisitor)
2017-01-27 17:29:37 +01:00
protected
function visit(const name, value, domain, path: ustring; secure, httponly, hasExpires: Boolean; const creation, lastAccess, expires: TDateTime; count, total: Integer; out deleteCookie: Boolean): Boolean; virtual;
public
constructor Create; virtual;
end;
TCefFastCookieVisitor = class(TCefCookieVisitorOwn)
protected
FVisitor: TCefCookieVisitorProc;
function visit(const name, value, domain, path: ustring; secure, httponly, hasExpires: Boolean; const creation, lastAccess, expires: TDateTime; count, total: Integer; out deleteCookie: Boolean): Boolean; override;
public
constructor Create(const visitor: TCefCookieVisitorProc); reintroduce;
end;
implementation
uses
uCEFMiscFunctions, uCEFLibFunctions;
2018-03-29 20:02:04 +02:00
function cef_cookie_visitor_visit(self: PCefCookieVisitor;
const cookie: PCefCookie;
count, total: Integer;
deleteCookie: PInteger): Integer; stdcall;
2017-01-27 17:29:37 +01:00
var
2018-03-29 20:02:04 +02:00
delete : Boolean;
exp : TDateTime;
TempObject : TObject;
2017-01-27 17:29:37 +01:00
begin
2018-03-29 20:02:04 +02:00
delete := False;
Result := Ord(True);
TempObject := CefGetObject(self);
if (cookie^.has_expires <> 0) then
exp := CefTimeToDateTime(cookie^.expires)
2018-03-29 20:02:04 +02:00
else
2017-01-27 17:29:37 +01:00
exp := 0;
2018-03-29 20:02:04 +02:00
if (TempObject <> nil) and (TempObject is TCefCookieVisitorOwn) then
Result := Ord(TCefCookieVisitorOwn(TempObject).visit(CefString(@cookie^.name),
CefString(@cookie^.value),
CefString(@cookie^.domain),
CefString(@cookie^.path),
Boolean(cookie^.secure),
Boolean(cookie^.httponly),
Boolean(cookie^.has_expires),
CefTimeToDateTime(cookie^.creation),
CefTimeToDateTime(cookie^.last_access),
2018-03-29 20:02:04 +02:00
exp,
count,
total,
delete));
2017-01-27 17:29:37 +01:00
deleteCookie^ := Ord(delete);
end;
// TCefCookieVisitorOwn
constructor TCefCookieVisitorOwn.Create;
begin
inherited CreateData(SizeOf(TCefCookieVisitor));
2018-03-29 20:02:04 +02:00
PCefCookieVisitor(FData)^.visit := {$IFDEF FPC}@{$ENDIF}cef_cookie_visitor_visit;
2017-01-27 17:29:37 +01:00
end;
function TCefCookieVisitorOwn.visit(const name, value, domain, path: ustring;
2018-03-29 20:02:04 +02:00
secure, httponly, hasExpires: Boolean;
const creation, lastAccess, expires: TDateTime;
count, total: Integer;
out deleteCookie: Boolean): Boolean;
2017-01-27 17:29:37 +01:00
begin
Result := True;
end;
// TCefFastCookieVisitor
constructor TCefFastCookieVisitor.Create(const visitor: TCefCookieVisitorProc);
begin
inherited Create;
2018-03-29 20:02:04 +02:00
2017-01-27 17:29:37 +01:00
FVisitor := visitor;
end;
function TCefFastCookieVisitor.visit(const name, value, domain, path: ustring;
2018-03-29 20:02:04 +02:00
secure, httponly, hasExpires: Boolean;
const creation, lastAccess, expires: TDateTime;
count, total: Integer;
out deleteCookie: Boolean): Boolean;
2017-01-27 17:29:37 +01:00
begin
Result := FVisitor(name, value, domain, path, secure, httponly, hasExpires,
2018-03-29 20:02:04 +02:00
creation, lastAccess, expires, count, total, deleteCookie);
2017-01-27 17:29:37 +01:00
end;
end.