runx-contracts 0.6.19

Shared Rust contract types for runx JSON and host protocol boundaries.
Documentation
//! Reference contracts: typed references to receipts, acts, and external surfaces.
use serde::{Deserialize, Serialize};

use crate::schema::{IsoDateTime, NonEmptyString, RunxSchema};

#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, RunxSchema)]
#[serde(rename_all = "snake_case")]
pub enum ReferenceType {
    GithubIssue,
    GithubPullRequest,
    GithubRepo,
    SlackThread,
    SentryEvent,
    ProviderThread,
    ProviderEvent,
    ProviderComment,
    TrackingItem,
    ChangeRequest,
    Repository,
    SupportTicket,
    Signal,
    Act,
    Receipt,
    GraphReceipt,
    Artifact,
    Verification,
    Harness,
    Host,
    Deployment,
    Surface,
    Target,
    Opportunity,
    ThesisAssessment,
    Selection,
    SkillBinding,
    TargetTransitionEntry,
    SelectionCycle,
    Decision,
    ReflectionEntry,
    FeedEntry,
    Principal,
    AuthorityProof,
    ScopeAdmission,
    Grant,
    Mandate,
    Credential,
    WebhookDelivery,
    RedactionPolicy,
    ExternalUrl,
}

impl ReferenceType {
    /// Stable snake_case wire name for this reference type. Matches the serde
    /// representation and the `runx:<name>:<id>` URI segment.
    pub fn as_str(&self) -> &'static str {
        match self {
            ReferenceType::GithubIssue => "github_issue",
            ReferenceType::GithubPullRequest => "github_pull_request",
            ReferenceType::GithubRepo => "github_repo",
            ReferenceType::SlackThread => "slack_thread",
            ReferenceType::SentryEvent => "sentry_event",
            ReferenceType::ProviderThread => "provider_thread",
            ReferenceType::ProviderEvent => "provider_event",
            ReferenceType::ProviderComment => "provider_comment",
            ReferenceType::TrackingItem => "tracking_item",
            ReferenceType::ChangeRequest => "change_request",
            ReferenceType::Repository => "repository",
            ReferenceType::SupportTicket => "support_ticket",
            ReferenceType::Signal => "signal",
            ReferenceType::Act => "act",
            ReferenceType::Receipt => "receipt",
            ReferenceType::GraphReceipt => "graph_receipt",
            ReferenceType::Artifact => "artifact",
            ReferenceType::Verification => "verification",
            ReferenceType::Harness => "harness",
            ReferenceType::Host => "host",
            ReferenceType::Deployment => "deployment",
            ReferenceType::Surface => "surface",
            ReferenceType::Target => "target",
            ReferenceType::Opportunity => "opportunity",
            ReferenceType::ThesisAssessment => "thesis_assessment",
            ReferenceType::Selection => "selection",
            ReferenceType::SkillBinding => "skill_binding",
            ReferenceType::TargetTransitionEntry => "target_transition_entry",
            ReferenceType::SelectionCycle => "selection_cycle",
            ReferenceType::Decision => "decision",
            ReferenceType::ReflectionEntry => "reflection_entry",
            ReferenceType::FeedEntry => "feed_entry",
            ReferenceType::Principal => "principal",
            ReferenceType::AuthorityProof => "authority_proof",
            ReferenceType::ScopeAdmission => "scope_admission",
            ReferenceType::Grant => "grant",
            ReferenceType::Mandate => "mandate",
            ReferenceType::Credential => "credential",
            ReferenceType::WebhookDelivery => "webhook_delivery",
            ReferenceType::RedactionPolicy => "redaction_policy",
            ReferenceType::ExternalUrl => "external_url",
        }
    }
}

#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, RunxSchema)]
#[serde(rename_all = "snake_case")]
pub enum ProofKind {
    EffectEvidence,
    EffectFinality,
    CredentialResolution,
}

#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, RunxSchema)]
#[serde(deny_unknown_fields)]
#[runx_schema(id = "runx.reference.v1")]
pub struct Reference {
    #[serde(rename = "type")]
    pub reference_type: ReferenceType,
    pub uri: NonEmptyString,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub provider: Option<NonEmptyString>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub locator: Option<NonEmptyString>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub label: Option<NonEmptyString>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub observed_at: Option<IsoDateTime>,
    #[serde(skip_serializing_if = "Option::is_none")]
    pub proof_kind: Option<ProofKind>,
}

impl Reference {
    /// A reference to an explicit URI, with no provider/locator/label/proof.
    pub fn with_uri(reference_type: ReferenceType, uri: impl Into<NonEmptyString>) -> Self {
        Self {
            reference_type,
            uri: uri.into(),
            provider: None,
            locator: None,
            label: None,
            observed_at: None,
            proof_kind: None,
        }
    }

    /// A reference whose URI is the canonical `runx:<type>:<id>` scheme.
    pub fn runx(reference_type: ReferenceType, id: &str) -> Self {
        let uri = format!("runx:{}:{id}", reference_type.as_str());
        Self::with_uri(reference_type, uri)
    }
}

#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, RunxSchema)]
#[serde(deny_unknown_fields)]
#[runx_schema(id = "runx.reference_link.v1")]
pub struct ReferenceLink {
    pub role: NonEmptyString,
    #[serde(rename = "ref")]
    pub reference: Reference,
}

#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize, RunxSchema)]
#[serde(deny_unknown_fields)]
pub struct ActRef {
    pub receipt_ref: Reference,
    pub act_id: NonEmptyString,
}