CEF4Delphi/source/uCEFX509CertPrincipal.pas

105 lines
2.8 KiB
ObjectPascal
Raw Permalink Normal View History

2017-01-27 16:37:51 +01:00
unit uCEFX509CertPrincipal;
{$IFDEF FPC}
{$MODE OBJFPC}{$H+}
{$ENDIF}
2017-02-05 20:56:46 +01:00
{$I cef.inc}
{$IFNDEF TARGET_64BITS}{$ALIGN ON}{$ENDIF}
{$MINENUMSIZE 4}
2017-01-27 16:37:51 +01:00
interface
uses
2017-02-05 20:56:46 +01:00
{$IFDEF DELPHI16_UP}
2017-01-27 16:37:51 +01:00
System.Classes,
2017-02-05 20:56:46 +01:00
{$ELSE}
Classes,
{$ENDIF}
uCEFBaseRefCounted, uCEFInterfaces, uCEFTypes;
2017-01-27 16:37:51 +01:00
type
TCefX509CertPrincipalRef = class(TCefBaseRefCountedRef, ICefX509CertPrincipal)
2017-01-27 16:37:51 +01:00
protected
function GetDisplayName: ustring;
function GetCommonName: ustring;
function GetLocalityName: ustring;
function GetStateOrProvinceName: ustring;
function GetCountryName: ustring;
2018-03-29 20:02:04 +02:00
procedure GetOrganizationNames(const names: TStrings);
procedure GetOrganizationUnitNames(const names: TStrings);
2017-01-27 16:37:51 +01:00
public
class function UnWrap(data: Pointer): ICefX509CertPrincipal;
end;
implementation
uses
2017-02-05 20:56:46 +01:00
{$IFDEF DELPHI16_UP}
{$IFDEF MSWINDOWS}WinApi.Windows,{$ENDIF} System.SysUtils,
2017-02-05 20:56:46 +01:00
{$ELSE}
{$IFDEF MSWINDOWS}Windows,{$ENDIF} SysUtils,
2017-02-05 20:56:46 +01:00
{$ENDIF}
uCEFMiscFunctions, uCEFStringList;
2017-01-27 16:37:51 +01:00
function TCefX509CertPrincipalRef.GetDisplayName: ustring;
begin
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData)^.get_display_name(PCefX509CertPrincipal(FData)));
2017-01-27 16:37:51 +01:00
end;
function TCefX509CertPrincipalRef.GetCommonName: ustring;
begin
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData)^.get_common_name(PCefX509CertPrincipal(FData)));
2017-01-27 16:37:51 +01:00
end;
function TCefX509CertPrincipalRef.GetLocalityName: ustring;
begin
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData)^.get_locality_name(PCefX509CertPrincipal(FData)));
2017-01-27 16:37:51 +01:00
end;
function TCefX509CertPrincipalRef.GetStateOrProvinceName: ustring;
begin
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData)^.get_state_or_province_name(PCefX509CertPrincipal(FData)));
2017-01-27 16:37:51 +01:00
end;
function TCefX509CertPrincipalRef.GetCountryName: ustring;
begin
Result := CefStringFreeAndGet(PCefX509CertPrincipal(FData)^.get_country_name(PCefX509CertPrincipal(FData)));
2017-01-27 16:37:51 +01:00
end;
2018-03-29 20:02:04 +02:00
procedure TCefX509CertPrincipalRef.GetOrganizationNames(const names: TStrings);
2017-01-27 16:37:51 +01:00
var
2018-03-29 20:02:04 +02:00
TempSL : ICefStringList;
2017-01-27 16:37:51 +01:00
begin
2018-03-29 20:02:04 +02:00
if (names <> nil) then
begin
TempSL := TCefStringListOwn.Create;
PCefX509CertPrincipal(FData)^.get_organization_names(PCefX509CertPrincipal(FData), TempSL.Handle);
2018-03-29 20:02:04 +02:00
TempSL.CopyToStrings(names);
2017-01-27 16:37:51 +01:00
end;
end;
2018-03-29 20:02:04 +02:00
procedure TCefX509CertPrincipalRef.GetOrganizationUnitNames(const names: TStrings);
2017-01-27 16:37:51 +01:00
var
2018-03-29 20:02:04 +02:00
TempSL : ICefStringList;
2017-01-27 16:37:51 +01:00
begin
2018-03-29 20:02:04 +02:00
if (names <> nil) then
begin
TempSL := TCefStringListOwn.Create;
PCefX509CertPrincipal(FData)^.get_organization_unit_names(PCefX509CertPrincipal(FData), TempSL.Handle);
2018-03-29 20:02:04 +02:00
TempSL.CopyToStrings(names);
2017-01-27 16:37:51 +01:00
end;
end;
class function TCefX509CertPrincipalRef.UnWrap(data: Pointer): ICefX509CertPrincipal;
begin
if (data <> nil) then
Result := Create(data) as ICefX509CertPrincipal
else
Result := nil;
end;
end.