25 lines
787 B
Swift
25 lines
787 B
Swift
//
|
|
// Copyright 2023 Signal Messenger, LLC
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
//
|
|
|
|
import Foundation
|
|
|
|
public extension ProfileBadgesSnapshot {
|
|
static func current() -> ProfileBadgesSnapshot {
|
|
struct Deps: Dependencies {}
|
|
let profileManagerImpl = Deps.profileManagerImpl
|
|
|
|
let profileSnapshot = profileManagerImpl.localProfileSnapshot(shouldIncludeAvatar: false)
|
|
return forSnapshot(profileSnapshot: profileSnapshot)
|
|
}
|
|
|
|
static func forSnapshot(profileSnapshot: OWSProfileSnapshot) -> ProfileBadgesSnapshot {
|
|
ProfileBadgesSnapshot(
|
|
existingBadges: (profileSnapshot.profileBadgeInfo ?? []).map {
|
|
ProfileBadgesSnapshot.Badge(id: $0.badgeId, isVisible: $0.isVisible ?? false)
|
|
}
|
|
)
|
|
}
|
|
}
|