You've already forked CEF4Delphi
mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2025-11-23 21:34:53 +02:00
reorganization of folders
This commit is contained in:
215
source/uCEFX509CertPrincipal.pas
Normal file
215
source/uCEFX509CertPrincipal.pas
Normal file
@@ -0,0 +1,215 @@
|
||||
// ************************************************************************
|
||||
// ***************************** 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 � 2017 Salvador D�az Fau. All rights reserved.
|
||||
//
|
||||
// ************************************************************************
|
||||
// ************ 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 uCEFX509CertPrincipal;
|
||||
|
||||
{$IFNDEF CPUX64}
|
||||
{$ALIGN ON}
|
||||
{$MINENUMSIZE 4}
|
||||
{$ENDIF}
|
||||
|
||||
interface
|
||||
|
||||
uses
|
||||
System.Classes,
|
||||
uCEFBase, uCEFInterfaces, uCEFTypes;
|
||||
|
||||
type
|
||||
TCefX509CertPrincipalRef = class(TCefBaseRef, ICefX509CertPrincipal)
|
||||
protected
|
||||
function GetDisplayName: ustring;
|
||||
function GetCommonName: ustring;
|
||||
function GetLocalityName: ustring;
|
||||
function GetStateOrProvinceName: ustring;
|
||||
function GetCountryName: ustring;
|
||||
procedure GetStreetAddresses(addresses: TStrings);
|
||||
procedure GetOrganizationNames(names: TStrings);
|
||||
procedure GetOrganizationUnitNames(names: TStrings);
|
||||
procedure GetDomainComponents(components: TStrings);
|
||||
|
||||
public
|
||||
class function UnWrap(data: Pointer): ICefX509CertPrincipal;
|
||||
end;
|
||||
|
||||
implementation
|
||||
|
||||
uses
|
||||
WinApi.Windows, System.SysUtils,
|
||||
uCEFMiscFunctions, uCEFLibFunctions;
|
||||
|
||||
function TCefX509CertPrincipalRef.GetDisplayName: ustring;
|
||||
begin
|
||||
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData).get_display_name(FData));
|
||||
end;
|
||||
|
||||
function TCefX509CertPrincipalRef.GetCommonName: ustring;
|
||||
begin
|
||||
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData).get_common_name(FData));
|
||||
end;
|
||||
|
||||
function TCefX509CertPrincipalRef.GetLocalityName: ustring;
|
||||
begin
|
||||
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData).get_locality_name(FData));
|
||||
end;
|
||||
|
||||
function TCefX509CertPrincipalRef.GetStateOrProvinceName: ustring;
|
||||
begin
|
||||
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData).get_state_or_province_name(FData));
|
||||
end;
|
||||
|
||||
function TCefX509CertPrincipalRef.GetCountryName: ustring;
|
||||
begin
|
||||
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData).get_country_name(FData));
|
||||
end;
|
||||
|
||||
procedure TCefX509CertPrincipalRef.GetStreetAddresses(addresses: TStrings);
|
||||
var
|
||||
TempList : TCefStringList;
|
||||
begin
|
||||
TempList := nil;
|
||||
|
||||
try
|
||||
try
|
||||
if (addresses <> nil) then
|
||||
begin
|
||||
TempList := cef_string_list_alloc;
|
||||
PCefX509CertPrincipal(FData).get_street_addresses(FData, TempList);
|
||||
CefStringListToStringList(TempList, addresses);
|
||||
end;
|
||||
except
|
||||
on e : exception do
|
||||
begin
|
||||
{$IFDEF DEBUG}
|
||||
OutputDebugString(PWideChar('TCefX509CertPrincipalRef.GetStreetAddresses error: ' + e.Message + chr(0)));
|
||||
{$ENDIF}
|
||||
end;
|
||||
end;
|
||||
finally
|
||||
if (TempList <> nil) then cef_string_list_free(TempList);
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TCefX509CertPrincipalRef.GetOrganizationNames(names: TStrings);
|
||||
var
|
||||
TempList : TCefStringList;
|
||||
begin
|
||||
TempList := nil;
|
||||
|
||||
try
|
||||
try
|
||||
if (names <> nil) then
|
||||
begin
|
||||
TempList := cef_string_list_alloc;
|
||||
PCefX509CertPrincipal(FData).get_organization_names(FData, TempList);
|
||||
CefStringListToStringList(TempList, names);
|
||||
end;
|
||||
except
|
||||
on e : exception do
|
||||
begin
|
||||
{$IFDEF DEBUG}
|
||||
OutputDebugString(PWideChar('TCefX509CertPrincipalRef.GetOrganizationNames error: ' + e.Message + chr(0)));
|
||||
{$ENDIF}
|
||||
end;
|
||||
end;
|
||||
finally
|
||||
if (TempList <> nil) then cef_string_list_free(TempList);
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TCefX509CertPrincipalRef.GetOrganizationUnitNames(names: TStrings);
|
||||
var
|
||||
TempList : TCefStringList;
|
||||
begin
|
||||
TempList := nil;
|
||||
|
||||
try
|
||||
try
|
||||
if (names <> nil) then
|
||||
begin
|
||||
TempList := cef_string_list_alloc;
|
||||
PCefX509CertPrincipal(FData).get_organization_unit_names(FData, TempList);
|
||||
CefStringListToStringList(TempList, names);
|
||||
end;
|
||||
except
|
||||
on e : exception do
|
||||
begin
|
||||
{$IFDEF DEBUG}
|
||||
OutputDebugString(PWideChar('TCefX509CertPrincipalRef.GetOrganizationUnitNames error: ' + e.Message + chr(0)));
|
||||
{$ENDIF}
|
||||
end;
|
||||
end;
|
||||
finally
|
||||
if (TempList <> nil) then cef_string_list_free(TempList);
|
||||
end;
|
||||
end;
|
||||
|
||||
procedure TCefX509CertPrincipalRef.GetDomainComponents(components: TStrings);
|
||||
var
|
||||
TempList : TCefStringList;
|
||||
begin
|
||||
TempList := nil;
|
||||
|
||||
try
|
||||
try
|
||||
if (components <> nil) then
|
||||
begin
|
||||
TempList := cef_string_list_alloc;
|
||||
PCefX509CertPrincipal(FData).get_domain_components(FData, TempList);
|
||||
CefStringListToStringList(TempList, components);
|
||||
end;
|
||||
except
|
||||
on e : exception do
|
||||
begin
|
||||
{$IFDEF DEBUG}
|
||||
OutputDebugString(PWideChar('TCefX509CertPrincipalRef.GetDomainComponents error: ' + e.Message + chr(0)));
|
||||
{$ENDIF}
|
||||
end;
|
||||
end;
|
||||
finally
|
||||
if (TempList <> nil) then cef_string_list_free(TempList);
|
||||
end;
|
||||
end;
|
||||
|
||||
class function TCefX509CertPrincipalRef.UnWrap(data: Pointer): ICefX509CertPrincipal;
|
||||
begin
|
||||
if (data <> nil) then
|
||||
Result := Create(data) as ICefX509CertPrincipal
|
||||
else
|
||||
Result := nil;
|
||||
end;
|
||||
|
||||
end.
|
||||
Reference in New Issue
Block a user