CEF4Delphi/source/uCEFRequestContext.pas

397 lines
15 KiB
ObjectPascal
Raw Normal View History

2017-01-27 16:37:51 +01:00
// ************************************************************************
// ***************************** CEF4Delphi *******************************
// ************************************************************************
//
// CEF4Delphi is based on DCEF3 which uses CEF to embed a chromium-based
2017-01-27 16:37:51 +01:00
// 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
//
2021-01-01 11:11:30 +01:00
// Copyright <20> 2021 Salvador Diaz Fau. All rights reserved.
2017-01-27 16:37:51 +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 uCEFRequestContext;
{$IFDEF FPC}
{$MODE OBJFPC}{$H+}
{$ENDIF}
{$IFNDEF CPUX64}{$ALIGN ON}{$ENDIF}
{$MINENUMSIZE 4}
2017-01-27 16:37:51 +01:00
2017-02-05 20:56:46 +01:00
{$I cef.inc}
2017-01-27 16:37:51 +01:00
interface
uses
2017-02-05 20:56:46 +01:00
{$IFDEF DELPHI16_UP}
2018-02-26 18:40:51 +01:00
System.Classes, System.SysUtils,
2017-02-05 20:56:46 +01:00
{$ELSE}
2018-02-26 18:40:51 +01:00
Classes, SysUtils,
2017-02-05 20:56:46 +01:00
{$ENDIF}
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes, uCEFCompletionCallback;
2017-01-27 16:37:51 +01:00
type
TCefRequestContextRef = class(TCefBaseRefCountedRef, ICefRequestContext)
2017-01-27 16:37:51 +01:00
protected
2017-10-26 13:23:13 +02:00
function IsSame(const other: ICefRequestContext): Boolean;
function IsSharingWith(const other: ICefRequestContext): Boolean;
function IsGlobal: Boolean;
function GetHandler: ICefRequestContextHandler;
function GetCachePath: ustring;
2019-06-16 10:31:13 +02:00
function GetCookieManager(const callback: ICefCompletionCallback): ICefCookieManager;
function GetCookieManagerProc(const callback: TCefCompletionCallbackProc): ICefCookieManager;
2017-10-26 13:23:13 +02:00
function RegisterSchemeHandlerFactory(const schemeName, domainName: ustring; const factory: ICefSchemeHandlerFactory): Boolean;
function ClearSchemeHandlerFactories: Boolean;
2017-01-27 16:37:51 +01:00
procedure PurgePluginListCache(reloadPages: Boolean);
2017-10-26 13:23:13 +02:00
function HasPreference(const name: ustring): Boolean;
function GetPreference(const name: ustring): ICefValue;
function GetAllPreferences(includeDefaults: Boolean): ICefDictionaryValue;
function CanSetPreference(const name: ustring): Boolean;
function SetPreference(const name: ustring; const value: ICefValue; out error: ustring): Boolean;
2017-01-27 16:37:51 +01:00
procedure ClearCertificateExceptions(const callback: ICefCompletionCallback);
procedure ClearHttpAuthCredentials(const callback: ICefCompletionCallback);
2017-01-27 16:37:51 +01:00
procedure CloseAllConnections(const callback: ICefCompletionCallback);
procedure ResolveHost(const origin: ustring; const callback: ICefResolveCallback);
2017-10-26 13:23:13 +02:00
procedure LoadExtension(const root_directory: ustring; const manifest: ICefDictionaryValue; const handler: ICefExtensionHandler);
function DidLoadExtension(const extension_id: ustring): boolean;
function HasExtension(const extension_id: ustring): boolean;
function GetExtensions(const extension_ids: TStringList): boolean;
function GetExtension(const extension_id: ustring): ICefExtension;
function GetMediaRouter: ICefMediaRouter;
2017-01-27 16:37:51 +01:00
public
class function UnWrap(data: Pointer): ICefRequestContext;
class function Global: ICefRequestContext;
class function New(const settings: PCefRequestContextSettings; const handler: ICefRequestContextHandler = nil): ICefRequestContext; overload;
2019-10-30 10:26:48 +01:00
class function New(const aCache, aAcceptLanguageList : ustring; aPersistSessionCookies, aPersistUserPreferences, aIgnoreCertificateErrors : boolean; const handler: ICefRequestContextHandler = nil): ICefRequestContext; overload;
2017-01-27 16:37:51 +01:00
class function Shared(const other: ICefRequestContext; const handler: ICefRequestContextHandler): ICefRequestContext;
end;
TCefClearCertificateExceptionsCompletionCallback = class(TCefCustomCompletionCallback)
protected
procedure OnComplete; override;
end;
TCefClearHttpAuthCredentialsCompletionCallback = class(TCefCustomCompletionCallback)
protected
procedure OnComplete; override;
end;
TCefCloseAllConnectionsCompletionCallback = class(TCefCustomCompletionCallback)
protected
procedure OnComplete; override;
end;
2017-01-27 16:37:51 +01:00
implementation
uses
uCEFMiscFunctions, uCEFLibFunctions, uCEFValue, uCEFDictionaryValue,
uCEFCookieManager, uCEFRequestContextHandler, uCEFExtension, uCEFStringList,
uCEFMediaRouter;
2017-01-27 16:37:51 +01:00
function TCefRequestContextRef.ClearSchemeHandlerFactories: Boolean;
begin
Result := PCefRequestContext(FData)^.clear_scheme_handler_factories(PCefRequestContext(FData)) <> 0;
2017-01-27 16:37:51 +01:00
end;
function TCefRequestContextRef.GetCachePath: ustring;
begin
Result := CefStringFreeAndGet(PCefRequestContext(FData)^.get_cache_path(PCefRequestContext(FData)));
2017-01-27 16:37:51 +01:00
end;
2019-06-16 10:31:13 +02:00
function TCefRequestContextRef.GetCookieManager(const callback: ICefCompletionCallback): ICefCookieManager;
2017-01-27 16:37:51 +01:00
begin
2019-06-16 10:31:13 +02:00
Result := TCefCookieManagerRef.UnWrap(PCefRequestContext(FData)^.get_cookie_manager(PCefRequestContext(FData), CefGetData(callback)));
2017-01-27 16:37:51 +01:00
end;
2019-06-16 10:31:13 +02:00
function TCefRequestContextRef.GetCookieManagerProc(const callback: TCefCompletionCallbackProc): ICefCookieManager;
2017-01-27 16:37:51 +01:00
begin
2019-06-16 10:31:13 +02:00
Result := GetCookieManager(TCefFastCompletionCallback.Create(callback));
2017-01-27 16:37:51 +01:00
end;
function TCefRequestContextRef.GetHandler: ICefRequestContextHandler;
var
TempHandler : PCefRequestContextHandler;
2017-01-27 16:37:51 +01:00
begin
TempHandler := PCefRequestContext(FData)^.get_handler(PCefRequestContext(FData));
if (TempHandler <> nil) then
Result := TCefRequestContextHandlerRef.UnWrap(TempHandler)
else
Result := nil;
2017-01-27 16:37:51 +01:00
end;
class function TCefRequestContextRef.Global: ICefRequestContext;
begin
2017-10-26 13:23:13 +02:00
Result := UnWrap(cef_request_context_get_global_context());
2017-01-27 16:37:51 +01:00
end;
function TCefRequestContextRef.IsGlobal: Boolean;
begin
Result := PCefRequestContext(FData)^.is_global(PCefRequestContext(FData)) <> 0;
2017-01-27 16:37:51 +01:00
end;
function TCefRequestContextRef.IsSame(const other: ICefRequestContext): Boolean;
begin
Result := PCefRequestContext(FData)^.is_same(PCefRequestContext(FData), CefGetData(other)) <> 0;
2017-01-27 16:37:51 +01:00
end;
2017-10-26 13:23:13 +02:00
function TCefRequestContextRef.IsSharingWith(const other: ICefRequestContext): Boolean;
2017-01-27 16:37:51 +01:00
begin
Result := PCefRequestContext(FData)^.is_sharing_with(PCefRequestContext(FData), CefGetData(other)) <> 0;
2017-01-27 16:37:51 +01:00
end;
class function TCefRequestContextRef.New(const settings : PCefRequestContextSettings;
const handler : ICefRequestContextHandler): ICefRequestContext;
2017-01-27 16:37:51 +01:00
begin
Result := UnWrap(cef_request_context_create_context(settings, CefGetData(handler)));
end;
class function TCefRequestContextRef.New(const aCache : ustring;
const aAcceptLanguageList : ustring;
aPersistSessionCookies : boolean;
aPersistUserPreferences : boolean;
aIgnoreCertificateErrors : boolean;
const handler : ICefRequestContextHandler): ICefRequestContext;
var
TempSettings : TCefRequestContextSettings;
begin
TempSettings.size := SizeOf(TCefRequestContextSettings);
TempSettings.cache_path := CefString(aCache);
TempSettings.persist_session_cookies := Ord(aPersistSessionCookies);
TempSettings.persist_user_preferences := Ord(aPersistUserPreferences);
TempSettings.ignore_certificate_errors := Ord(aIgnoreCertificateErrors);
TempSettings.accept_language_list := CefString(aAcceptLanguageList);
Result := UnWrap(cef_request_context_create_context(@TempSettings, CefGetData(handler)));
end;
2017-01-27 16:37:51 +01:00
procedure TCefRequestContextRef.PurgePluginListCache(reloadPages: Boolean);
begin
PCefRequestContext(FData)^.purge_plugin_list_cache(PCefRequestContext(FData), Ord(reloadPages));
2017-01-27 16:37:51 +01:00
end;
function TCefRequestContextRef.HasPreference(const name: ustring): Boolean;
var
TempName : TCefString;
2017-01-27 16:37:51 +01:00
begin
TempName := CefString(name);
Result := PCefRequestContext(FData)^.has_preference(PCefRequestContext(FData), @TempName) <> 0;
2017-01-27 16:37:51 +01:00
end;
function TCefRequestContextRef.GetPreference(const name: ustring): ICefValue;
var
TempName : TCefString;
2017-01-27 16:37:51 +01:00
begin
TempName := CefString(name);
Result := TCefValueRef.UnWrap(PCefRequestContext(FData)^.get_preference(PCefRequestContext(FData), @TempName));
2017-01-27 16:37:51 +01:00
end;
function TCefRequestContextRef.GetAllPreferences(includeDefaults: Boolean): ICefDictionaryValue;
begin
Result := TCefDictionaryValueRef.UnWrap(PCefRequestContext(FData)^.get_all_preferences(PCefRequestContext(FData), Ord(includeDefaults)));
2017-01-27 16:37:51 +01:00
end;
function TCefRequestContextRef.CanSetPreference(const name: ustring): Boolean;
var
TempName : TCefString;
2017-01-27 16:37:51 +01:00
begin
TempName := CefString(name);
Result := PCefRequestContext(FData)^.can_set_preference(PCefRequestContext(FData), @TempName) <> 0;
2017-01-27 16:37:51 +01:00
end;
2017-10-26 13:23:13 +02:00
function TCefRequestContextRef.SetPreference(const name : ustring;
const value : ICefValue;
out error : ustring): Boolean;
2017-01-27 16:37:51 +01:00
var
TempName, TempError : TCefString;
2017-01-27 16:37:51 +01:00
begin
CefStringInitialize(@TempError);
TempName := CefString(name);
Result := PCefRequestContext(FData)^.set_preference(PCefRequestContext(FData), @TempName, CefGetData(value), @TempError) <> 0;
error := CefStringClearAndGet(@TempError);
2017-01-27 16:37:51 +01:00
end;
procedure TCefRequestContextRef.ClearCertificateExceptions(const callback: ICefCompletionCallback);
begin
PCefRequestContext(FData)^.clear_certificate_exceptions(PCefRequestContext(FData), CefGetData(callback));
2017-01-27 16:37:51 +01:00
end;
procedure TCefRequestContextRef.ClearHttpAuthCredentials(const callback: ICefCompletionCallback);
begin
PCefRequestContext(FData)^.clear_http_auth_credentials(PCefRequestContext(FData), CefGetData(callback));
end;
2017-01-27 16:37:51 +01:00
procedure TCefRequestContextRef.CloseAllConnections(const callback: ICefCompletionCallback);
begin
PCefRequestContext(FData)^.close_all_connections(PCefRequestContext(FData), CefGetData(callback));
2017-01-27 16:37:51 +01:00
end;
2017-10-26 13:23:13 +02:00
procedure TCefRequestContextRef.ResolveHost(const origin : ustring;
const callback : ICefResolveCallback);
2017-01-27 16:37:51 +01:00
var
TempOrigin : TCefString;
2017-01-27 16:37:51 +01:00
begin
TempOrigin := CefString(origin);
PCefRequestContext(FData)^.resolve_host(PCefRequestContext(FData), @TempOrigin, CefGetData(callback));
2017-01-27 16:37:51 +01:00
end;
2017-10-26 13:23:13 +02:00
procedure TCefRequestContextRef.LoadExtension(const root_directory: ustring; const manifest: ICefDictionaryValue; const handler: ICefExtensionHandler);
var
TempDir : TCefString;
begin
TempDir := CefString(root_directory);
PCefRequestContext(FData)^.load_extension(PCefRequestContext(FData), @TempDir, CefGetData(manifest), CefGetData(handler));
2017-10-26 13:23:13 +02:00
end;
function TCefRequestContextRef.DidLoadExtension(const extension_id: ustring): boolean;
var
TempID : TCefString;
begin
TempID := CefString(extension_id);
Result := PCefRequestContext(FData)^.did_load_extension(PCefRequestContext(FData), @TempID) <> 0;
2017-10-26 13:23:13 +02:00
end;
function TCefRequestContextRef.HasExtension(const extension_id: ustring): boolean;
var
TempID : TCefString;
begin
TempID := CefString(extension_id);
Result := PCefRequestContext(FData)^.has_extension(PCefRequestContext(FData), @TempID) <> 0;
2017-10-26 13:23:13 +02:00
end;
function TCefRequestContextRef.GetExtensions(const extension_ids: TStringList): boolean;
var
2018-03-29 20:02:04 +02:00
TempSL : ICefStringList;
2017-10-26 13:23:13 +02:00
begin
2018-03-29 20:02:04 +02:00
Result := False;
TempSL := TCefStringListOwn.Create;
if (PCefRequestContext(FData)^.get_extensions(PCefRequestContext(FData), TempSL.Handle) <> 0) then
2018-03-29 20:02:04 +02:00
begin
TempSL.CopyToStrings(extension_ids);
Result := True;
2018-02-26 18:40:51 +01:00
end;
2017-01-27 16:37:51 +01:00
end;
2017-10-26 13:23:13 +02:00
function TCefRequestContextRef.GetExtension(const extension_id: ustring): ICefExtension;
var
TempID : TCefString;
begin
TempID := CefString(extension_id);
Result := TCefExtensionRef.UnWrap(PCefRequestContext(FData)^.get_extension(PCefRequestContext(FData), @TempID));
2017-10-26 13:23:13 +02:00
end;
function TCefRequestContextRef.GetMediaRouter: ICefMediaRouter;
begin
Result := TCefMediaRouterRef.UnWrap(PCefRequestContext(FData)^.get_media_router(PCefRequestContext(FData)));
end;
2017-10-26 13:23:13 +02:00
function TCefRequestContextRef.RegisterSchemeHandlerFactory(const schemeName : ustring;
const domainName : ustring;
const factory : ICefSchemeHandlerFactory): Boolean;
2017-01-27 16:37:51 +01:00
var
TempScheme, TempDomain : TCefString;
2017-01-27 16:37:51 +01:00
begin
TempScheme := CefString(schemeName);
TempDomain := CefString(domainName);
Result := PCefRequestContext(FData)^.register_scheme_handler_factory(PCefRequestContext(FData),
@TempScheme,
@TempDomain,
CefGetData(factory)) <> 0;
2017-01-27 16:37:51 +01:00
end;
2017-10-26 13:23:13 +02:00
class function TCefRequestContextRef.Shared(const other : ICefRequestContext;
const handler : ICefRequestContextHandler): ICefRequestContext;
2017-01-27 16:37:51 +01:00
begin
Result := UnWrap(cef_create_context_shared(CefGetData(other), CefGetData(handler)));
end;
class function TCefRequestContextRef.UnWrap(data: Pointer): ICefRequestContext;
begin
2017-10-26 13:23:13 +02:00
if (data <> nil) then
Result := Create(data) as ICefRequestContext
else
2017-01-27 16:37:51 +01:00
Result := nil;
end;
// TCefClearCertificateExceptionsCompletionCallback
procedure TCefClearCertificateExceptionsCompletionCallback.OnComplete;
begin
try
try
if (FEvents <> nil) then IChromiumEvents(FEvents).doCertificateExceptionsCleared;
except
on e : exception do
if CustomExceptionHandler('TCefClearCertificateExceptionsCompletionCallback.OnComplete', e) then raise;
end;
finally
FEvents := nil;
end;
end;
// TCefClearHttpAuthCredentialsCompletionCallback
procedure TCefClearHttpAuthCredentialsCompletionCallback.OnComplete;
begin
try
try
if (FEvents <> nil) then IChromiumEvents(FEvents).doHttpAuthCredentialsCleared;
except
on e : exception do
if CustomExceptionHandler('TCefClearHttpAuthCredentialsCompletionCallback.OnComplete', e) then raise;
end;
finally
FEvents := nil;
end;
end;
// TCefCloseAllConnectionsCompletionCallback
procedure TCefCloseAllConnectionsCompletionCallback.OnComplete;
begin
try
try
if (FEvents <> nil) then IChromiumEvents(FEvents).doAllConnectionsClosed;
except
on e : exception do
if CustomExceptionHandler('TCefCloseAllConnectionsCompletionCallback.OnComplete', e) then raise;
end;
finally
FEvents := nil;
end;
end;
2017-01-27 16:37:51 +01:00
end.