TM-SGNL-iOS/SignalServiceKit/Messages/Interactions/LinkPreview/Manager/Attachments/LinkPreviewBuilder.swift
TeleMessage developers dde0620daf initial commit
2025-05-03 12:28:28 -07:00

26 lines
626 B
Swift

//
// Copyright 2024 Signal Messenger, LLC
// SPDX-License-Identifier: AGPL-3.0-only
//
import Foundation
public protocol LinkPreviewBuilder {
associatedtype DataSource
func buildDataSource(
_ draft: OWSLinkPreviewDraft
) throws -> DataSource
func createLinkPreview(
from dataSource: DataSource,
tx: DBWriteTransaction
) throws -> OwnedAttachmentBuilder<OWSLinkPreview>
func createLinkPreview(
from proto: SSKProtoAttachmentPointer,
metadata: OWSLinkPreview.Metadata,
tx: DBWriteTransaction
) throws -> OwnedAttachmentBuilder<OWSLinkPreview>
}