@ -48,6 +48,25 @@ public enum AttachmentUploadJob: JobExecutor {
return
}
// I f t h i s u p l o a d i s r e l a t e d t o s e n d i n g a m e s s a g e t h e n t r i g g e r t h e ' h a n d l e M e s s a g e W i l l S e n d ' l o g i c
// a s i f t h i s i s a r e t r y t h e l o g i c w o u l d n ' t r u n u n t i l a f t e r t h e u p l o a d h a s c o m p l e t e d r e s u l t i n g i n
// a p o t e n t i a l l y i n c o r r e c t d e l i v e r y s t a t u s
Storage . shared . write { db in
guard
let sendJob : Job = try Job . fetchOne ( db , id : details . messageSendJobId ) ,
let sendJobDetails : Data = sendJob . details ,
let details : MessageSendJob . Details = try ? JSONDecoder ( )
. decode ( MessageSendJob . Details . self , from : sendJobDetails )
else { return }
MessageSender . handleMessageWillSend (
db ,
message : details . message ,
interactionId : interactionId ,
isSyncMessage : details . isSyncMessage
)
}
// N o t e : I n t h e A t t a c h m e n t U p l o a d J o b w e i n t e n t i o n a l l y d o n ' t p r o v i d e o u r o w n d b i n s t a n c e t o p r e v e n t
// r e e n t r a n c y i s s u e s w h e n t h e s u c c e s s / f a i l u r e c l o s u r e s g e t c a l l e d b e f o r e t h e u p l o a d a s t h e J o b R u n n e r
// w i l l a t t e m p t t o u p d a t e t h e s t a t e o f t h e j o b i m m e d i a t e l y
@ -58,7 +77,29 @@ public enum AttachmentUploadJob: JobExecutor {
. sinkUntilComplete (
receiveCompletion : { result in
switch result {
case . failure ( let error ) : failure ( job , error , false )
case . failure ( let error ) :
// I f t h i s u p l o a d i s r e l a t e d t o s e n d i n g a m e s s a g e t h e n t r i g g e r t h e
// ' h a n d l e F a i l e d M e s s a g e S e n d ' l o g i c a s w e w a n t t o e n s u r e t h e m e s s a g e
// h a s t h e c o r r e c t d e l i v e r y s t a t u s
Storage . shared . read { db in
guard
let sendJob : Job = try Job . fetchOne ( db , id : details . messageSendJobId ) ,
let sendJobDetails : Data = sendJob . details ,
let details : MessageSendJob . Details = try ? JSONDecoder ( )
. decode ( MessageSendJob . Details . self , from : sendJobDetails )
else { return }
MessageSender . handleFailedMessageSend (
db ,
message : details . message ,
with : . other ( error ) ,
interactionId : interactionId ,
isSyncMessage : details . isSyncMessage
)
}
failure ( job , error , false )
case . finished : success ( job , false )
}
}