atproto-devtool 0.1.1

A multitool for the atproto developer ecosystem
Documentation
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
//! Identity stage for the labeler conformance suite.
//!
//! Performs DID document resolution and labeler record validation,
//! emitting a series of named checks for each identity-layer requirement.

use std::borrow::Cow;
use std::sync::Arc;

use atrium_api::app::bsky::labeler::defs::LabelerPolicies;
use atrium_api::app::bsky::labeler::service::RecordData as LabelerServiceRecordData;
use miette::{Diagnostic, NamedSource, SourceSpan};
use thiserror::Error;
use url::Url;

use crate::commands::test::labeler::pipeline::{AtIdentifier, LabelerTarget};
use crate::commands::test::labeler::report::{CheckResult, CheckStatus, Stage};
use crate::common::diagnostics::{
    pretty_json_for_display, span_at_line_column, span_for_quoted_literal,
};
use crate::common::identity::{
    AnyVerifyingKey, Did, DidDocument, DnsResolver, HttpClient, IdentityError, RawDidDocument,
    find_service, is_local_labeler_hostname, parse_multikey, resolve_did, resolve_handle,
};

/// The fetched labeler record with parsed policies and optional field lists.
struct FetchedLabelerRecord {
    /// Raw bytes of the record for diagnostics.
    bytes: Arc<[u8]>,
    /// Parsed policies from the record.
    policies: LabelerPolicies,
    /// Advertised reason types (if present).
    reason_types: Option<Vec<String>>,
    /// Advertised subject types (if present).
    subject_types: Option<Vec<String>>,
    /// Advertised subject collections (if present).
    subject_collections: Option<Vec<String>>,
}

/// Facts about the labeler's identity, populated only when all checks pass.
#[derive(Debug, Clone)]
pub struct IdentityFacts {
    /// The resolved DID.
    pub did: Did,
    /// The parsed DID document with raw bytes.
    pub raw_did_doc: RawDidDocument,
    /// The labeler's service endpoint URL.
    pub labeler_endpoint: Url,
    /// The PDS (personal data server) endpoint URL.
    pub pds_endpoint: Url,
    /// The ID of the signing key (from the verification method).
    pub signing_key_id: String,
    /// The signing key as its bare multibase-`z` multikey string.
    ///
    /// Used when rendering diagnostics that need to compare the current
    /// key against historic keys from PLC, which are surfaced in the same
    /// form.
    pub signing_key_multikey: String,
    /// The parsed signing key.
    pub signing_key: AnyVerifyingKey,
    /// Raw bytes of the labeler record (for diagnostics).
    pub labeler_record_bytes: Arc<[u8]>,
    /// The parsed labeler policies record.
    pub labeler_policies: LabelerPolicies,
    /// `app.bsky.labeler.service.reasonTypes` — the NSIDs of reason types
    /// this labeler accepts for `createReport`. `None` means "not advertised";
    /// the report stage treats `None` and `Some(vec![])` identically as
    /// "contract not published" per AC1.4.
    pub reason_types: Option<Vec<String>>,
    /// `app.bsky.labeler.service.subjectTypes` — the subject-type kinds
    /// (`account`, `record`, ...) this labeler accepts for reports.
    pub subject_types: Option<Vec<String>>,
    /// `app.bsky.labeler.service.subjectCollections` — NSIDs of record
    /// collections this labeler will accept reports about. Retained so
    /// future pollution-avoidance refinements can honor collection-level
    /// restrictions; not currently consumed by the report stage.
    pub subject_collections: Option<Vec<String>>,
}

/// Output from the identity stage: facts (if all checks pass) plus all check results.
#[derive(Debug)]
pub struct IdentityStageOutput {
    /// Facts populated only when all checks pass and no check is blocking.
    pub facts: Option<IdentityFacts>,
    /// All check results from this stage.
    pub results: Vec<CheckResult>,
}

/// Represents a check result that failed, with a diagnostic spanning a JSON key.
#[derive(Debug, Error, Diagnostic)]
#[error("{message}")]
#[diagnostic(code = "labeler::identity::labeler_service_present")]
struct ServiceMissingError {
    /// The error message.
    message: String,
    /// The raw DID document bytes.
    #[source_code]
    named_source: NamedSource<Arc<[u8]>>,
    /// The span highlighting the "service" key.
    #[label("service array")]
    span: Option<SourceSpan>,
}

/// Represents a labeler endpoint that is not a valid URL.
#[derive(Debug, Error, Diagnostic)]
#[error("{message}")]
#[diagnostic(code = "labeler::identity::labeler_endpoint_parseable")]
struct LabelerEndpointParseError {
    /// The error message.
    message: String,
    /// The raw DID document bytes.
    #[source_code]
    named_source: NamedSource<Arc<[u8]>>,
    /// The span highlighting the endpoint value.
    #[label("endpoint value")]
    span: Option<SourceSpan>,
}

/// Represents a labeler endpoint that does not use HTTPS.
#[derive(Debug, Error, Diagnostic)]
#[error("{message}")]
#[diagnostic(code = "labeler::identity::labeler_endpoint_is_https")]
struct NonHttpsLabelerEndpointError {
    /// The error message.
    message: String,
    /// The raw DID document bytes.
    #[source_code]
    named_source: NamedSource<Arc<[u8]>>,
    /// The span highlighting the endpoint value.
    #[label("endpoint value")]
    span: Option<SourceSpan>,
}

/// Represents an endpoint mismatch between resolved and provided.
#[derive(Debug, Error, Diagnostic)]
#[error("{message}")]
#[diagnostic(code = "labeler::identity::resolved_did_matches_flag")]
struct EndpointMismatchError {
    /// The error message.
    message: String,
    /// The raw DID document bytes.
    #[source_code]
    named_source: NamedSource<Arc<[u8]>>,
    /// The span highlighting the endpoint value.
    #[label("endpoint value")]
    span: Option<SourceSpan>,
}

/// Represents a missing verification method error.
#[derive(Debug, Error, Diagnostic)]
#[error("{message}")]
#[diagnostic(code = "labeler::identity::signing_key_present")]
struct SigningKeyMissingError {
    /// The error message.
    message: String,
    /// The raw DID document bytes.
    #[source_code]
    named_source: NamedSource<Arc<[u8]>>,
    /// The span highlighting the "verificationMethod" key.
    #[label("verificationMethod array")]
    span: Option<SourceSpan>,
}

/// Represents an unparseable signing key error.
#[derive(Debug, Error, Diagnostic)]
#[error("{message}")]
#[diagnostic(code = "labeler::identity::signing_key_present")]
struct SigningKeyUnparseableError {
    /// The error message.
    message: String,
    /// The raw DID document bytes.
    #[source_code]
    named_source: NamedSource<Arc<[u8]>>,
    /// The span highlighting the multikey.
    #[label("multikey")]
    span: Option<SourceSpan>,
}

/// Represents a missing PDS service error.
#[derive(Debug, Error, Diagnostic)]
#[error("{message}")]
#[diagnostic(code = "labeler::identity::pds_endpoint_present")]
struct PdsServiceMissingError {
    /// The error message.
    message: String,
    /// The raw DID document bytes.
    #[source_code]
    named_source: NamedSource<Arc<[u8]>>,
    /// The span highlighting the "service" key.
    #[label("service array")]
    span: Option<SourceSpan>,
}

/// Typed envelope for PDS getRecord response containing the labeler record.
///
/// The PDS wire format is `{uri, cid, value: <record>}`, where the record for
/// `app.bsky.labeler.service` is an `app.bsky.labeler.service` object whose
/// `policies` field holds the `LabelerPolicies` the downstream stage needs.
#[derive(serde::Deserialize)]
struct GetRecordResponse {
    /// The labeler service record.
    value: LabelerServiceRecordData,
    /// Optional URI of the record.
    #[serde(default)]
    #[expect(dead_code)]
    uri: Option<String>,
    /// Optional CID of the record.
    #[serde(default)]
    #[expect(dead_code)]
    cid: Option<String>,
}

/// Typed error for labeler record fetch failures with rich diagnostics.
#[derive(Debug, Error)]
enum FetchRecordError {
    /// Network failure fetching labeler record.
    #[error("Network failure fetching labeler record")]
    Network(#[from] IdentityError),

    /// PDS returned 404: labeler record not found.
    #[error("PDS returned 404: labeler record not found")]
    NotFound,

    /// PDS returned unexpected HTTP status.
    #[error("PDS returned HTTP {status}")]
    HttpStatus { status: u16, body: Arc<[u8]> },

    /// Failed to parse PDS getRecord envelope.
    ///
    /// `display_body` is the bytes used for the miette source display: it is
    /// the pretty-printed form of the response if pretty-printing succeeded,
    /// and the raw response otherwise. `display_line` / `display_column` are
    /// 1-based coordinates within `display_body` pointing at the parse error.
    #[error("Failed to parse PDS getRecord envelope: {source}")]
    ParseEnvelope {
        display_body: Arc<[u8]>,
        display_line: usize,
        display_column: usize,
        #[source]
        source: serde_json::Error,
    },
}

/// Diagnostic wrapper for labeler record fetch errors with rich context.
#[derive(Debug, Error, Diagnostic)]
#[error("{message}")]
#[diagnostic(code = "labeler::identity::labeler_record_fetched")]
struct LabelerRecordFetchError {
    /// The error message.
    message: String,
    /// The response body (for diagnostics).
    #[source_code]
    named_source: Option<NamedSource<Arc<[u8]>>>,
    /// Optional span pointing to a relevant part of the response.
    #[label("response")]
    span: Option<SourceSpan>,
}

/// Represents an empty labeler policies error.
#[derive(Debug, Error, Diagnostic)]
#[error("{message}")]
#[diagnostic(code = "labeler::identity::labeler_record_policies_nonempty")]
struct EmptyPoliciesError {
    /// The error message.
    message: String,
    /// The raw labeler record bytes.
    #[source_code]
    named_source: NamedSource<Arc<[u8]>>,
    /// The span highlighting the "labelValues" key.
    #[label("labelValues is empty")]
    span: Option<SourceSpan>,
}

/// Checks emitted by the identity stage.
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum Check {
    /// Target handle or DID resolution.
    TargetResolved,
    /// DID document fetch and parse.
    DidDocumentFetched,
    /// `#atproto_labeler` service entry present in DID document.
    LabelerServicePresent,
    /// Labeler endpoint is a parseable URL.
    LabelerEndpointParseable,
    /// Labeler endpoint uses HTTPS.
    LabelerEndpointIsHttps,
    /// Resolved DID matches the explicit `--did` flag.
    ResolvedDidMatchesFlag,
    /// `#atproto_label` signing key present in DID document.
    SigningKeyPresent,
    /// `#atproto_pds` service entry present in DID document.
    PdsEndpointPresent,
    /// Labeler record fetched from PDS.
    LabelerRecordFetched,
    /// Labeler record `policies.labelValues` is non-empty.
    LabelerRecordPoliciesNonempty,
}

impl Check {
    /// All identity checks in pipeline order.
    pub const ALL: &[Check] = &[
        Check::TargetResolved,
        Check::DidDocumentFetched,
        Check::LabelerServicePresent,
        Check::LabelerEndpointParseable,
        Check::LabelerEndpointIsHttps,
        Check::ResolvedDidMatchesFlag,
        Check::SigningKeyPresent,
        Check::PdsEndpointPresent,
        Check::LabelerRecordFetched,
        Check::LabelerRecordPoliciesNonempty,
    ];

    /// Stable check ID string used in `CheckResult.id`.
    pub fn id(self) -> &'static str {
        match self {
            Check::TargetResolved => "identity::target_resolved",
            Check::DidDocumentFetched => "identity::did_document_fetched",
            Check::LabelerServicePresent => "identity::labeler_service_present",
            Check::LabelerEndpointParseable => "identity::labeler_endpoint_parseable",
            Check::LabelerEndpointIsHttps => "identity::labeler_endpoint_is_https",
            Check::ResolvedDidMatchesFlag => "identity::resolved_did_matches_flag",
            Check::SigningKeyPresent => "identity::signing_key_present",
            Check::PdsEndpointPresent => "identity::pds_endpoint_present",
            Check::LabelerRecordFetched => "identity::labeler_record_fetched",
            Check::LabelerRecordPoliciesNonempty => "identity::labeler_record_policies_nonempty",
        }
    }

    /// Human-readable summary (same for every status in the identity stage).
    fn summary_str(self) -> &'static str {
        match self {
            Check::TargetResolved => "target resolution",
            Check::DidDocumentFetched => "DID document fetch",
            Check::LabelerServicePresent => "labeler service entry",
            Check::LabelerEndpointParseable => "labeler endpoint URL",
            Check::LabelerEndpointIsHttps => "labeler endpoint scheme",
            Check::ResolvedDidMatchesFlag => "resolved DID matches --did flag",
            Check::SigningKeyPresent => "signing key entry",
            Check::PdsEndpointPresent => "PDS endpoint entry",
            Check::LabelerRecordFetched => "labeler record fetch",
            Check::LabelerRecordPoliciesNonempty => "labeler record policy list",
        }
    }

    pub fn pass(self) -> CheckResult {
        CheckResult {
            id: self.id(),
            stage: Stage::Identity,
            status: CheckStatus::Pass,
            summary: Cow::Borrowed(self.summary_str()),
            diagnostic: None,
            skipped_reason: None,
        }
    }

    pub fn spec_violation(
        self,
        diagnostic: Option<Box<dyn miette::Diagnostic + Send + Sync>>,
    ) -> CheckResult {
        CheckResult {
            id: self.id(),
            stage: Stage::Identity,
            status: CheckStatus::SpecViolation,
            summary: Cow::Borrowed(self.summary_str()),
            diagnostic,
            skipped_reason: None,
        }
    }

    pub fn network_error(
        self,
        diagnostic: Option<Box<dyn miette::Diagnostic + Send + Sync>>,
    ) -> CheckResult {
        CheckResult {
            id: self.id(),
            stage: Stage::Identity,
            status: CheckStatus::NetworkError,
            summary: Cow::Borrowed(self.summary_str()),
            diagnostic,
            skipped_reason: None,
        }
    }

    pub fn skip(self, reason: impl Into<Cow<'static, str>>) -> CheckResult {
        CheckResult {
            id: self.id(),
            stage: Stage::Identity,
            status: CheckStatus::Skipped,
            summary: Cow::Borrowed(self.summary_str()),
            diagnostic: None,
            skipped_reason: Some(reason.into()),
        }
    }

    pub fn advisory(
        self,
        diagnostic: Option<Box<dyn miette::Diagnostic + Send + Sync>>,
    ) -> CheckResult {
        CheckResult {
            id: self.id(),
            stage: Stage::Identity,
            status: CheckStatus::Advisory,
            summary: Cow::Borrowed(self.summary_str()),
            diagnostic,
            skipped_reason: None,
        }
    }

    /// Skip this check because a prerequisite check failed.
    pub fn blocked_by(self, prerequisite: Check) -> CheckResult {
        self.skip(format!("blocked by {}", prerequisite.id()))
    }
}

/// Run the identity stage of the labeler conformance suite.
pub async fn run(
    target: &LabelerTarget,
    http: &dyn HttpClient,
    dns: &dyn DnsResolver,
) -> IdentityStageOutput {
    let mut results = Vec::new();
    let mut block_facts = false;

    // Special case: endpoint-only-no-did skips all identity checks.
    if matches!(target, LabelerTarget::Endpoint { did: None, .. }) {
        for check in Check::ALL {
            results.push(check.skip("no DID supplied; run with a handle, a DID, or --did <did>"));
        }
        return IdentityStageOutput {
            facts: None,
            results,
        };
    }

    // Check::TargetResolved — resolve handle or DID.
    let resolved_did: Option<Did> = match target {
        LabelerTarget::Identified {
            identifier,
            explicit_did: _,
        } => resolve_identifier(identifier, http, dns, &mut results).await,
        LabelerTarget::Endpoint { did, .. } => {
            // DID was explicitly provided via flag; treat as resolved.
            results.push(Check::TargetResolved.pass());
            did.clone()
        }
    };

    let Some(did) = resolved_did else {
        // Resolution failed; block all downstream checks.
        for check in &Check::ALL[1..] {
            results.push(check.blocked_by(Check::TargetResolved));
        }
        return IdentityStageOutput {
            facts: None,
            results,
        };
    };

    // Check::DidDocumentFetched — fetch the DID document.
    let raw_did_doc: Option<RawDidDocument> = match resolve_did(&did, http).await {
        Ok(doc) => {
            results.push(Check::DidDocumentFetched.pass());
            Some(doc)
        }
        Err(e) => {
            let result = match &e {
                IdentityError::DidDocumentDecodeFailed {
                    source_name,
                    source_bytes,
                    cause,
                } => {
                    // Pretty-print if possible so the display body wraps across
                    // lines; recompute the serde_json error location against
                    // the pretty body when it still errors there.
                    let display_body = pretty_json_for_display(source_bytes.as_ref());
                    let (line, column) =
                        match serde_json::from_slice::<serde_json::Value>(display_body.as_ref()) {
                            Err(pretty_err) => (pretty_err.line(), pretty_err.column()),
                            Ok(_) => (cause.line(), cause.column()),
                        };
                    let span = span_at_line_column(display_body.as_ref(), line, column);
                    let diag: Box<dyn Diagnostic + Send + Sync> =
                        Box::new(DidDocumentDecodeError {
                            message: format!("DID document JSON decode failed: {e}"),
                            named_source: NamedSource::new(source_name.clone(), display_body),
                            span,
                        });
                    Check::DidDocumentFetched.spec_violation(Some(diag))
                }
                IdentityError::HttpTransport(_) => Check::DidDocumentFetched.network_error(None),
                _ => Check::DidDocumentFetched.spec_violation(None),
            };
            block_facts = true;
            results.push(result);
            None
        }
    };

    let raw_did_doc = match raw_did_doc {
        Some(doc) => doc,
        None => {
            // All remaining checks blocked by missing DID document.
            for check in &Check::ALL[2..] {
                results.push(check.blocked_by(Check::DidDocumentFetched));
            }
            return IdentityStageOutput {
                facts: None,
                results,
            };
        }
    };

    // Pretty-print the DID document bytes once so that every diagnostic we
    // attach below embeds a readable, line-wrapped payload instead of the
    // single-line blob real PLC directories return. Spans for keys/values
    // are re-computed against this pretty form so miette's caret lands in
    // the right place.
    let display_doc_bytes = pretty_json_for_display(raw_did_doc.source_bytes.as_ref());

    // Check::LabelerServicePresent.
    let labeler_service =
        match find_service(&raw_did_doc.parsed, "atproto_labeler", "AtprotoLabeler") {
            Some(svc) => {
                results.push(Check::LabelerServicePresent.pass());
                Some(svc.clone())
            }
            None => {
                let span = span_for_quoted_literal(display_doc_bytes.as_ref(), "service");
                let diag = Box::new(ServiceMissingError {
                    message: "DID document is missing the #atproto_labeler service entry"
                        .to_string(),
                    named_source: NamedSource::new(
                        raw_did_doc.source_name.clone(),
                        display_doc_bytes.clone(),
                    ),
                    span,
                });
                block_facts = true;
                results.push(Check::LabelerServicePresent.spec_violation(Some(diag)));
                None
            }
        };

    // Check::LabelerEndpointParseable and Check::LabelerEndpointIsHttps.
    // If the service is missing, both checks are blocked. If the URL is
    // unparseable, the scheme check is blocked by the parseable check.
    //
    // `mut` so the ResolvedDidMatchesFlag branch below can substitute the
    // user's local override URL into `IdentityFacts.labeler_endpoint` when
    // a local `--target` endpoint disagrees with the DID document.
    let mut labeler_endpoint: Option<Url> = match labeler_service {
        None => {
            results.push(Check::LabelerEndpointParseable.blocked_by(Check::LabelerServicePresent));
            results.push(Check::LabelerEndpointIsHttps.blocked_by(Check::LabelerServicePresent));
            None
        }
        Some(svc) => match Url::parse(&svc.service_endpoint) {
            Ok(url) => {
                results.push(Check::LabelerEndpointParseable.pass());
                // HTTPS is the default accepted scheme. Plaintext HTTP is also
                // accepted when the hostname is local (loopback, RFC 1918,
                // `.local` mDNS) so developers can target a labeler running on
                // their own machine or LAN.
                let is_https = url.scheme() == "https";
                let is_http_local = url.scheme() == "http" && is_local_labeler_hostname(&url);
                if !is_https && !is_http_local {
                    let span =
                        span_for_quoted_literal(display_doc_bytes.as_ref(), &svc.service_endpoint);
                    let diag = Box::new(NonHttpsLabelerEndpointError {
                        message: format!(
                            "Labeler endpoint must use HTTPS (or HTTP with a local hostname), got: {}",
                            svc.service_endpoint
                        ),
                        named_source: NamedSource::new(
                            raw_did_doc.source_name.clone(),
                            display_doc_bytes.clone(),
                        ),
                        span,
                    });
                    block_facts = true;
                    results.push(Check::LabelerEndpointIsHttps.spec_violation(Some(diag)));
                    None
                } else {
                    results.push(Check::LabelerEndpointIsHttps.pass());
                    Some(url)
                }
            }
            Err(_) => {
                let span =
                    span_for_quoted_literal(display_doc_bytes.as_ref(), &svc.service_endpoint);
                let diag = Box::new(LabelerEndpointParseError {
                    message: format!(
                        "Labeler endpoint is not a valid URL: {}",
                        svc.service_endpoint
                    ),
                    named_source: NamedSource::new(
                        raw_did_doc.source_name.clone(),
                        display_doc_bytes.clone(),
                    ),
                    span,
                });
                block_facts = true;
                results.push(Check::LabelerEndpointParseable.spec_violation(Some(diag)));
                results.push(
                    Check::LabelerEndpointIsHttps.blocked_by(Check::LabelerEndpointParseable),
                );
                None
            }
        },
    };

    // Check::ResolvedDidMatchesFlag.
    // For Endpoint { did: Some(_), url }, cross-check endpoint against DID doc.
    // For Identified { explicit_did: Some(_), .. }, cross-check explicit DID against resolved DID.
    match (target, &labeler_endpoint) {
        (
            LabelerTarget::Endpoint {
                url: flag_url,
                did: Some(_),
            },
            Some(resolved_endpoint),
        ) => {
            if endpoints_match(flag_url, resolved_endpoint) {
                results.push(Check::ResolvedDidMatchesFlag.pass());
            } else {
                // Search for the raw endpoint string from the DID doc's service entry.
                let service =
                    find_service(&raw_did_doc.parsed, "atproto_labeler", "AtprotoLabeler");
                let span = service.and_then(|svc| {
                    span_for_quoted_literal(display_doc_bytes.as_ref(), &svc.service_endpoint)
                });

                if is_local_labeler_hostname(flag_url) {
                    // The user is targeting a local copy of the labeler. The
                    // production DID document won't advertise a localhost URL,
                    // so a mismatch here is expected — surface it as Advisory
                    // so downstream stages still run, and substitute the local
                    // URL into IdentityFacts so HTTP/subscription/report all
                    // talk to the local copy instead of the published endpoint.
                    let diag = Box::new(EndpointMismatchError {
                        message: format!(
                            "DID document endpoint ({resolved_endpoint}) does not match local override ({flag_url}); using the local URL for the remaining stages"
                        ),
                        named_source: NamedSource::new(
                            raw_did_doc.source_name.clone(),
                            display_doc_bytes.clone(),
                        ),
                        span,
                    });
                    results.push(Check::ResolvedDidMatchesFlag.advisory(Some(diag)));
                    labeler_endpoint = Some(flag_url.clone());
                } else {
                    let diag = Box::new(EndpointMismatchError {
                        message: format!(
                            "DID document endpoint ({resolved_endpoint}) does not match provided endpoint ({flag_url})"
                        ),
                        named_source: NamedSource::new(
                            raw_did_doc.source_name.clone(),
                            display_doc_bytes.clone(),
                        ),
                        span,
                    });
                    block_facts = true;
                    results.push(Check::ResolvedDidMatchesFlag.spec_violation(Some(diag)));
                }
            }
        }
        (
            LabelerTarget::Identified {
                identifier: _,
                explicit_did: Some(explicit),
            },
            _,
        ) => {
            if explicit != &did {
                block_facts = true;
                results.push(Check::ResolvedDidMatchesFlag.spec_violation(None));
            } else {
                results.push(Check::ResolvedDidMatchesFlag.pass());
            }
        }
        _ => {
            // Check skipped if endpoint is not provided with a DID, or endpoint is not valid.
            results.push(Check::ResolvedDidMatchesFlag.skip("no endpoint override provided"));
        }
    }

    // Check::SigningKeyPresent.
    let signing_key_ids: Option<(String, String)> = match find_signing_key(&raw_did_doc.parsed) {
        Some((id, multikey_str)) => match parse_multikey(&multikey_str) {
            Ok(_) => {
                results.push(Check::SigningKeyPresent.pass());
                Some((id, multikey_str))
            }
            Err(e) => {
                let span = span_for_quoted_literal(display_doc_bytes.as_ref(), &multikey_str);
                let diag = Box::new(SigningKeyUnparseableError {
                    message: format!("Failed to parse signing key multikey: {e}"),
                    named_source: NamedSource::new(
                        raw_did_doc.source_name.clone(),
                        display_doc_bytes.clone(),
                    ),
                    span,
                });
                block_facts = true;
                results.push(Check::SigningKeyPresent.spec_violation(Some(diag)));
                None
            }
        },
        None => {
            let span = span_for_quoted_literal(display_doc_bytes.as_ref(), "verificationMethod");
            let diag = Box::new(SigningKeyMissingError {
                message: "DID document is missing the #atproto_label signing key".to_string(),
                named_source: NamedSource::new(
                    raw_did_doc.source_name.clone(),
                    display_doc_bytes.clone(),
                ),
                span,
            });
            block_facts = true;
            results.push(Check::SigningKeyPresent.spec_violation(Some(diag)));
            None
        }
    };

    // Re-parse the signing key for later use if it succeeded.
    let signing_key = signing_key_ids.as_ref().and_then(|_| {
        raw_did_doc
            .parsed
            .verification_method
            .as_ref()
            .and_then(|vms| {
                vms.iter()
                    .find(|vm| {
                        vm.id.rsplit_once('#').map(|(_, f)| f).unwrap_or("") == "atproto_label"
                    })
                    .and_then(|vm| vm.public_key_multibase.as_deref())
            })
            .and_then(|mk| parse_multikey(mk).ok().map(|parsed| parsed.verifying_key))
    });

    // Check::PdsEndpointPresent.
    let pds_endpoint: Option<Url> = match find_service(
        &raw_did_doc.parsed,
        "atproto_pds",
        "AtprotoPersonalDataServer",
    ) {
        Some(svc) => match Url::parse(&svc.service_endpoint) {
            Ok(url) => {
                results.push(Check::PdsEndpointPresent.pass());
                Some(url)
            }
            Err(_) => {
                let span =
                    span_for_quoted_literal(display_doc_bytes.as_ref(), &svc.service_endpoint);
                let diag = Box::new(PdsServiceMissingError {
                    message: format!("PDS endpoint is not a valid URL: {}", svc.service_endpoint),
                    named_source: NamedSource::new(
                        raw_did_doc.source_name.clone(),
                        display_doc_bytes.clone(),
                    ),
                    span,
                });
                block_facts = true;
                results.push(Check::PdsEndpointPresent.spec_violation(Some(diag)));
                None
            }
        },
        None => {
            let span = span_for_quoted_literal(display_doc_bytes.as_ref(), "service");
            let diag = Box::new(PdsServiceMissingError {
                message: "DID document is missing the #atproto_pds service entry".to_string(),
                named_source: NamedSource::new(
                    raw_did_doc.source_name.clone(),
                    display_doc_bytes.clone(),
                ),
                span,
            });
            block_facts = true;
            results.push(Check::PdsEndpointPresent.spec_violation(Some(diag)));
            None
        }
    };

    // Check::LabelerRecordFetched.
    let fetched_record: Option<FetchedLabelerRecord> = match &pds_endpoint {
        None => {
            results.push(Check::LabelerRecordFetched.blocked_by(Check::PdsEndpointPresent));
            None
        }
        Some(pds_url) => match fetch_labeler_record(&did, pds_url, http).await {
            Ok(record) => {
                results.push(Check::LabelerRecordFetched.pass());
                Some(record)
            }
            Err(e) => {
                let (check_status, message, named_source, span) = match &e {
                    FetchRecordError::Network(_) => {
                        (CheckStatus::NetworkError, e.to_string(), None, None)
                    }
                    FetchRecordError::NotFound => {
                        (CheckStatus::SpecViolation, e.to_string(), None, None)
                    }
                    FetchRecordError::HttpStatus { .. } => {
                        (CheckStatus::SpecViolation, e.to_string(), None, None)
                    }
                    FetchRecordError::ParseEnvelope {
                        display_body,
                        display_line,
                        display_column,
                        source,
                    } => {
                        let src = NamedSource::new("PDS response", display_body.clone());
                        let span = span_at_line_column(
                            display_body.as_ref(),
                            *display_line,
                            *display_column,
                        );
                        (
                            CheckStatus::SpecViolation,
                            format!("Failed to parse PDS getRecord envelope: {source}"),
                            Some(src),
                            Some(span),
                        )
                    }
                };
                let diag = Box::new(LabelerRecordFetchError {
                    message,
                    named_source,
                    span,
                });
                block_facts = true;
                let base = match check_status {
                    CheckStatus::NetworkError => {
                        Check::LabelerRecordFetched.network_error(Some(diag))
                    }
                    _ => Check::LabelerRecordFetched.spec_violation(Some(diag)),
                };
                results.push(base);
                None
            }
        },
    };

    // Check::LabelerRecordPoliciesNonempty.
    match &fetched_record {
        None => {
            results
                .push(Check::LabelerRecordPoliciesNonempty.blocked_by(Check::LabelerRecordFetched));
        }
        Some(record) => {
            if record.policies.label_values.is_empty() {
                let display_bytes = pretty_json_for_display(record.bytes.as_ref());
                let span = span_for_quoted_literal(display_bytes.as_ref(), "labelValues");
                let diag = Box::new(EmptyPoliciesError {
                    message: "Labeler record policies.labelValues is empty".to_string(),
                    named_source: NamedSource::new("labeler record", display_bytes),
                    span,
                });
                block_facts = true;
                results.push(Check::LabelerRecordPoliciesNonempty.spec_violation(Some(diag)));
            } else {
                results.push(Check::LabelerRecordPoliciesNonempty.pass());
            }
        }
    }

    // Populate facts only if no checks blocked.
    let facts = if !block_facts {
        match (
            labeler_endpoint,
            pds_endpoint,
            signing_key_ids,
            signing_key,
            fetched_record,
        ) {
            (Some(le), Some(pe), Some((ski, skm)), Some(sk), Some(record)) => Some(IdentityFacts {
                did,
                raw_did_doc,
                labeler_endpoint: le,
                pds_endpoint: pe,
                signing_key_id: ski,
                signing_key_multikey: skm,
                signing_key: sk,
                labeler_record_bytes: record.bytes,
                labeler_policies: record.policies,
                reason_types: record.reason_types,
                subject_types: record.subject_types,
                subject_collections: record.subject_collections,
            }),
            _ => None,
        }
    } else {
        None
    };

    IdentityStageOutput { facts, results }
}

/// Helper to resolve an identifier (handle or DID) to a DID.
async fn resolve_identifier(
    identifier: &AtIdentifier,
    http: &dyn HttpClient,
    dns: &dyn DnsResolver,
    results: &mut Vec<CheckResult>,
) -> Option<Did> {
    // Note: explicit_did vs resolved DID mismatch is checked separately as
    // Check::ResolvedDidMatchesFlag in the main run() function.
    match identifier {
        AtIdentifier::Handle(handle) => match resolve_handle(handle, http, dns).await {
            Ok(did) => {
                results.push(Check::TargetResolved.pass());
                Some(did)
            }
            Err(e) => {
                let is_network = matches!(
                    e,
                    IdentityError::HttpTransport(_)
                        | IdentityError::DnsLookupFailed { .. }
                        | IdentityError::HandleUnresolvable { .. }
                );
                if is_network {
                    results.push(Check::TargetResolved.network_error(None));
                } else {
                    results.push(Check::TargetResolved.spec_violation(None));
                }
                None
            }
        },
        AtIdentifier::Did(did) => {
            // If an explicit DID is also provided, that's an error (but already caught in parsing).
            results.push(Check::TargetResolved.pass());
            Some(did.clone())
        }
    }
}

/// Helper to find the signing key in a DID document.
fn find_signing_key(doc: &DidDocument) -> Option<(String, String)> {
    let vms = doc.verification_method.as_ref()?;
    for vm in vms {
        if vm.id.rsplit_once('#').map(|(_, f)| f).unwrap_or("") == "atproto_label" {
            let multikey = vm.public_key_multibase.as_ref()?;
            return Some((vm.id.clone(), multikey.clone()));
        }
    }
    None
}

/// Helper to compare two endpoints, normalizing scheme and authority.
fn endpoints_match(url1: &Url, url2: &Url) -> bool {
    url1.scheme() == url2.scheme()
        && url1.host_str() == url2.host_str()
        && url1.port() == url2.port()
}

/// Fetch the labeler record from the PDS using the HTTP client seam.
/// Returns a fetched labeler record with parsed policies and optional field lists on success.
async fn fetch_labeler_record(
    did: &Did,
    pds_endpoint: &Url,
    http: &dyn HttpClient,
) -> Result<FetchedLabelerRecord, FetchRecordError> {
    // Build the XRPC request URL.
    let mut url = pds_endpoint.clone();
    url.set_path("/xrpc/com.atproto.repo.getRecord");
    let query = format!(
        "repo={}&collection=app.bsky.labeler.service&rkey=self",
        did.0
    );
    url.set_query(Some(&query));

    // Perform the HTTP request using the seam.
    let (status, body) = match http.get_bytes(&url).await {
        Ok((status, body)) => (status, body),
        Err(e) => return Err(FetchRecordError::Network(e)),
    };

    let body_arc: Arc<[u8]> = Arc::from(body);

    // Handle HTTP status codes.
    match status {
        404 => Err(FetchRecordError::NotFound),
        200 => {
            // Try to deserialize the response body into the typed envelope.
            // The response is expected to have
            // `{uri, cid, value: <app.bsky.labeler.service record>}`.
            match serde_json::from_slice::<GetRecordResponse>(body_arc.as_ref()) {
                Ok(response) => {
                    let reason_types = response.value.reason_types.as_ref().map(|v| v.to_vec());
                    let subject_types = response.value.subject_types.as_ref().map(|v| v.to_vec());
                    let subject_collections = response
                        .value
                        .subject_collections
                        .as_ref()
                        .map(|v| v.iter().map(|n| n.to_string()).collect::<Vec<String>>());
                    Ok(FetchedLabelerRecord {
                        bytes: body_arc,
                        policies: response.value.policies,
                        reason_types,
                        subject_types,
                        subject_collections,
                    })
                }
                Err(raw_err) => {
                    // Pretty-print the body so miette's source display wraps
                    // across lines, then re-parse against the pretty form to
                    // get a fresh line/column that points into it. If the
                    // pretty body round-trips (shouldn't happen, but possible
                    // if serde_json's error was spurious) or if the body isn't
                    // valid JSON at all, fall back to the raw body coordinates.
                    let display_body = pretty_json_for_display(body_arc.as_ref());
                    let (display_line, display_column, source) =
                        match serde_json::from_slice::<GetRecordResponse>(display_body.as_ref()) {
                            Err(pretty_err) => (pretty_err.line(), pretty_err.column(), pretty_err),
                            Ok(_) => (raw_err.line(), raw_err.column(), raw_err),
                        };
                    Err(FetchRecordError::ParseEnvelope {
                        display_body,
                        display_line,
                        display_column,
                        source,
                    })
                }
            }
        }
        _ => Err(FetchRecordError::HttpStatus {
            status,
            body: body_arc,
        }),
    }
}

/// Helper diagnostic for DID document decode errors.
#[derive(Debug, Error, Diagnostic)]
#[error("{message}")]
#[diagnostic(code = "labeler::identity::did_document_fetched")]
struct DidDocumentDecodeError {
    message: String,
    #[source_code]
    named_source: NamedSource<Arc<[u8]>>,
    #[label("JSON parse error")]
    span: SourceSpan,
}

#[cfg(test)]
mod tests {
    use super::*;
    use async_trait::async_trait;

    /// Fake HTTP client for unit tests.
    struct FakeHttpClient {
        responses: std::collections::HashMap<String, (u16, Vec<u8>)>,
    }

    impl FakeHttpClient {
        fn new() -> Self {
            Self {
                responses: std::collections::HashMap::new(),
            }
        }

        fn add_response(&mut self, url: impl Into<String>, status: u16, body: Vec<u8>) {
            self.responses.insert(url.into(), (status, body));
        }
    }

    #[async_trait]
    impl HttpClient for FakeHttpClient {
        async fn get_bytes(&self, url: &Url) -> Result<(u16, Vec<u8>), IdentityError> {
            let url_str = url.as_str();
            self.responses
                .get(url_str)
                .cloned()
                .ok_or_else(|| IdentityError::DidResolutionFailed {
                    status: 404,
                    body: "Not found".to_string(),
                })
        }
    }

    #[tokio::test]
    async fn identity_retains_reason_and_subject_types() {
        // Load the fixture that includes reasonTypes and subjectTypes.
        let fixture_path = std::path::PathBuf::from(env!("CARGO_MANIFEST_DIR")).join(
            "tests/fixtures/labeler/identity/report_stage_contract_present/labeler_record.json",
        );
        let labeler_record_bytes = std::fs::read(&fixture_path).expect("fixture file exists");

        // Create a fake HTTP client and seed it with the fixture.
        let mut http = FakeHttpClient::new();
        let pds_url = Url::parse("https://pds.example.com").unwrap();
        let did = Did("did:plc:test123456789012345678901234".to_string());

        // The query string format expected by fetch_labeler_record.
        let query = format!(
            "repo={}&collection=app.bsky.labeler.service&rkey=self",
            did.0
        );
        let mut fetch_url = pds_url.clone();
        fetch_url.set_path("/xrpc/com.atproto.repo.getRecord");
        fetch_url.set_query(Some(&query));

        http.add_response(fetch_url.as_str(), 200, labeler_record_bytes.clone());

        // Call fetch_labeler_record.
        let result = fetch_labeler_record(&did, &pds_url, &http).await;

        // Assert success and check the returned fields.
        assert!(result.is_ok(), "fetch_labeler_record should succeed");
        let record = result.unwrap();

        // Verify reason_types is present and non-empty.
        assert!(record.reason_types.is_some(), "reason_types should be Some");
        let rt = record.reason_types.unwrap();
        assert_eq!(rt.len(), 2, "reason_types should have 2 entries");
        assert!(
            rt.iter().any(|r| r.contains("reasonSpam")),
            "should include reasonSpam"
        );

        // Verify subject_types is present and non-empty.
        assert!(
            record.subject_types.is_some(),
            "subject_types should be Some"
        );
        let st = record.subject_types.unwrap();
        assert_eq!(st.len(), 2, "subject_types should have 2 entries");
        assert!(st.iter().any(|s| s == "account"), "should include account");
        assert!(st.iter().any(|s| s == "record"), "should include record");

        // Verify subject_collections is present and non-empty.
        assert!(
            record.subject_collections.is_some(),
            "subject_collections should be Some"
        );
        let sc = record.subject_collections.unwrap();
        assert_eq!(sc.len(), 2, "subject_collections should have 2 entries");
        assert!(
            sc.iter().any(|s| s.contains("bsky.feed.post")),
            "should include app.bsky.feed.post"
        );
    }
}