finery 0.2.0

Keyboard-first Jira backlog and Composer with optional MCP access
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
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
use std::{collections::HashMap, fmt, sync::Arc};

use schemars::JsonSchema;
use serde::{Deserialize, Serialize};
use tokio::runtime::Runtime;

use crate::{
    storage::{ConditionalSaveChangeSetOutcome, Storage, VersionedChangeSet},
    store::composer::{
        ChangeKind, ChangeSet, ComposerAction, ComposerState, PlacementError, PlacementTarget,
        SubmissionAttemptPhase, SubmissionSnapshot, Ticket, TicketChange, TicketKind,
        rebase_ticket, submission_attempt_owner,
    },
};

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
pub struct Versioned<T> {
    pub revision: i64,
    pub value: T,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
pub struct ChangeSetCatalogView {
    pub change_sets: Vec<Versioned<ChangeSetView>>,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
pub struct ChangeSetView {
    pub id: String,
    pub name: String,
    pub closed: bool,
    pub selected_ticket_ids: Vec<String>,
    pub tickets: Vec<TicketChangeView>,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
pub struct TicketChangeView {
    pub id: String,
    pub kind: ChangeKindView,
    pub original: Option<TicketView>,
    pub updated: Option<TicketView>,
    pub submitted: bool,
    pub selected_for_commit: bool,
    pub retry_blocked: bool,
    pub create_attempt: bool,
    pub submission_claimed: bool,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
pub struct TicketView {
    pub key: String,
    pub project_key: String,
    pub title: String,
    pub description: String,
    pub description_safe_to_overwrite: bool,
    pub kind: TicketKindView,
    pub status: String,
    pub priority: String,
    pub assignee: String,
    pub parent_key: Option<String>,
    pub parent_title: Option<String>,
    pub parent_kind: Option<TicketKindView>,
    pub has_children: bool,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum TicketKindView {
    Epic,
    Story,
    Task,
    Bug,
    Subtask,
}

#[derive(Debug, Clone, Copy, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum ChangeKindView {
    Added,
    Modified,
    Deleted,
    Synced,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
pub struct DraftTicketInput {
    pub title: String,
    pub project_key: String,
    pub kind: TicketKindView,
    #[serde(default)]
    pub description: String,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum ChangeSetPatchOperation {
    AddDraftTicket {
        ticket_id: String,
        draft: DraftTicketInput,
        parent_ticket_id: Option<String>,
    },
    IncludeJiraTicket {
        jira_key: String,
        parent_ticket_id: Option<String>,
    },
    SyncJiraTicket {
        ticket_id: String,
    },
    UpdateTitle {
        ticket_id: String,
        title: String,
    },
    UpdateDescription {
        ticket_id: String,
        description: String,
    },
    MoveTicket {
        ticket_id: String,
        parent_ticket_id: Option<String>,
    },
    RemoveLocalSubtree {
        ticket_id: String,
    },
    StageJiraDeletion {
        ticket_id: String,
    },
    RestoreTicket {
        ticket_id: String,
    },
    ResetTicket {
        ticket_id: String,
    },
    SetCommitSelection {
        ticket_ids: Vec<String>,
    },
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
pub struct AppliedOperation {
    pub operation_index: i64,
    pub ticket_ids: Vec<String>,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
pub struct ChangeSetPatchResponse {
    pub change_set: Versioned<ChangeSetView>,
    pub catalog_revision: i64,
    pub applied: Vec<AppliedOperation>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
pub struct RecoveredCreate {
    pub ticket_id: String,
    pub jira_key: String,
}

#[derive(Debug, Clone, PartialEq, Serialize, Deserialize, JsonSchema)]
pub struct SubmitChangeSetResponse {
    pub change_set: Versioned<ChangeSetView>,
    pub catalog_revision: i64,
    pub outcome: SubmitChangeSetOutcome,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
#[serde(tag = "type", rename_all = "snake_case")]
pub enum SubmitChangeSetOutcome {
    PreflightError {
        message: String,
    },
    Conflict {
        ticket_ids: Vec<String>,
    },
    Completed {
        tickets: Vec<TicketSubmissionResult>,
    },
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize, JsonSchema)]
pub struct TicketSubmissionResult {
    pub ticket_id: String,
    pub submitted: bool,
    pub retry_blocked: bool,
    pub message: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
#[serde(tag = "code", rename_all = "snake_case")]
pub enum ServiceError {
    NotFound { resource: String, id: String },
    ClosedChangeSet { change_set_id: String },
    SubmittedTicket { ticket_id: String },
    SubmissionClaimed { ticket_id: String },
    InvalidOperation { message: String },
    StaleRevision { change_set_id: String },
    JiraLookup { jira_key: String, message: String },
    Storage { message: String },
    Submission { message: String },
}

impl fmt::Display for ServiceError {
    fn fmt(&self, formatter: &mut fmt::Formatter<'_>) -> fmt::Result {
        match self {
            Self::NotFound { resource, id } => write!(formatter, "{resource} not found: {id}"),
            Self::ClosedChangeSet { change_set_id } => {
                write!(formatter, "change set is closed: {change_set_id}")
            }
            Self::SubmittedTicket { ticket_id } => {
                write!(formatter, "ticket was submitted: {ticket_id}")
            }
            Self::SubmissionClaimed { ticket_id } => {
                write!(formatter, "ticket submission is in progress: {ticket_id}")
            }
            Self::InvalidOperation { message } => formatter.write_str(message),
            Self::StaleRevision { change_set_id } => {
                write!(formatter, "stale change set revision: {change_set_id}")
            }
            Self::JiraLookup { jira_key, message } => {
                write!(formatter, "Jira lookup failed for {jira_key}: {message}")
            }
            Self::Storage { message } => formatter.write_str(message),
            Self::Submission { message } => formatter.write_str(message),
        }
    }
}

impl std::error::Error for ServiceError {}

pub(crate) trait JiraTicketLookup: Send + Sync {
    fn fetch_ticket(&self, jira_key: &str) -> Result<Ticket, String>;
}

pub(crate) trait JiraTicketSubmit: Send + Sync {
    fn submit_changes(&self, changes: &[TicketChange]) -> crate::jira::SubmitBatchOutcome;
}

impl<F> JiraTicketSubmit for F
where
    F: Fn(&[TicketChange]) -> crate::jira::SubmitBatchOutcome + Send + Sync,
{
    fn submit_changes(&self, changes: &[TicketChange]) -> crate::jira::SubmitBatchOutcome {
        self(changes)
    }
}

impl<F> JiraTicketLookup for F
where
    F: Fn(&str) -> Result<Ticket, String> + Send + Sync,
{
    fn fetch_ticket(&self, jira_key: &str) -> Result<Ticket, String> {
        self(jira_key)
    }
}

#[derive(Clone)]
pub struct ComposerService {
    storage: Storage,
    runtime: Arc<Runtime>,
    jira: Arc<dyn JiraTicketLookup>,
    jira_submit: Arc<dyn JiraTicketSubmit>,
}

impl ComposerService {
    pub(crate) fn new(
        storage: Storage,
        runtime: Arc<Runtime>,
        jira: Arc<dyn JiraTicketLookup>,
        jira_submit: Arc<dyn JiraTicketSubmit>,
    ) -> Self {
        Self {
            storage,
            runtime,
            jira,
            jira_submit,
        }
    }

    pub fn change_set_catalog(&self) -> Result<Versioned<ChangeSetCatalogView>, ServiceError> {
        let catalog = self
            .runtime
            .block_on(self.storage.load_versioned_change_sets())
            .map_err(storage_error)?;
        Ok(Versioned {
            revision: catalog.catalog_revision,
            value: ChangeSetCatalogView {
                change_sets: catalog
                    .change_sets
                    .into_iter()
                    .map(versioned_change_set_view)
                    .collect(),
            },
        })
    }

    pub fn change_set(
        &self,
        change_set_id: &str,
    ) -> Result<Versioned<ChangeSetView>, ServiceError> {
        let change_set = self.load_change_set(change_set_id)?;
        Ok(versioned_change_set_view(change_set))
    }

    pub fn open_change_set_jira_ticket_keys(&self) -> Result<Vec<String>, ServiceError> {
        let catalog = self
            .runtime
            .block_on(self.storage.load_versioned_change_sets())
            .map_err(storage_error)?;
        let mut seen = std::collections::HashSet::new();
        Ok(catalog
            .change_sets
            .into_iter()
            .filter(|change_set| !change_set.change_set.closed)
            .flat_map(|change_set| change_set.change_set.tickets)
            .filter_map(|change| change.original.map(|ticket| ticket.key))
            .filter(|key| seen.insert(key.clone()))
            .collect())
    }

    pub fn refresh_open_change_set_baselines(
        &self,
        refreshed_tickets: &HashMap<String, Ticket>,
    ) -> Result<Versioned<ChangeSetCatalogView>, ServiceError> {
        let catalog = self
            .runtime
            .block_on(self.storage.load_versioned_change_sets())
            .map_err(storage_error)?;
        for versioned in catalog
            .change_sets
            .into_iter()
            .filter(|change_set| !change_set.change_set.closed)
        {
            let mut change_set = versioned.change_set;
            if change_set.submission_attempt_ticket_id().is_some() {
                continue;
            }
            let mut changed = false;
            for change in &mut change_set.tickets {
                let Some(original) = change.original.as_ref() else {
                    continue;
                };
                let Some(refreshed) = refreshed_tickets.get(&original.key) else {
                    continue;
                };
                if original != refreshed {
                    change.updated = change
                        .updated
                        .as_ref()
                        .map(|updated| rebase_ticket(original, updated, refreshed));
                    change.original = Some(refreshed.clone());
                    changed = true;
                }
            }
            if changed {
                self.save(&change_set.id, &change_set, Some(versioned.revision))?;
            }
        }
        self.change_set_catalog()
    }

    pub fn apply_change_set_patch(
        &self,
        change_set_id: &str,
        expected_revision: i64,
        operations: Vec<ChangeSetPatchOperation>,
    ) -> Result<ChangeSetPatchResponse, ServiceError> {
        if operations.is_empty() {
            return Err(invalid("a patch must contain at least one operation"));
        }
        let versioned = self.load_expected_change_set(change_set_id, expected_revision)?;
        let mut state = open_state(versioned.change_set.clone());
        if let Some(ticket_id) = state
            .active_set()
            .and_then(ChangeSet::submission_attempt_ticket_id)
        {
            return Err(ServiceError::SubmissionClaimed {
                ticket_id: ticket_id.into(),
            });
        }
        let mut applied = Vec::with_capacity(operations.len());
        for (operation_index, operation) in operations.into_iter().enumerate() {
            let ticket_ids = self.apply_operation(&mut state, operation)?;
            applied.push(AppliedOperation {
                operation_index: operation_index as i64,
                ticket_ids,
            });
        }
        let edited = state
            .active_set()
            .expect("opened change set is present")
            .clone();
        let (revision, catalog_revision) =
            self.save(change_set_id, &edited, Some(expected_revision))?;
        Ok(ChangeSetPatchResponse {
            change_set: Versioned {
                revision,
                value: change_set_view(edited),
            },
            catalog_revision,
            applied,
        })
    }

    pub fn refresh_change_set(
        &self,
        change_set_id: &str,
        expected_revision: i64,
    ) -> Result<ChangeSetPatchResponse, ServiceError> {
        let versioned = self.load_expected_change_set(change_set_id, expected_revision)?;
        let mut edited = versioned.change_set;
        if let Some(ticket_id) = edited.submission_attempt_ticket_id() {
            return Err(ServiceError::SubmissionClaimed {
                ticket_id: ticket_id.into(),
            });
        }
        let targets = edited
            .tickets
            .iter()
            .filter(|change| !change.is_submitted())
            .filter_map(|change| {
                change
                    .original
                    .as_ref()
                    .map(|ticket| (change.id.clone(), ticket.key.clone()))
            })
            .collect::<Vec<_>>();
        if targets.is_empty() {
            return Err(invalid("change set has no refreshable Jira tickets"));
        }
        for (id, jira_key) in targets {
            let ticket = self.fetch_jira(&jira_key)?;
            let change = edited
                .tickets
                .iter_mut()
                .find(|change| change.id == id)
                .expect("refresh target is present");
            change.updated = change.updated.as_ref().map(|updated| {
                rebase_ticket(
                    change.original.as_ref().expect("original exists"),
                    updated,
                    &ticket,
                )
            });
            change.original = Some(ticket);
        }
        let (revision, catalog_revision) =
            self.save(change_set_id, &edited, Some(expected_revision))?;
        Ok(ChangeSetPatchResponse {
            change_set: Versioned {
                revision,
                value: change_set_view(edited),
            },
            catalog_revision,
            applied: Vec::new(),
        })
    }

    pub fn recover_submission_attempt(
        &self,
        change_set_id: &str,
        expected_revision: i64,
        recovered_creates: Vec<RecoveredCreate>,
    ) -> Result<ChangeSetPatchResponse, ServiceError> {
        let versioned = self.load_expected_change_set(change_set_id, expected_revision)?;
        let Some(attempt) = versioned.change_set.submission_attempt.clone() else {
            return Err(invalid("change set has no submission attempt to recover"));
        };
        if attempt.phase != SubmissionAttemptPhase::JiraSubmissionStarted {
            if !recovered_creates.is_empty() {
                return Err(invalid(
                    "Jira submission did not start; recover without Jira confirmations",
                ));
            }
            return self.release_recovered_claim(
                change_set_id,
                expected_revision,
                attempt.owner_id,
            );
        }
        let mut state = open_state(versioned.change_set);
        let claimed = state
            .active_set()
            .expect("opened change set is present")
            .tickets
            .iter()
            .filter(|change| attempt.ticket_ids.contains(&change.id))
            .cloned()
            .collect::<Vec<_>>();
        let creates = claimed
            .iter()
            .filter(|change| change.kind == ChangeKind::Added)
            .map(|change| change.id.clone())
            .collect::<Vec<_>>();
        if recovered_creates.len() != creates.len()
            || recovered_creates.iter().any(|recovered| {
                !creates.contains(&recovered.ticket_id) || recovered.jira_key.trim().is_empty()
            })
            || recovered_creates
                .iter()
                .map(|recovered| &recovered.ticket_id)
                .collect::<std::collections::HashSet<_>>()
                .len()
                != recovered_creates.len()
        {
            return Err(invalid(
                "confirm every claimed draft create with its Jira key before recovery",
            ));
        }
        let recovered_creates = recovered_creates
            .into_iter()
            .map(|recovered| (recovered.ticket_id, recovered.jira_key))
            .collect::<HashMap<_, _>>();
        for change in claimed {
            let snapshot = match change.kind {
                ChangeKind::Added => SubmissionSnapshot {
                    original: None,
                    updated: Some(
                        self.fetch_jira(
                            recovered_creates
                                .get(&change.id)
                                .expect("validated recovered create"),
                        )?,
                    ),
                },
                ChangeKind::Deleted => {
                    let key = change
                        .original
                        .as_ref()
                        .map(|ticket| ticket.key.as_str())
                        .ok_or_else(|| invalid("deleted ticket is missing its Jira key"))?;
                    if self.fetch_jira(key).is_ok() {
                        return Err(invalid(format!(
                            "Jira deletion is not confirmed for {}",
                            change.id
                        )));
                    }
                    SubmissionSnapshot {
                        original: change.original,
                        updated: None,
                    }
                }
                ChangeKind::Modified | ChangeKind::Synced => {
                    let desired = change
                        .updated
                        .as_ref()
                        .or(change.original.as_ref())
                        .ok_or_else(|| invalid("modified ticket is missing its desired state"))?;
                    let remote = self.fetch_jira(&desired.key)?;
                    if remote != *desired {
                        return Err(invalid(format!(
                            "Jira update is not confirmed for {}",
                            change.id
                        )));
                    }
                    SubmissionSnapshot {
                        original: change.original,
                        updated: Some(remote),
                    }
                }
            };
            dispatch(
                &mut state,
                ComposerAction::CompleteSubmission {
                    change_set_id: change_set_id.into(),
                    id: change.id,
                    snapshot,
                },
            )?;
        }
        if !recovered_creates.is_empty() && creates.is_empty() {
            return Err(invalid("claimed attempts do not contain draft creates"));
        }
        dispatch(
            &mut state,
            ComposerAction::ReleaseSubmissionClaim {
                change_set_id: change_set_id.into(),
                owner_id: attempt.owner_id,
            },
        )?;
        let reconciled = state.active_set().expect("opened change set is present");
        let (revision, catalog_revision) =
            self.save(change_set_id, reconciled, Some(expected_revision))?;
        Ok(ChangeSetPatchResponse {
            change_set: Versioned {
                revision,
                value: change_set_view(reconciled.clone()),
            },
            catalog_revision,
            applied: Vec::new(),
        })
    }

    pub fn submit_change_set(
        &self,
        change_set_id: &str,
        expected_revision: i64,
        selected_ticket_ids: Vec<String>,
    ) -> Result<SubmitChangeSetResponse, ServiceError> {
        validate_submit_selection(&selected_ticket_ids)?;
        let versioned = self.load_expected_change_set(change_set_id, expected_revision)?;
        let mut state = open_state(versioned.change_set);
        for ticket_id in &selected_ticket_ids {
            if change(&state, ticket_id)?.is_submitted() {
                return Err(ServiceError::SubmittedTicket {
                    ticket_id: ticket_id.clone(),
                });
            }
            if state
                .active_set()
                .is_some_and(|set| set.submission_attempt.is_some())
            {
                return Err(ServiceError::SubmissionClaimed {
                    ticket_id: ticket_id.clone(),
                });
            }
        }
        let changes = state
            .commit_changes(&selected_ticket_ids)
            .map_err(invalid)?;
        if changes.is_empty() {
            return Err(invalid("submission selection contains no pending tickets"));
        }

        let create_attempts = changes
            .iter()
            .filter(|change| change.kind == ChangeKind::Added)
            .map(|change| change.id.clone())
            .collect::<Vec<_>>();
        let claimed_ids = changes
            .iter()
            .map(|change| change.id.clone())
            .collect::<Vec<_>>();
        let attempt_owner = submission_attempt_owner();
        dispatch(
            &mut state,
            ComposerAction::ClaimSubmission {
                change_set_id: change_set_id.into(),
                ids: claimed_ids.clone(),
                owner_id: attempt_owner.clone(),
            },
        )?;
        let claimed = state.active_set().expect("opened change set is present");
        let (claimed_revision, _) = self.save(change_set_id, claimed, Some(expected_revision))?;
        let marked_revision = if create_attempts.is_empty() {
            claimed_revision
        } else {
            dispatch(
                &mut state,
                ComposerAction::MarkCreateAttempts {
                    change_set_id: change_set_id.into(),
                    ids: create_attempts.clone(),
                },
            )?;
            dispatch(
                &mut state,
                ComposerAction::MarkSubmissionCreateAttempts {
                    change_set_id: change_set_id.into(),
                    owner_id: attempt_owner.clone(),
                },
            )?;
            let marked = state.active_set().expect("opened change set is present");
            self.save(change_set_id, marked, Some(claimed_revision))?.0
        };
        dispatch(
            &mut state,
            ComposerAction::MarkSubmissionJiraStarted {
                change_set_id: change_set_id.into(),
                owner_id: attempt_owner.clone(),
            },
        )?;
        let persisted_revision = self
            .save(
                change_set_id,
                state.active_set().expect("opened change set is present"),
                Some(marked_revision),
            )?
            .0;

        let outcome = self.jira_submit.submit_changes(&changes);
        match outcome {
            crate::jira::SubmitBatchOutcome::PreflightError(message) => {
                self.clear_create_attempts(
                    change_set_id,
                    &mut state,
                    &create_attempts,
                    &attempt_owner,
                    persisted_revision,
                )?;
                let change_set = self.change_set(change_set_id)?;
                let catalog = self.change_set_catalog()?.revision;
                Ok(SubmitChangeSetResponse {
                    change_set,
                    catalog_revision: catalog,
                    outcome: SubmitChangeSetOutcome::PreflightError { message },
                })
            }
            crate::jira::SubmitBatchOutcome::Conflict(ticket_ids) => {
                self.clear_create_attempts(
                    change_set_id,
                    &mut state,
                    &create_attempts,
                    &attempt_owner,
                    persisted_revision,
                )?;
                let change_set = self.change_set(change_set_id)?;
                let catalog = self.change_set_catalog()?.revision;
                Ok(SubmitChangeSetResponse {
                    change_set,
                    catalog_revision: catalog,
                    outcome: SubmitChangeSetOutcome::Conflict { ticket_ids },
                })
            }
            crate::jira::SubmitBatchOutcome::Completed(outcomes) => {
                if let Err(error) = validate_submission_outcomes(&changes, &outcomes) {
                    for ticket_id in &create_attempts {
                        dispatch(
                            &mut state,
                            ComposerAction::BlockTicketRetry {
                                change_set_id: change_set_id.into(),
                                id: ticket_id.clone(),
                            },
                        )?;
                    }
                    dispatch(
                        &mut state,
                        ComposerAction::ReleaseSubmissionClaim {
                            change_set_id: change_set_id.into(),
                            owner_id: attempt_owner,
                        },
                    )?;
                    self.save(
                        change_set_id,
                        state.active_set().expect("opened change set is present"),
                        Some(persisted_revision),
                    )?;
                    return Err(error);
                }
                let mut tickets = Vec::with_capacity(outcomes.len());
                for outcome in outcomes {
                    let ticket_id = outcome.id;
                    let result = match outcome.result {
                        Ok(snapshot) => {
                            dispatch(
                                &mut state,
                                ComposerAction::CompleteSubmission {
                                    change_set_id: change_set_id.into(),
                                    id: ticket_id.clone(),
                                    snapshot,
                                },
                            )?;
                            TicketSubmissionResult {
                                ticket_id,
                                submitted: true,
                                retry_blocked: false,
                                message: None,
                            }
                        }
                        Err(failure) => {
                            let retry_blocked = failure.retry_blocked;
                            let refresh = failure.refresh;
                            if retry_blocked {
                                dispatch(
                                    &mut state,
                                    ComposerAction::BlockTicketRetry {
                                        change_set_id: change_set_id.into(),
                                        id: ticket_id.clone(),
                                    },
                                )?;
                            } else if let Some(refresh) = refresh {
                                let (original, updated) = *refresh;
                                dispatch(
                                    &mut state,
                                    ComposerAction::RefreshAfterFailedSubmission {
                                        change_set_id: change_set_id.into(),
                                        id: ticket_id.clone(),
                                        original,
                                        updated,
                                    },
                                )?;
                            } else {
                                dispatch(
                                    &mut state,
                                    ComposerAction::ResolveCreateAttempt {
                                        change_set_id: change_set_id.into(),
                                        id: ticket_id.clone(),
                                    },
                                )?;
                            }
                            TicketSubmissionResult {
                                ticket_id,
                                submitted: false,
                                retry_blocked,
                                message: Some(failure.message),
                            }
                        }
                    };
                    tickets.push(result);
                }
                dispatch(
                    &mut state,
                    ComposerAction::ReleaseSubmissionClaim {
                        change_set_id: change_set_id.into(),
                        owner_id: attempt_owner,
                    },
                )?;
                let reconciled = state.active_set().expect("opened change set is present");
                let (revision, catalog_revision) =
                    self.save(change_set_id, reconciled, Some(persisted_revision))?;
                Ok(SubmitChangeSetResponse {
                    change_set: Versioned {
                        revision,
                        value: change_set_view(reconciled.clone()),
                    },
                    catalog_revision,
                    outcome: SubmitChangeSetOutcome::Completed { tickets },
                })
            }
        }
    }

    fn apply_operation(
        &self,
        state: &mut ComposerState,
        operation: ChangeSetPatchOperation,
    ) -> Result<Vec<String>, ServiceError> {
        match operation {
            ChangeSetPatchOperation::AddDraftTicket {
                ticket_id,
                draft,
                parent_ticket_id,
            } => {
                if ticket_id.is_empty() || !ticket_id.starts_with("NEW-") {
                    return Err(invalid("draft ticket IDs must start with NEW-"));
                }
                if has_ticket(state, &ticket_id) {
                    return Err(invalid("draft ticket ID already exists"));
                }
                let placement = explicit_placement(state, parent_ticket_id)?;
                dispatch(
                    state,
                    ComposerAction::CreateTicketWithId {
                        id: ticket_id.clone(),
                        title: draft.title,
                        project_key: draft.project_key,
                        kind: draft.kind.into(),
                        placement,
                    },
                )?;
                if !draft.description.is_empty() {
                    update_description(state, &ticket_id, draft.description)?;
                }
                Ok(vec![ticket_id])
            }
            ChangeSetPatchOperation::IncludeJiraTicket {
                jira_key,
                parent_ticket_id,
            } => {
                if jira_key.is_empty() {
                    return Err(invalid("Jira ticket key must not be empty"));
                }
                let ticket = self.fetch_jira(&jira_key)?;
                if has_ticket_identity(state, &ticket.key) {
                    return Err(invalid("Jira ticket is already included"));
                }
                let id = ticket.key.clone();
                dispatch(
                    state,
                    ComposerAction::IncludeTicketAt {
                        ticket,
                        placement: explicit_placement(state, parent_ticket_id)?,
                    },
                )?;
                Ok(vec![id])
            }
            ChangeSetPatchOperation::SyncJiraTicket { ticket_id } => {
                let jira_key = editable_change(state, &ticket_id)?
                    .original
                    .as_ref()
                    .map(|ticket| ticket.key.clone())
                    .ok_or_else(|| invalid("draft tickets cannot sync from Jira"))?;
                let ticket = self.fetch_jira(&jira_key)?;
                dispatch(
                    state,
                    ComposerAction::SetSource {
                        change_set_id: active_id(state),
                        id: ticket_id.clone(),
                        ticket,
                    },
                )?;
                Ok(vec![ticket_id])
            }
            ChangeSetPatchOperation::UpdateTitle { ticket_id, title } => {
                if title.is_empty() {
                    return Err(invalid("ticket title must not be empty"));
                }
                update_title(state, &ticket_id, title)?;
                Ok(vec![ticket_id])
            }
            ChangeSetPatchOperation::UpdateDescription {
                ticket_id,
                description,
            } => {
                update_description(state, &ticket_id, description)?;
                Ok(vec![ticket_id])
            }
            ChangeSetPatchOperation::MoveTicket {
                ticket_id,
                parent_ticket_id,
            } => {
                editable_change(state, &ticket_id)?;
                dispatch(
                    state,
                    ComposerAction::ReparentTicket {
                        id: ticket_id.clone(),
                        placement: explicit_placement(state, parent_ticket_id)?,
                    },
                )?;
                Ok(vec![ticket_id])
            }
            ChangeSetPatchOperation::RemoveLocalSubtree { ticket_id } => {
                let removed = state
                    .removal_preview(&ticket_id)
                    .map_err(|message| invalid(message))?
                    .into_iter()
                    .map(|change| change.id.clone())
                    .collect::<Vec<_>>();
                dispatch(state, ComposerAction::RemoveTicket(ticket_id))?;
                Ok(removed)
            }
            ChangeSetPatchOperation::StageJiraDeletion { ticket_id } => {
                let change = editable_change(state, &ticket_id)?;
                if change.kind == ChangeKind::Added {
                    return Err(invalid("draft tickets must be removed locally"));
                }
                dispatch(state, ComposerAction::MarkTicketDeleted(ticket_id.clone()))?;
                Ok(vec![ticket_id])
            }
            ChangeSetPatchOperation::RestoreTicket { ticket_id } => {
                let change = change(state, &ticket_id)?;
                if change.is_submitted() {
                    return Err(ServiceError::SubmittedTicket { ticket_id });
                }
                if change.kind != ChangeKind::Deleted {
                    return Err(invalid("ticket is not staged for deletion"));
                }
                dispatch(state, ComposerAction::RestoreTicket(ticket_id.clone()))?;
                Ok(vec![ticket_id])
            }
            ChangeSetPatchOperation::ResetTicket { ticket_id } => {
                let change = change(state, &ticket_id)?;
                if change.is_submitted() {
                    return Err(ServiceError::SubmittedTicket { ticket_id });
                }
                if change.kind != ChangeKind::Modified {
                    return Err(invalid("ticket has no local update to reset"));
                }
                dispatch(state, ComposerAction::ResetTicket(ticket_id.clone()))?;
                Ok(vec![ticket_id])
            }
            ChangeSetPatchOperation::SetCommitSelection { ticket_ids } => {
                if ticket_ids.len()
                    != ticket_ids
                        .iter()
                        .collect::<std::collections::HashSet<_>>()
                        .len()
                {
                    return Err(invalid("commit selection contains duplicate ticket IDs"));
                }
                for ticket_id in &ticket_ids {
                    selectable_change(state, ticket_id)?;
                }
                dispatch(
                    state,
                    ComposerAction::SetSelectedTickets(ticket_ids.clone()),
                )?;
                Ok(ticket_ids)
            }
        }
    }

    fn load_change_set(&self, id: &str) -> Result<VersionedChangeSet, ServiceError> {
        self.runtime
            .block_on(self.storage.load_change_set(id))
            .map_err(storage_error)?
            .ok_or_else(|| ServiceError::NotFound {
                resource: "change set".into(),
                id: id.into(),
            })
    }

    fn load_expected_change_set(
        &self,
        id: &str,
        expected_revision: i64,
    ) -> Result<VersionedChangeSet, ServiceError> {
        let change_set = self.load_change_set(id)?;
        if change_set.revision != expected_revision {
            return Err(ServiceError::StaleRevision {
                change_set_id: id.into(),
            });
        }
        if change_set.change_set.closed {
            return Err(ServiceError::ClosedChangeSet {
                change_set_id: id.into(),
            });
        }
        Ok(change_set)
    }

    fn fetch_jira(&self, jira_key: &str) -> Result<Ticket, ServiceError> {
        self.jira
            .fetch_ticket(jira_key)
            .map_err(|message| ServiceError::JiraLookup {
                jira_key: jira_key.into(),
                message,
            })
    }

    fn clear_create_attempts(
        &self,
        change_set_id: &str,
        state: &mut ComposerState,
        create_attempts: &[String],
        attempt_owner: &str,
        expected_revision: i64,
    ) -> Result<(), ServiceError> {
        for ticket_id in create_attempts {
            dispatch(
                state,
                ComposerAction::ResolveCreateAttempt {
                    change_set_id: change_set_id.into(),
                    id: ticket_id.clone(),
                },
            )?;
        }
        dispatch(
            state,
            ComposerAction::ReleaseSubmissionClaim {
                change_set_id: change_set_id.into(),
                owner_id: attempt_owner.into(),
            },
        )?;
        self.save(
            change_set_id,
            state.active_set().expect("opened change set is present"),
            Some(expected_revision),
        )?;
        Ok(())
    }

    fn release_recovered_claim(
        &self,
        change_set_id: &str,
        expected_revision: i64,
        owner_id: String,
    ) -> Result<ChangeSetPatchResponse, ServiceError> {
        let versioned = self.load_expected_change_set(change_set_id, expected_revision)?;
        let mut state = open_state(versioned.change_set);
        dispatch(
            &mut state,
            ComposerAction::ReleaseSubmissionClaim {
                change_set_id: change_set_id.into(),
                owner_id,
            },
        )?;
        let reconciled = state.active_set().expect("opened change set is present");
        let (revision, catalog_revision) =
            self.save(change_set_id, reconciled, Some(expected_revision))?;
        Ok(ChangeSetPatchResponse {
            change_set: Versioned {
                revision,
                value: change_set_view(reconciled.clone()),
            },
            catalog_revision,
            applied: Vec::new(),
        })
    }

    fn save(
        &self,
        id: &str,
        change_set: &ChangeSet,
        expected_revision: Option<i64>,
    ) -> Result<(i64, i64), ServiceError> {
        match self
            .runtime
            .block_on(
                self.storage
                    .save_change_set_if_revision(change_set, expected_revision),
            )
            .map_err(storage_error)?
        {
            ConditionalSaveChangeSetOutcome::Saved {
                change_set_revision,
                catalog_revision,
            } => Ok((change_set_revision, catalog_revision)),
            ConditionalSaveChangeSetOutcome::Conflict => Err(ServiceError::StaleRevision {
                change_set_id: id.into(),
            }),
        }
    }
}

fn open_state(change_set: ChangeSet) -> ComposerState {
    let id = change_set.id.clone();
    let mut state = ComposerState::from_change_sets(vec![change_set]);
    state
        .dispatch(ComposerAction::OpenChangeSet(id))
        .expect("change set opens");
    state
}

fn active_id(state: &ComposerState) -> String {
    state.active_set().expect("change set opens").id.clone()
}
fn explicit_placement(
    state: &ComposerState,
    parent_ticket_id: Option<String>,
) -> Result<PlacementTarget, ServiceError> {
    let Some(parent_ticket_id) = parent_ticket_id else {
        return Ok(PlacementTarget::Root);
    };
    let parent = change(state, &parent_ticket_id)?;
    if parent.kind == ChangeKind::Deleted {
        return Err(invalid("ticket staged for deletion cannot be a parent"));
    }
    if !parent.is_submitted() {
        editable_change(state, &parent_ticket_id)?;
    }
    Ok(PlacementTarget::ChildOf(parent_ticket_id))
}
fn has_ticket(state: &ComposerState, ticket_id: &str) -> bool {
    state
        .active_set()
        .is_some_and(|set| set.tickets.iter().any(|change| change.id == ticket_id))
}
fn has_ticket_identity(state: &ComposerState, ticket_id: &str) -> bool {
    state.active_set().is_some_and(|set| {
        set.tickets
            .iter()
            .any(|change| change.matches_ticket_identity(ticket_id))
    })
}
fn change<'a>(state: &'a ComposerState, ticket_id: &str) -> Result<&'a TicketChange, ServiceError> {
    state
        .active_set()
        .and_then(|set| set.tickets.iter().find(|change| change.id == ticket_id))
        .ok_or_else(|| ServiceError::NotFound {
            resource: "ticket".into(),
            id: ticket_id.into(),
        })
}
fn editable_change<'a>(
    state: &'a ComposerState,
    ticket_id: &str,
) -> Result<&'a TicketChange, ServiceError> {
    let change = change(state, ticket_id)?;
    if change.is_submitted() {
        return Err(ServiceError::SubmittedTicket {
            ticket_id: ticket_id.into(),
        });
    }
    if change.kind == ChangeKind::Deleted {
        return Err(invalid("ticket staged for deletion is not editable"));
    }
    Ok(change)
}
fn selectable_change<'a>(
    state: &'a ComposerState,
    ticket_id: &str,
) -> Result<&'a TicketChange, ServiceError> {
    let change = change(state, ticket_id)?;
    if change.is_submitted() {
        return Err(ServiceError::SubmittedTicket {
            ticket_id: ticket_id.into(),
        });
    }
    if state
        .active_set()
        .is_some_and(|set| set.submission_attempt.is_some())
    {
        return Err(ServiceError::SubmissionClaimed {
            ticket_id: ticket_id.into(),
        });
    }
    Ok(change)
}
fn dispatch(state: &mut ComposerState, action: ComposerAction) -> Result<(), ServiceError> {
    state.dispatch(action).map_err(placement_error)
}
fn select(state: &mut ComposerState, ticket_id: &str) -> Result<(), ServiceError> {
    editable_change(state, ticket_id)?;
    dispatch(state, ComposerAction::SelectTicket(Some(ticket_id.into())))
}
fn update_title(
    state: &mut ComposerState,
    ticket_id: &str,
    title: String,
) -> Result<(), ServiceError> {
    select(state, ticket_id)?;
    dispatch(state, ComposerAction::UpdateTitle(title))
}
fn update_description(
    state: &mut ComposerState,
    ticket_id: &str,
    description: String,
) -> Result<(), ServiceError> {
    select(state, ticket_id)?;
    dispatch(state, ComposerAction::UpdateDescription(description))
}
fn invalid(message: impl Into<String>) -> ServiceError {
    ServiceError::InvalidOperation {
        message: message.into(),
    }
}
fn validate_submit_selection(selected_ticket_ids: &[String]) -> Result<(), ServiceError> {
    if selected_ticket_ids.is_empty() {
        return Err(invalid("submission selection must not be empty"));
    }
    if selected_ticket_ids.iter().any(String::is_empty) {
        return Err(invalid("submission selection contains an empty ticket ID"));
    }
    if selected_ticket_ids.len()
        != selected_ticket_ids
            .iter()
            .collect::<std::collections::HashSet<_>>()
            .len()
    {
        return Err(invalid(
            "submission selection contains duplicate ticket IDs",
        ));
    }
    Ok(())
}
fn validate_submission_outcomes(
    changes: &[TicketChange],
    outcomes: &[crate::jira::TicketSubmitOutcome],
) -> Result<(), ServiceError> {
    let expected = changes
        .iter()
        .map(|change| change.id.as_str())
        .collect::<std::collections::HashSet<_>>();
    let actual = outcomes
        .iter()
        .map(|outcome| outcome.id.as_str())
        .collect::<std::collections::HashSet<_>>();
    if actual != expected || actual.len() != outcomes.len() {
        return Err(ServiceError::Submission {
            message: "Jira returned incomplete submission results".into(),
        });
    }
    Ok(())
}
fn placement_error(error: PlacementError) -> ServiceError {
    invalid(error.to_string())
}
fn storage_error(error: Box<dyn std::error::Error>) -> ServiceError {
    ServiceError::Storage {
        message: error.to_string(),
    }
}

fn versioned_change_set_view(change_set: VersionedChangeSet) -> Versioned<ChangeSetView> {
    Versioned {
        revision: change_set.revision,
        value: change_set_view(change_set.change_set),
    }
}
fn change_set_view(change_set: ChangeSet) -> ChangeSetView {
    let selected = change_set.selected_ticket_ids.clone();
    let submission_claimed = change_set.submission_attempt.is_some();
    ChangeSetView {
        id: change_set.id,
        name: change_set.name,
        closed: change_set.closed,
        selected_ticket_ids: selected.clone(),
        tickets: change_set
            .tickets
            .into_iter()
            .map(|change| TicketChangeView {
                selected_for_commit: selected.contains(&change.id),
                id: change.id,
                kind: change.kind.into(),
                original: change.original.map(Into::into),
                updated: change.updated.map(Into::into),
                submitted: change.submitted.is_some(),
                retry_blocked: change.retry_blocked,
                create_attempt: change.create_attempt,
                submission_claimed,
            })
            .collect(),
    }
}
impl From<TicketKindView> for TicketKind {
    fn from(value: TicketKindView) -> Self {
        match value {
            TicketKindView::Epic => Self::Epic,
            TicketKindView::Story => Self::Story,
            TicketKindView::Task => Self::Task,
            TicketKindView::Bug => Self::Bug,
            TicketKindView::Subtask => Self::Subtask,
        }
    }
}
impl From<TicketKind> for TicketKindView {
    fn from(value: TicketKind) -> Self {
        match value {
            TicketKind::Epic => Self::Epic,
            TicketKind::Story => Self::Story,
            TicketKind::Task => Self::Task,
            TicketKind::Bug => Self::Bug,
            TicketKind::Subtask => Self::Subtask,
        }
    }
}
impl From<ChangeKind> for ChangeKindView {
    fn from(value: ChangeKind) -> Self {
        match value {
            ChangeKind::Added => Self::Added,
            ChangeKind::Modified => Self::Modified,
            ChangeKind::Deleted => Self::Deleted,
            ChangeKind::Synced => Self::Synced,
        }
    }
}
impl From<Ticket> for TicketView {
    fn from(value: Ticket) -> Self {
        Self {
            key: value.key,
            project_key: value.project_key,
            title: value.title,
            description: value.description,
            description_safe_to_overwrite: value.description_safe_to_overwrite,
            kind: value.kind.into(),
            status: value.status,
            priority: value.priority,
            assignee: value.assignee,
            parent_key: value.parent_key,
            parent_title: value.parent_title,
            parent_kind: value.parent_kind.map(Into::into),
            has_children: value.has_children,
        }
    }
}

#[cfg(test)]
pub(crate) fn test_service(
    storage: Storage,
    runtime: Arc<Runtime>,
    jira: Arc<dyn JiraTicketLookup>,
) -> ComposerService {
    test_service_with_submit(
        storage,
        runtime,
        jira,
        Arc::new(|_: &[TicketChange]| {
            crate::jira::SubmitBatchOutcome::PreflightError("test submitter".into())
        }),
    )
}

#[cfg(test)]
pub(crate) fn test_service_with_submit(
    storage: Storage,
    runtime: Arc<Runtime>,
    jira: Arc<dyn JiraTicketLookup>,
    jira_submit: Arc<dyn JiraTicketSubmit>,
) -> ComposerService {
    ComposerService::new(storage, runtime, jira, jira_submit)
}