CEF4Delphi/source/uCEFX509CertPrincipal.pas

168 lines
5.2 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 uCEFX509CertPrincipal;
{$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}
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 GetStreetAddresses(const addresses: TStrings);
procedure GetOrganizationNames(const names: TStrings);
procedure GetOrganizationUnitNames(const names: TStrings);
procedure GetDomainComponents(const components: 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.GetStreetAddresses(const addresses: 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 (addresses <> nil) then
begin
TempSL := TCefStringListOwn.Create;
PCefX509CertPrincipal(FData)^.get_street_addresses(PCefX509CertPrincipal(FData), TempSL.Handle);
2018-03-29 20:02:04 +02:00
TempSL.CopyToStrings(addresses);
2017-01-27 16:37:51 +01:00
end;
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;
2018-03-29 20:02:04 +02:00
procedure TCefX509CertPrincipalRef.GetDomainComponents(const components: 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 (components <> nil) then
begin
TempSL := TCefStringListOwn.Create;
PCefX509CertPrincipal(FData)^.get_domain_components(PCefX509CertPrincipal(FData), TempSL.Handle);
2018-03-29 20:02:04 +02:00
TempSL.CopyToStrings(components);
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.