From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from firstgate.proxmox.com (firstgate.proxmox.com [IPv6:2a01:7e0:0:424::9]) by lore.proxmox.com (Postfix) with ESMTPS id 1E8DD1FF146 for ; Tue, 23 Jun 2026 16:35:20 +0200 (CEST) Received: from firstgate.proxmox.com (localhost [127.0.0.1]) by firstgate.proxmox.com (Proxmox) with ESMTP id E25303B3D; Tue, 23 Jun 2026 16:34:45 +0200 (CEST) From: "Max R. Carrara" To: pve-devel@lists.proxmox.com Subject: [PATCH pve-manager 11/13] api: add API routes 'plugins' and 'plugins/storage' Date: Tue, 23 Jun 2026 16:33:28 +0200 Message-ID: <20260623143402.772452-12-m.carrara@proxmox.com> X-Mailer: git-send-email 2.47.3 In-Reply-To: <20260623143402.772452-1-m.carrara@proxmox.com> References: <20260623143402.772452-1-m.carrara@proxmox.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Bm-Milter-Handled: 55990f41-d878-4baa-be0a-ee34c49e34d2 X-Bm-Transport-Timestamp: 1782225254232 X-SPAM-LEVEL: Spam detection results: 0 AWL 0.081 Adjusted score from AWL reputation of From: address BAYES_00 -1.9 Bayes spam probability is 0 to 1% DMARC_MISSING 0.1 Missing DMARC policy KAM_DMARC_STATUS 0.01 Test Rule for DKIM or SPF Failure with Strict Alignment SPF_HELO_NONE 0.001 SPF: HELO does not publish an SPF Record SPF_PASS -0.001 SPF: sender matches SPF record Message-ID-Hash: VSZD5BJGDQLECEFUS3ARNWM2ZL5XYXMJ X-Message-ID-Hash: VSZD5BJGDQLECEFUS3ARNWM2ZL5XYXMJ X-MailFrom: m.carrara@proxmox.com X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; loop; banned-address; emergency; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header X-Mailman-Version: 3.3.10 Precedence: list List-Id: Proxmox VE development discussion List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: Add the `plugins` route to our API and handle it via its own module, `API2/Plugins.pm`. Implement a GET endpoint for this route, which just lists its subpaths. Additionally, add the `plugins/storage` path to the API and let all corresponding endpoints be handled by the `PVE::API2::Plugins::Storage` module, which is part of the `libpve-storage-perl` package. This means that the following routes are now available: * plugins * plugins/storage * plugins/storage/plugin * plugins/storage/plugin/{type} Signed-off-by: Max R. Carrara --- PVE/API2.pm | 6 +++++ PVE/API2/Makefile | 1 + PVE/API2/Plugins.pm | 61 +++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 68 insertions(+) create mode 100644 PVE/API2/Plugins.pm diff --git a/PVE/API2.pm b/PVE/API2.pm index 0c7e4654..af1cf38b 100644 --- a/PVE/API2.pm +++ b/PVE/API2.pm @@ -17,6 +17,7 @@ use PVE::API2::Nodes; use PVE::API2::Pool; use PVE::API2::AccessControl; use PVE::API2::Storage::Config; +use PVE::API2::Plugins; __PACKAGE__->register_method({ subclass => "PVE::API2::Cluster", @@ -43,6 +44,11 @@ __PACKAGE__->register_method({ path => 'pools', }); +__PACKAGE__->register_method({ + subclass => "PVE::API2::Plugins", + path => 'plugins', +}); + __PACKAGE__->register_method({ name => 'index', path => '', diff --git a/PVE/API2/Makefile b/PVE/API2/Makefile index 97f1cc20..97910009 100644 --- a/PVE/API2/Makefile +++ b/PVE/API2/Makefile @@ -17,6 +17,7 @@ PERLSOURCE = \ Network.pm \ NodeConfig.pm \ Nodes.pm \ + Plugins.pm \ Pool.pm \ Replication.pm \ ReplicationConfig.pm \ diff --git a/PVE/API2/Plugins.pm b/PVE/API2/Plugins.pm new file mode 100644 index 00000000..beb606e6 --- /dev/null +++ b/PVE/API2/Plugins.pm @@ -0,0 +1,61 @@ +package PVE::API2::Plugins; + +use v5.36; + +use PVE::RESTHandler; +use base qw(PVE::RESTHandler); + +use PVE::API2::Plugins::Storage; + +__PACKAGE__->register_method({ + subclass => "PVE::API2::Plugins::Storage", + path => 'storage', +}); + +__PACKAGE__->register_method({ + name => 'index', + path => '', + method => 'GET', + permissions => { + user => 'all', + }, + description => "Directory index.", + parameters => { + additionalProperties => 0, + properties => {}, + }, + returns => { + type => 'array', + items => { + type => 'object', + properties => { + subdir => { + type => 'string', + }, + }, + }, + links => [ + { + rel => 'child', + href => "{subdir}", + }, + ], + }, + code => sub($param) { + my $result = []; + + my $attrs = PVE::API2::Plugins->method_attributes(); + + for my $info ($attrs->@*) { + next if !$info->{subclass}; + + my $subpath = $info->{match_re}->[0]; + + push $result->@*, { subdir => $subpath }; + } + + return $result; + }, +}); + +1; -- 2.47.3