1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
use crate::publish_evidence::PublishEvidence;
use serde::{Deserialize, Serialize};
/// Three-group dispatch classification for publishers. Dispatch order is
/// always Assets → Manager → Submitter. The Submitter gate sits between
/// Manager and Submitter and short-circuits Submitter dispatch when any
/// `required: true` publisher in Assets or Manager failed (so a botched
/// homebrew tap push cannot burn a crates.io version slot).
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub enum PublisherGroup {
/// Writes uploadable bytes to systems we control end-to-end. Failures
/// are reversible via API delete (github-release, dockerhub,
/// artifactory, cloudsmith, blob).
Assets,
/// Writes to package-manager state. Server-side deletable, but
/// consumer machines may have already pulled the artifact
/// (homebrew, scoop, nix, krew, mcp, our-AUR repos, custom).
Manager,
/// Writes to a third-party submission queue, an immutable registry
/// slot, or a channel position we cannot reclaim. Gated behind the
/// Submitter gate. Rollback is informational-only for most members
/// (chocolatey, winget, snapcraft, upstream-AUR force-push), with one
/// exception: **cargo** has a real programmatic rollback. A multi-crate
/// `cargo publish` that succeeds on crate A then fails on crate B
/// records A and opts in via
/// [`Publisher::programmatic_rollback_on_failure`](crate::Publisher::programmatic_rollback_on_failure),
/// so the rollback path issues `cargo yank` for A even though the row's
/// outcome is `Failed`.
Submitter,
}
/// Per-publisher terminal state in [`PublishReport`]. Stage-level statuses
/// like `pending-moderation` / `pending-validation` / `announce-gated`
/// live on the run summary, not here.
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub enum PublisherOutcome {
/// `Publisher::run` returned `Ok` and the artifact is live.
Succeeded,
/// Publisher did not execute; see [`SkipReason`] for why.
Skipped(SkipReason),
/// `Publisher::run` returned `Err`; the carried `String` is the error
/// message (already rendered via `{:#}`).
Failed(String),
/// Initially [`PublisherOutcome::Succeeded`], then revert dispatch
/// successfully reverted the action.
RolledBack,
/// Initial run succeeded but revert dispatch failed; manual
/// intervention required. The carried `String` is the rollback
/// error message.
RollbackFailed(String),
/// Rollback was skipped because the required scope token env var
/// (per `Publisher::rollback_scope_needed`) is not set in the
/// environment.
RollbackSkippedNoScope,
/// Publisher succeeded but the version is queued for moderation (chocolatey, AUR-like).
PendingModeration,
/// Publisher succeeded but a downstream validation step is still polling (winget).
PendingValidation,
/// Publisher succeeded; rollback was skipped because `--rollback=none` was set.
PublishedNoRollback,
}
/// Reason a publisher was [`PublisherOutcome::Skipped`]. Serialized as
/// kebab-case (e.g. `"submitter-gated"`).
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash, Serialize, Deserialize)]
#[serde(rename_all = "kebab-case")]
pub enum SkipReason {
/// Skipped because a required Assets/Manager publisher failed; the
/// Submitter gate closed before this publisher could dispatch.
/// Preserves rollback safety on irreversible publishers.
SubmitterGated,
/// Publisher entry absent from the workspace config; the
/// `Publisher::run` impl was never invoked.
NotConfigured,
/// Pipeline ran in `--snapshot` mode; publishers do not fire.
Snapshot,
/// Pipeline ran in `--dry-run` mode; publishers do not fire.
DryRun,
/// Pipeline ran in `--nightly` mode and this publisher opts out of
/// nightly publishes (e.g. homebrew, scoop, aur, krew, nix, every
/// announcer — the nightly skip-list).
Nightly,
/// No artifact in the current crate scope matches this publisher's
/// applicability rules (e.g. top-level homebrew_casks declared
/// `binaries: [cfgd]` but the current per-crate iteration is on
/// `cfgd-core` and has no `cfgd` binary in scope; or cloudsmith
/// targets `.deb` / `.rpm` / `.apk` but the current crate produces
/// only library archives). Distinct from `NotConfigured` (where
/// the publisher block is absent entirely) and from
/// `PublisherOutcome::Failed` (where the publisher TRIED to run
/// and hit a real error). Required Manager publishers reporting
/// `NotApplicable` MUST NOT trigger the submitter gate — there is
/// nothing to roll back, and the absence of applicable artifacts
/// is not a publish failure.
NotApplicable,
}
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct PublisherResult {
pub name: String,
pub group: PublisherGroup,
pub required: bool,
pub outcome: PublisherOutcome,
pub evidence: Option<PublishEvidence>,
}
#[derive(Debug, Clone, Default, PartialEq, Eq, Serialize, Deserialize)]
pub struct PublishReport {
pub results: Vec<PublisherResult>,
#[serde(default)]
pub submitter_gated: bool,
#[serde(default)]
pub announce_gated: bool,
}
impl PublishReport {
pub fn required_failures(&self) -> usize {
self.results
.iter()
.filter(|r| r.required && matches!(r.outcome, PublisherOutcome::Failed(_)))
.count()
}
/// Returns true if any publisher in `group` failed.
///
/// When `required_only` is true, only publishers with `required: true` count.
/// The Submitter gate consults this with `required_only = true` against the
/// Assets and Manager groups to decide whether to skip Submitter dispatch.
pub fn any_failed(&self, group: PublisherGroup, required_only: bool) -> bool {
self.results.iter().any(|r| {
r.group == group
&& (!required_only || r.required)
&& matches!(r.outcome, PublisherOutcome::Failed(_))
})
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn empty_report_has_zero_failures() {
let r = PublishReport::default();
assert!(r.results.is_empty());
assert!(!r.submitter_gated);
assert_eq!(r.required_failures(), 0);
}
#[test]
fn required_failures_counts_only_required() {
let mut r = PublishReport::default();
r.results.push(PublisherResult {
name: "optional-pub".to_string(),
group: PublisherGroup::Manager,
required: false,
outcome: PublisherOutcome::Failed("boom".to_string()),
evidence: None,
});
r.results.push(PublisherResult {
name: "required-pub".to_string(),
group: PublisherGroup::Submitter,
required: true,
outcome: PublisherOutcome::Failed("boom".to_string()),
evidence: None,
});
assert_eq!(r.required_failures(), 1);
}
#[test]
fn skip_reason_serializes_as_kebab_case() {
let s = serde_json::to_string(&SkipReason::SubmitterGated).expect("serialize");
assert_eq!(s, "\"submitter-gated\"");
}
#[test]
fn publisher_group_serializes_pascal_case() {
let s = serde_json::to_string(&PublisherGroup::Submitter).expect("serialize");
assert_eq!(s, "\"Submitter\"");
}
#[test]
fn publisher_outcome_succeeded_serializes_as_bare_string() {
let s = serde_json::to_string(&PublisherOutcome::Succeeded).expect("serialize");
assert_eq!(s, "\"Succeeded\"");
}
#[test]
fn publisher_outcome_failed_serializes_as_externally_tagged() {
let s = serde_json::to_string(&PublisherOutcome::Failed("boom".into())).expect("serialize");
assert_eq!(s, r#"{"Failed":"boom"}"#);
}
#[test]
fn any_failed_returns_true_only_for_required_when_required_only_is_true() {
let mut r = PublishReport::default();
r.results.push(PublisherResult {
name: "required-mgr".to_string(),
group: PublisherGroup::Manager,
required: true,
outcome: PublisherOutcome::Failed("boom".to_string()),
evidence: None,
});
r.results.push(PublisherResult {
name: "optional-mgr".to_string(),
group: PublisherGroup::Manager,
required: false,
outcome: PublisherOutcome::Failed("boom".to_string()),
evidence: None,
});
assert!(r.any_failed(PublisherGroup::Manager, true));
let mut r = PublishReport::default();
r.results.push(PublisherResult {
name: "optional-mgr".to_string(),
group: PublisherGroup::Manager,
required: false,
outcome: PublisherOutcome::Failed("boom".to_string()),
evidence: None,
});
assert!(!r.any_failed(PublisherGroup::Manager, true));
assert!(r.any_failed(PublisherGroup::Manager, false));
}
}