Signal-iOS/SignalUI/Stories/StoryMessage+SignalUI.swift
2024-03-25 21:10:55 -07:00

51 lines
1.8 KiB
Swift

//
// Copyright 2022 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import SignalServiceKit
extension StoryMessage {
func quotedBody(transaction: SDSAnyReadTransaction) -> MessageBody? {
let caption: String?
let captionStyles: [NSRangedValue<MessageBodyRanges.CollapsedStyle>]
switch attachment {
case .text(let attachment):
switch attachment.textContent {
case .styledRanges(let body):
return body.asMessageBody()
case .styled(let body, _):
return MessageBody(text: body, ranges: .empty)
case .empty:
guard let urlString = attachment.preview?.urlString else {
return nil
}
return MessageBody(text: urlString, ranges: .empty)
}
case .file, .foreignReferenceAttachment:
guard
let attachmentPointer = DependenciesBridge.shared.tsResourceStore.mediaAttachment(for: self, tx: transaction.asV2Read)
else {
owsFailDebug("Missing attachment for story message \(timestamp)")
return nil
}
let styledCaption = attachmentPointer.storyMediaCaption
caption = styledCaption?.text
captionStyles = styledCaption?.collapsedStyles ?? []
}
guard let caption else {
return nil
}
// Note: stripping any over-extended styles to the caption
// length will happen at hydration time, which is required
// to turn a MessageBody into something we can display.
return MessageBody(
text: caption,
ranges: MessageBodyRanges(mentions: [:], orderedMentions: [], collapsedStyles: captionStyles)
)
}
}