Skip to main content

ApprovalGatedResolver

Struct ApprovalGatedResolver 

Source
pub struct ApprovalGatedResolver<R, F>{ /* private fields */ }
Expand description

Type-safe wrapper that enforces the approve-on-use policy before dispatching to an inner SecretResolver. This is what closes the loop on the P25 protocol — a resolver that is not gated through this wrapper makes the approve_on_use field a metadata-only theatrical control.

Construction takes three values:

  1. An inner SecretResolver (keychain, local-vault, 1Password, …).
  2. An Arc<SessionApprovalCache> — shared across every gated resolver in the process so the user only sees one prompt per session per path.
  3. A policy_for_path closure — typically reads the path’s approve_on_use field from the merged manifest. The closure shape avoids a hard dependency on devboy-storage in this crate.

On every resolve() call:

  • ApproveOnUsePolicy::Never → straight to the inner resolver.
  • ApproveOnUsePolicy::Session with a cache hit → straight to the inner resolver.
  • ApproveOnUsePolicy::Session without a cache hit, or ApproveOnUsePolicy::PerCall → return AliasResolverError::Backend with a message that names the path and the policy, so the caller can surface the approval dialog and retry.

Implementations§

Source§

impl<R, F> ApprovalGatedResolver<R, F>

Source

pub fn new( inner: R, cache: Arc<SessionApprovalCache>, policy_for_path: F, ) -> Self

Source

pub fn cache(&self) -> &Arc<SessionApprovalCache>

Underlying cache handle — exposed so the orchestration layer (which drives the approval dialog) can call record_session after the user clicks “Allow always (this session)”.

Trait Implementations§

Source§

impl<R, F> SecretResolver for ApprovalGatedResolver<R, F>

Source§

fn resolve(&self, path: &str) -> Result<SecretString, AliasResolverError>

Resolve path (the portion after @secret:) to its current value. Implementations consume the path verbatim; path validation belongs in the credential layer per ADR-020.

Auto Trait Implementations§

§

impl<R, F> Freeze for ApprovalGatedResolver<R, F>
where R: Freeze, F: Freeze,

§

impl<R, F> RefUnwindSafe for ApprovalGatedResolver<R, F>

§

impl<R, F> Send for ApprovalGatedResolver<R, F>

§

impl<R, F> Sync for ApprovalGatedResolver<R, F>

§

impl<R, F> Unpin for ApprovalGatedResolver<R, F>
where R: Unpin, F: Unpin,

§

impl<R, F> UnsafeUnpin for ApprovalGatedResolver<R, F>
where R: UnsafeUnpin, F: UnsafeUnpin,

§

impl<R, F> UnwindSafe for ApprovalGatedResolver<R, F>
where R: UnwindSafe, F: UnwindSafe,

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more