A change around the NostrPost interfaces caused unit tests to fail compilation. This commit fixes that. Signed-off-by: Daniel D’Aquino <daniel@daquino.me>
104 lines
3.4 KiB
Swift
104 lines
3.4 KiB
Swift
//
|
|
// Post.swift
|
|
// damus
|
|
//
|
|
// Created by William Casarin on 2022-05-07.
|
|
//
|
|
|
|
import Foundation
|
|
|
|
struct NostrPost {
|
|
let kind: NostrKind
|
|
let content: String
|
|
let tags: [[String]]
|
|
|
|
init(content: String, kind: NostrKind = .text, tags: [[String]] = []) {
|
|
self.content = content
|
|
self.kind = kind
|
|
self.tags = tags
|
|
}
|
|
|
|
func to_event(keypair: FullKeypair) -> NostrEvent? {
|
|
let post_blocks = self.parse_blocks()
|
|
let post_tags = self.make_post_tags(post_blocks: post_blocks, tags: self.tags)
|
|
let content = post_tags.blocks
|
|
.map(\.asString)
|
|
.joined(separator: "")
|
|
|
|
if self.kind == .highlight {
|
|
var new_tags = post_tags.tags.filter({ $0[safe: 0] != "comment" })
|
|
if content.count > 0 {
|
|
new_tags.append(["comment", content])
|
|
}
|
|
return NostrEvent(content: self.content, keypair: keypair.to_keypair(), kind: self.kind.rawValue, tags: new_tags)
|
|
}
|
|
|
|
return NostrEvent(content: content, keypair: keypair.to_keypair(), kind: self.kind.rawValue, tags: post_tags.tags)
|
|
}
|
|
|
|
func parse_blocks() -> [Block] {
|
|
guard let content_for_parsing = self.default_content_for_block_parsing() else { return [] }
|
|
return parse_post_blocks(content: content_for_parsing)
|
|
}
|
|
|
|
private func default_content_for_block_parsing() -> String? {
|
|
switch kind {
|
|
case .highlight:
|
|
return tags.filter({ $0[safe: 0] == "comment" }).first?[safe: 1]
|
|
default:
|
|
return self.content
|
|
}
|
|
}
|
|
|
|
/// Parse the post's contents to find more tags to apply to the final nostr event
|
|
func make_post_tags(post_blocks: [Block], tags: [[String]]) -> PostTags {
|
|
var new_tags = tags
|
|
|
|
for post_block in post_blocks {
|
|
switch post_block {
|
|
case .mention(let mention):
|
|
switch(mention.ref) {
|
|
case .note, .nevent:
|
|
continue
|
|
default:
|
|
break
|
|
}
|
|
|
|
if self.kind == .highlight, case .pubkey(_) = mention.ref {
|
|
var new_tag = mention.ref.tag
|
|
new_tag.append("mention")
|
|
new_tags.append(new_tag)
|
|
}
|
|
else {
|
|
new_tags.append(mention.ref.tag)
|
|
}
|
|
case .hashtag(let hashtag):
|
|
new_tags.append(["t", hashtag.lowercased()])
|
|
case .text: break
|
|
case .invoice: break
|
|
case .relay: break
|
|
case .url(let url):
|
|
new_tags.append(self.kind == .highlight ? ["r", url.absoluteString, "mention"] : ["r", url.absoluteString])
|
|
break
|
|
}
|
|
}
|
|
|
|
return PostTags(blocks: post_blocks, tags: new_tags)
|
|
}
|
|
}
|
|
|
|
// MARK: - Helper structures and functions
|
|
|
|
extension NostrPost {
|
|
/// A struct used for temporarily holding tag information that was parsed from a post contents to aid in building a nostr event
|
|
struct PostTags {
|
|
let blocks: [Block]
|
|
let tags: [[String]]
|
|
}
|
|
}
|
|
|
|
func parse_post_blocks(content: String) -> [Block] {
|
|
return parse_note_content(content: .content(content, nil)).blocks
|
|
}
|
|
|