mirror of
git://git.proxmox.com/git/pve-apiclient.git
synced 2025-01-03 05:17:58 +03:00
example2.pl: add a second example
This commit is contained in:
parent
ce70bf815f
commit
8291fb9a6e
1
Makefile
1
Makefile
@ -23,6 +23,7 @@ install:
|
||||
install -D -m 0644 PVE/APIClient/LWP.pm ${PERL5DIR}/PVE/APIClient/LWP.pm
|
||||
install -d -m 755 ${DOCDIR}/examples
|
||||
install -m 0755 examples/example1.pl ${DOCDIR}/examples
|
||||
install -m 0755 examples/example2.pl ${DOCDIR}/examples
|
||||
|
||||
.PHONY: upload
|
||||
upload: ${DEB}
|
||||
|
2
debian/changelog
vendored
2
debian/changelog
vendored
@ -1,6 +1,6 @@
|
||||
libpve-apiclient-perl (1.0-2) unstable; urgency=medium
|
||||
|
||||
* add simple example code: example1.pl
|
||||
* add simple example code: example1.pl and example2.pl
|
||||
|
||||
-- Proxmox Support Team <support@proxmox.com> Wed, 28 Dec 2016 10:46:52 +0100
|
||||
|
||||
|
56
examples/example2.pl
Executable file
56
examples/example2.pl
Executable file
@ -0,0 +1,56 @@
|
||||
#!/usr/bin/perl
|
||||
|
||||
# NOTE: you need to run this on a PVE host, or modify the source to
|
||||
# provide username/password/hostname from somewhere else.
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use PVE::APIClient::LWP;
|
||||
|
||||
use PVE::AccessControl;
|
||||
use PVE::INotify;
|
||||
use JSON;
|
||||
|
||||
# normally you use username/password,
|
||||
# but we can simply create a ticket and CRSF token if we are root
|
||||
# running on a pve host
|
||||
|
||||
my $hostname = PVE::INotify::read_file("hostname");
|
||||
|
||||
my $ticket = PVE::AccessControl::assemble_ticket('root@pam');
|
||||
my $csrftoken = PVE::AccessControl::assemble_csrf_prevention_token('root@pam');
|
||||
|
||||
sub get_local_cert_fingerprint {
|
||||
my ($node) = @_;
|
||||
|
||||
my $cert_path = "/etc/pve/nodes/$node/pve-ssl.pem";
|
||||
my $custom_cert_path = "/etc/pve/nodes/$node/pveproxy-ssl.pem";
|
||||
|
||||
$cert_path = $custom_cert_path if -f $custom_cert_path;
|
||||
|
||||
my $bio = Net::SSLeay::BIO_new_file($cert_path, 'r');
|
||||
my $cert = Net::SSLeay::PEM_read_bio_X509($bio);
|
||||
Net::SSLeay::BIO_free($bio);
|
||||
|
||||
my $fp = Net::SSLeay::X509_get_fingerprint($cert, 'sha256');
|
||||
die "got empty fingerprint" if !defined($fp) || ($fp eq '');
|
||||
|
||||
return $fp;
|
||||
}
|
||||
|
||||
my $local_fingerprint = get_local_cert_fingerprint($hostname);
|
||||
|
||||
my $conn = PVE::APIClient::LWP->new(
|
||||
#username => 'root@pam',
|
||||
#password => 'yourpassword',
|
||||
ticket => $ticket,
|
||||
csrftoken => $csrftoken,
|
||||
host => $hostname,
|
||||
# add local hosts cert fingerprint
|
||||
cached_fingerprints => {
|
||||
$local_fingerprint => 1,
|
||||
});
|
||||
|
||||
my $res = $conn->get("api2/json/access/domains", {});
|
||||
print to_json($res, { pretty => 1, canonical => 1});
|
Loading…
Reference in New Issue
Block a user