9fe0084874
Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
29 lines
805 B
TypeScript
29 lines
805 B
TypeScript
import {AtUri} from '@atproto/syntax'
|
|
|
|
import {BSKY_FEED_OWNER_DIDS} from '#/lib/constants'
|
|
import {type UsePreferencesQueryResponse} from '#/state/queries/preferences'
|
|
import {IS_WEB} from '#/env'
|
|
|
|
let debugTopics = ''
|
|
if (IS_WEB && typeof window !== 'undefined') {
|
|
const params = new URLSearchParams(window.location.search)
|
|
debugTopics = params.get('debug_topics') ?? ''
|
|
}
|
|
|
|
export function createBskyTopicsHeader(userInterests?: string) {
|
|
return {
|
|
'X-Bsky-Topics': debugTopics || userInterests || '',
|
|
}
|
|
}
|
|
|
|
export function aggregateUserInterests(
|
|
preferences?: UsePreferencesQueryResponse,
|
|
) {
|
|
return preferences?.interests?.tags?.join(',') || ''
|
|
}
|
|
|
|
export function isBlueskyOwnedFeed(feedUri: string) {
|
|
const uri = new AtUri(feedUri)
|
|
return BSKY_FEED_OWNER_DIDS.includes(uri.host)
|
|
}
|