@ -27,6 +27,10 @@ public enum MessageSendJob: JobExecutor {
return
}
// W e n e e d t o i n c l u d e ' f i l e I d s ' w h e n s e n d i n g m e s s a g e s w i t h a t t a c h m e n t s t o O p e n G r o u p s
// s o e x t r a c t t h e m f r o m a n y a s s o c i a t e d a t t a c h m e n t s
var messageFileIds : [ String ] = [ ]
if details . message is VisibleMessage {
guard
let jobId : Int64 = job . id ,
@ -36,20 +40,30 @@ public enum MessageSendJob: JobExecutor {
return
}
// I f t h e o r i g i n a l i n t e r a c t i o n n o l o n g e r e x i s t s t h e n d o n ' t b o t h e r s e n d i n g t h e m e s s a g e ( i e . t h e
// m e s s a g e w a s d e l e t e d b e f o r e i t e v e n g o t s e n t )
guard Storage . shared . read ( { db in try Interaction . exists ( db , id : interactionId ) } ) = = true else {
failure ( job , StorageError . objectNotFound , true )
return
}
// C h e c k i f t h e r e a r e a n y a t t a c h m e n t s a s s o c i a t e d t o t h i s m e s s a g e , a n d i f s o
// u p l o a d t h e m n o w
//
// N o t e : N o r m a l a t t a c h m e n t s s h o u l d b e s e n t i n a n o n - d u r a b l e w a y b u t a n y
// a t t a c h m e n t s f o r L i n k P r e v i e w s a n d Q u o t e s w i l l b e p r o c e s s e d t h r o u g h t h i s m e c h a n i s m
let attachmentState : ( shouldFail : Bool , shouldDefer : Bool ) ? = Storage . shared . write { db in
let attachmentState : ( shouldFail : Bool , shouldDefer : Bool , fileIds : [ String ] )? = Storage . shared . write { db in
let allAttachmentStateInfo : [ Attachment . StateInfo ] = try Attachment
. stateInfo ( interactionId : interactionId )
. fetchAll ( db )
let maybeFileIds : [ String ? ] = allAttachmentStateInfo
. map { Attachment . fileId ( for : $0 . downloadUrl ) }
let fileIds : [ String ] = maybeFileIds . compactMap { $0 }
// I f t h e r e w e r e f a i l e d a t t a c h m e n t s t h e n t h i s j o b s h o u l d f a i l ( c a n ' t s e n d a
// m e s s a g e w h i c h h a s a s s o c i a t e d a t t a c h m e n t s i f t h e a t t a c h m e n t s f a i l t o u p l o a d )
guard ! allAttachmentStateInfo . contains ( where : { $0 . state = = . failedDownload } ) else {
return ( true , false )
return ( true , false , fileIds )
}
// C r e a t e j o b s f o r a n y p e n d i n g ( o r f a i l e d ) a t t a c h m e n t j o b s a n d i n s e r t t h e m i n t o t h e
@ -102,9 +116,13 @@ public enum MessageSendJob: JobExecutor {
// I f t h e r e w e r e p e n d i n g o r u p l o a d i n g a t t a c h m e n t s t h e n s t o p h e r e ( w e w a n t t o
// u p l o a d t h e m f i r s t a n d t h e n r e - r u n t h i s s e n d j o b - t h e ' J o b R u n n e r . i n s e r t '
// m e t h o d w i l l t a k e c a r e o f t h i s )
let isMissingFileIds : Bool = ( maybeFileIds . count != fileIds . count )
let hasPendingUploads : Bool = allAttachmentStateInfo . contains ( where : { $0 . state != . uploaded } )
return (
false ,
allAttachmentStateInfo . contains ( where : { $0 . state != . uploaded } )
( isMissingFileIds && ! hasPendingUploads ) ,
hasPendingUploads ,
fileIds
)
}
@ -122,6 +140,9 @@ public enum MessageSendJob: JobExecutor {
deferred ( job )
return
}
// S t o r e t h e f i l e I d s s o t h e y c a n b e s e n t w i t h t h e o p e n g r o u p m e s s a g e c o n t e n t
messageFileIds = ( attachmentState ? . fileIds ? ? [ ] )
}
// S t o r e t h e s e n t T i m e s t a m p f r o m t h e m e s s a g e i n c a s e i t f a i l s d u e t o a c l o c k O u t O f S y n c e r r o r
@ -135,7 +156,8 @@ public enum MessageSendJob: JobExecutor {
try MessageSender . sendImmediate (
db ,
message : details . message ,
to : details . destination ,
to : details . destination
. with ( fileIds : messageFileIds ) ,
interactionId : job . interactionId
)
}