all lists on lists.proxmox.com
 help / color / mirror / Atom feed
* [pdm-devel] [PATCH datacenter-manager/proxmox/yew-comp 0/8] add better token support for pdm
@ 2025-10-03 14:21 Shannon Sterz
  2025-10-03 14:21 ` [pdm-devel] [PATCH proxmox 1/3] access-control: refactor api module to be more hirachical Shannon Sterz
                   ` (7 more replies)
  0 siblings, 8 replies; 13+ messages in thread
From: Shannon Sterz @ 2025-10-03 14:21 UTC (permalink / raw)
  To: pdm-devel

this series aims to add a ui to the pre-existing token support in pdm.
it also aims to get it more in-line with what other proxmox products
provide in terms of functionality.

the first two patches prepaer proxmox-access-control by refactoring it a
little bit. the next commit adds api endpoints for handling tokens.
these api endpoints are intentionally not providing any access control
permissions, so that users of this crate can set them themselves.

the next two commits improve the token panel in proxmox-yew-comp by
using the Clipboard API when copying values. the layout and
functionality of the dialog displaying the token secret is also
improved.

the final three patches integrate the token panel in pdm's ui. they also
refactor the api endpoints related token handling to use the new
endpoints from proxmxo-access-control and make sure the user delete
endpoint cleans up acls and tokens too.

Changelog
---------

changes since rfc:
- the commits implementing the basic token panel have already been
  applied by Thomas Lamprecht, thanks!
- moved adding `use` and `mod` statements for the token module to the
  right commit in the series (thanks @ Dominik Csapak)
- generate token secrets in the `token_shadow` module instead of in the
  token endpoints themselves (thanks @ Fabian Grünbichler)
- use a schema for the `regenerate` parameter of the update token
  endpoint (thanks @ Fabian Grünbichler)
- allow deleting comments via a `delete` property (thanks @ Fabian
  Grünbichler)
- make the token delete endpoint clean up token acls (thanks @ Fabian
  Grünbichler)
- improve copy to clipboard functionality to use the new Clipboard API
- improve the layout of the token secret dialog (thanks @ Thomas
  Lamprecht)


proxmox:

Shannon Sterz (3):
  access-control: refactor api module to be more hirachical
  access-control: move `ApiTokenSecret` to types module
  access-control: add api endpoints for handling tokens

 proxmox-access-control/Cargo.toml             |   1 +
 .../src/{api.rs => api/acl.rs}                |   0
 proxmox-access-control/src/api/mod.rs         |   8 +
 proxmox-access-control/src/api/tokens.rs      | 310 ++++++++++++++++++
 proxmox-access-control/src/token_shadow.rs    |  17 +-
 proxmox-access-control/src/types.rs           |  43 ++-
 6 files changed, 369 insertions(+), 10 deletions(-)
 rename proxmox-access-control/src/{api.rs => api/acl.rs} (100%)
 create mode 100644 proxmox-access-control/src/api/mod.rs
 create mode 100644 proxmox-access-control/src/api/tokens.rs


proxmox-yew-comp:

Shannon Sterz (2):
  utils/tfa add recover/token panel: add copy_text_to_clipboard function
  token panel: improve token secret dialog layout and hide password

 Cargo.toml                  |   2 +
 src/tfa/tfa_add_recovery.rs |  17 ++----
 src/token_panel.rs          | 117 ++++++++++++++++++------------------
 src/utils.rs                |  22 +++++++
 4 files changed, 89 insertions(+), 69 deletions(-)


proxmox-datacenter-manager:

Shannon Sterz (3):
  ui: add a token panel and a token acl edit menu in the permissions
    panel
  server: access: use token endpoints from proxmox-access-control
  server: clean up acl tree entries and api tokens when deleting users

 server/src/api/access/users.rs | 388 ++++++---------------------------
 ui/src/configuration/mod.rs    |  33 ++-
 2 files changed, 95 insertions(+), 326 deletions(-)


Summary over all repositories:
  12 files changed, 553 insertions(+), 405 deletions(-)

--
Generated by git-murpp 0.8.1


_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel

^ permalink raw reply	[flat|nested] 13+ messages in thread
* [pdm-devel] [RFC datacenter-manager/proxmox/yew-comp 0/8] token support for pdm
@ 2025-09-24 14:51 Shannon Sterz
  2025-09-24 14:51 ` [pdm-devel] [PATCH datacenter-manager 3/3] server: clean up acl tree entries and api tokens when deleting users Shannon Sterz
  0 siblings, 1 reply; 13+ messages in thread
From: Shannon Sterz @ 2025-09-24 14:51 UTC (permalink / raw)
  To: pdm-devel

this series adds a ui for adding, editing, removing and regenarating api
tokens to proxmox-yew-comp and integrates it into
proxmox-datacenter-manager. it also allows for adding acl entries for
them in the permissions panel.

sending this as an rfc as this series also factors out the token related
api endpoints into proxmox-access-control and i would like some feedback
on the approach there. i didn't want to add even more methods to the
AccessControlConfig here in order to not clutter it too much.

proxmox:

Shannon Sterz (3):
  access-control: refactor api module to be more hirachical
  access-control: move `ApiTokenSecret` to types module
  access-control: add api endpoints for handling tokens

 proxmox-access-control/Cargo.toml             |   2 +
 .../src/{api.rs => api/acl.rs}                |   0
 proxmox-access-control/src/api/mod.rs         |   8 +
 proxmox-access-control/src/api/tokens.rs      | 306 ++++++++++++++++++
 proxmox-access-control/src/token_shadow.rs    |   9 -
 proxmox-access-control/src/types.rs           |  29 +-
 6 files changed, 344 insertions(+), 10 deletions(-)
 rename proxmox-access-control/src/{api.rs => api/acl.rs} (100%)
 create mode 100644 proxmox-access-control/src/api/mod.rs
 create mode 100644 proxmox-access-control/src/api/tokens.rs


proxmox-yew-comp:

Shannon Sterz (2):
  utils/user_panel: factor out epoch_to_input_value helper
  token_panel: implement a token panel

 src/lib.rs         |   3 +
 src/token_panel.rs | 569 +++++++++++++++++++++++++++++++++++++++++++++
 src/user_panel.rs  |  21 +-
 src/utils.rs       |  19 ++
 4 files changed, 592 insertions(+), 20 deletions(-)
 create mode 100644 src/token_panel.rs


proxmox-datacenter-manager:

Shannon Sterz (3):
  ui: add a token panel and a token acl edit menu in the permissions
    panel
  server: access: use token endpoints from proxmox-access-control
  server: clean up acl tree entries and api tokens when deleting users

 server/src/api/access/users.rs | 388 ++++++---------------------------
 ui/src/configuration/mod.rs    |  33 ++-
 2 files changed, 95 insertions(+), 326 deletions(-)


Summary over all repositories:
  12 files changed, 1031 insertions(+), 356 deletions(-)

--
Generated by git-murpp 0.8.1


_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel


^ permalink raw reply	[flat|nested] 13+ messages in thread

end of thread, other threads:[~2025-10-03 14:21 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2025-10-03 14:21 [pdm-devel] [PATCH datacenter-manager/proxmox/yew-comp 0/8] add better token support for pdm Shannon Sterz
2025-10-03 14:21 ` [pdm-devel] [PATCH proxmox 1/3] access-control: refactor api module to be more hirachical Shannon Sterz
2025-10-03 14:21 ` [pdm-devel] [PATCH proxmox 2/3] access-control: move `ApiTokenSecret` to types module Shannon Sterz
2025-10-03 14:21 ` [pdm-devel] [PATCH proxmox 3/3] access-control: add api endpoints for handling tokens Shannon Sterz
2025-10-03 14:21 ` [pdm-devel] [PATCH yew-comp 1/2] utils/tfa add recover/token panel: add copy_text_to_clipboard function Shannon Sterz
2025-10-03 14:21 ` [pdm-devel] [PATCH yew-comp 2/2] token panel: improve token secret dialog layout and hide password Shannon Sterz
2025-10-03 14:21 ` [pdm-devel] [PATCH datacenter-manager 1/3] ui: add a token panel and a token acl edit menu in the permissions panel Shannon Sterz
2025-10-03 14:21 ` [pdm-devel] [PATCH datacenter-manager 2/3] server: access: use token endpoints from proxmox-access-control Shannon Sterz
2025-10-03 14:21 ` [pdm-devel] [PATCH datacenter-manager 3/3] server: clean up acl tree entries and api tokens when deleting users Shannon Sterz
  -- strict thread matches above, loose matches on Subject: below --
2025-09-24 14:51 [pdm-devel] [RFC datacenter-manager/proxmox/yew-comp 0/8] token support for pdm Shannon Sterz
2025-09-24 14:51 ` [pdm-devel] [PATCH datacenter-manager 3/3] server: clean up acl tree entries and api tokens when deleting users Shannon Sterz
2025-09-26  9:18   ` Fabian Grünbichler
2025-10-01 15:29     ` Shannon Sterz
2025-10-02 10:19       ` Fabian Grünbichler

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal