mirror of
https://github.com/salvadordf/CEF4Delphi.git
synced 2024-11-15 07:45:56 +01:00
ca8bc9dff4
Added the PDS file to extract the HTML Help files using PasDoc Added more XML documentation Fixed some XML errors. Removed the license copy from the pas units. Updated the LICENSE.md file
105 lines
2.8 KiB
ObjectPascal
105 lines
2.8 KiB
ObjectPascal
unit uCEFX509CertPrincipal;
|
|
|
|
{$IFDEF FPC}
|
|
{$MODE OBJFPC}{$H+}
|
|
{$ENDIF}
|
|
|
|
{$I cef.inc}
|
|
|
|
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
|
|
{$MINENUMSIZE 4}
|
|
|
|
interface
|
|
|
|
uses
|
|
{$IFDEF DELPHI16_UP}
|
|
System.Classes,
|
|
{$ELSE}
|
|
Classes,
|
|
{$ENDIF}
|
|
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
|
|
|
|
type
|
|
TCefX509CertPrincipalRef = class(TCefBaseRefCountedRef, ICefX509CertPrincipal)
|
|
protected
|
|
function GetDisplayName: ustring;
|
|
function GetCommonName: ustring;
|
|
function GetLocalityName: ustring;
|
|
function GetStateOrProvinceName: ustring;
|
|
function GetCountryName: ustring;
|
|
procedure GetOrganizationNames(const names: TStrings);
|
|
procedure GetOrganizationUnitNames(const names: TStrings);
|
|
|
|
public
|
|
class function UnWrap(data: Pointer): ICefX509CertPrincipal;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
{$IFDEF DELPHI16_UP}
|
|
{$IFDEF MSWINDOWS}WinApi.Windows,{$ENDIF} System.SysUtils,
|
|
{$ELSE}
|
|
{$IFDEF MSWINDOWS}Windows,{$ENDIF} SysUtils,
|
|
{$ENDIF}
|
|
uCEFMiscFunctions, uCEFStringList;
|
|
|
|
function TCefX509CertPrincipalRef.GetDisplayName: ustring;
|
|
begin
|
|
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData)^.get_display_name(PCefX509CertPrincipal(FData)));
|
|
end;
|
|
|
|
function TCefX509CertPrincipalRef.GetCommonName: ustring;
|
|
begin
|
|
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData)^.get_common_name(PCefX509CertPrincipal(FData)));
|
|
end;
|
|
|
|
function TCefX509CertPrincipalRef.GetLocalityName: ustring;
|
|
begin
|
|
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData)^.get_locality_name(PCefX509CertPrincipal(FData)));
|
|
end;
|
|
|
|
function TCefX509CertPrincipalRef.GetStateOrProvinceName: ustring;
|
|
begin
|
|
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData)^.get_state_or_province_name(PCefX509CertPrincipal(FData)));
|
|
end;
|
|
|
|
function TCefX509CertPrincipalRef.GetCountryName: ustring;
|
|
begin
|
|
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData)^.get_country_name(PCefX509CertPrincipal(FData)));
|
|
end;
|
|
|
|
procedure TCefX509CertPrincipalRef.GetOrganizationNames(const names: TStrings);
|
|
var
|
|
TempSL : ICefStringList;
|
|
begin
|
|
if (names <> nil) then
|
|
begin
|
|
TempSL := TCefStringListOwn.Create;
|
|
PCefX509CertPrincipal(FData)^.get_organization_names(PCefX509CertPrincipal(FData), TempSL.Handle);
|
|
TempSL.CopyToStrings(names);
|
|
end;
|
|
end;
|
|
|
|
procedure TCefX509CertPrincipalRef.GetOrganizationUnitNames(const names: TStrings);
|
|
var
|
|
TempSL : ICefStringList;
|
|
begin
|
|
if (names <> nil) then
|
|
begin
|
|
TempSL := TCefStringListOwn.Create;
|
|
PCefX509CertPrincipal(FData)^.get_organization_unit_names(PCefX509CertPrincipal(FData), TempSL.Handle);
|
|
TempSL.CopyToStrings(names);
|
|
end;
|
|
end;
|
|
|
|
class function TCefX509CertPrincipalRef.UnWrap(data: Pointer): ICefX509CertPrincipal;
|
|
begin
|
|
if (data <> nil) then
|
|
Result := Create(data) as ICefX509CertPrincipal
|
|
else
|
|
Result := nil;
|
|
end;
|
|
|
|
end.
|