2020-01-30 17:55:01 +01:00
|
|
|
import escape from 'escape-html'
|
2020-07-03 21:45:49 +02:00
|
|
|
import parseLinkHeader from 'parse-link-header'
|
2020-04-25 06:04:39 +02:00
|
|
|
import { isStatusNotification } from '../notification_utils/notification_utils.js'
|
2020-01-30 17:55:01 +01:00
|
|
|
|
2019-01-14 13:30:14 +01:00
|
|
|
const qvitterStatusType = (status) => {
|
2019-01-13 20:07:55 +01:00
|
|
|
if (status.is_post_verb) {
|
|
|
|
return 'status'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status.retweeted_status) {
|
|
|
|
return 'retweet'
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((typeof status.uri === 'string' && status.uri.match(/(fave|objectType=Favourite)/)) ||
|
|
|
|
(typeof status.text === 'string' && status.text.match(/favorited/))) {
|
|
|
|
return 'favorite'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status.text.match(/deleted notice {{tag/) || status.qvitter_delete_notice) {
|
|
|
|
return 'deletion'
|
|
|
|
}
|
|
|
|
|
|
|
|
if (status.text.match(/started following/) || status.activity_type === 'follow') {
|
|
|
|
return 'follow'
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'unknown'
|
|
|
|
}
|
|
|
|
|
2019-01-14 13:30:14 +01:00
|
|
|
export const parseUser = (data) => {
|
|
|
|
const output = {}
|
|
|
|
const masto = data.hasOwnProperty('acct')
|
|
|
|
// case for users in "mentions" property for statuses in MastoAPI
|
|
|
|
const mastoShort = masto && !data.hasOwnProperty('avatar')
|
|
|
|
|
2019-01-17 17:23:14 +01:00
|
|
|
output.id = String(data.id)
|
2019-01-14 13:30:14 +01:00
|
|
|
|
|
|
|
if (masto) {
|
|
|
|
output.screen_name = data.acct
|
2019-05-23 05:47:20 +02:00
|
|
|
output.statusnet_profile_url = data.url
|
2019-01-14 13:30:14 +01:00
|
|
|
|
|
|
|
// There's nothing else to get
|
|
|
|
if (mastoShort) {
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
2019-04-01 03:59:18 +02:00
|
|
|
output.name = data.display_name
|
2020-01-30 17:55:01 +01:00
|
|
|
output.name_html = addEmojis(escape(data.display_name), data.emojis)
|
2019-01-14 13:30:14 +01:00
|
|
|
|
2019-05-26 20:48:49 +02:00
|
|
|
output.description = data.note
|
2019-03-17 13:41:05 +01:00
|
|
|
output.description_html = addEmojis(data.note, data.emojis)
|
2019-01-14 13:30:14 +01:00
|
|
|
|
2019-11-19 15:15:41 +01:00
|
|
|
output.fields = data.fields
|
|
|
|
output.fields_html = data.fields.map(field => {
|
|
|
|
return {
|
|
|
|
name: addEmojis(field.name, data.emojis),
|
|
|
|
value: addEmojis(field.value, data.emojis)
|
|
|
|
}
|
|
|
|
})
|
2020-02-19 12:57:58 +01:00
|
|
|
output.fields_text = data.fields.map(field => {
|
|
|
|
return {
|
2020-06-17 17:26:06 +02:00
|
|
|
name: unescape(field.name.replace(/<[^>]*>/g, '')),
|
|
|
|
value: unescape(field.value.replace(/<[^>]*>/g, ''))
|
2020-02-19 12:57:58 +01:00
|
|
|
}
|
|
|
|
})
|
2019-11-19 15:15:41 +01:00
|
|
|
|
2019-01-14 13:30:14 +01:00
|
|
|
// Utilize avatar_static for gif avatars?
|
|
|
|
output.profile_image_url = data.avatar
|
|
|
|
output.profile_image_url_original = data.avatar
|
|
|
|
|
|
|
|
// Same, utilize header_static?
|
|
|
|
output.cover_photo = data.header
|
|
|
|
|
|
|
|
output.friends_count = data.following_count
|
|
|
|
|
|
|
|
output.bot = data.bot
|
|
|
|
|
2019-01-19 02:10:16 +01:00
|
|
|
if (data.pleroma) {
|
2019-03-11 22:08:14 +01:00
|
|
|
const relationship = data.pleroma.relationship
|
|
|
|
|
2019-06-16 19:17:59 +02:00
|
|
|
output.background_image = data.pleroma.background_image
|
|
|
|
output.token = data.pleroma.chat_token
|
|
|
|
|
2020-04-21 22:27:51 +02:00
|
|
|
if (relationship) {
|
|
|
|
output.relationship = relationship
|
|
|
|
}
|
2019-02-18 15:49:32 +01:00
|
|
|
|
2020-02-03 20:26:32 +01:00
|
|
|
output.allow_following_move = data.pleroma.allow_following_move
|
|
|
|
|
2019-07-07 12:20:55 +02:00
|
|
|
output.hide_follows = data.pleroma.hide_follows
|
|
|
|
output.hide_followers = data.pleroma.hide_followers
|
2019-09-13 15:15:19 +02:00
|
|
|
output.hide_follows_count = data.pleroma.hide_follows_count
|
|
|
|
output.hide_followers_count = data.pleroma.hide_followers_count
|
2019-07-07 12:20:55 +02:00
|
|
|
|
2019-02-18 15:49:32 +01:00
|
|
|
output.rights = {
|
|
|
|
moderator: data.pleroma.is_moderator,
|
|
|
|
admin: data.pleroma.is_admin
|
|
|
|
}
|
2019-05-21 22:35:40 +02:00
|
|
|
// TODO: Clean up in UI? This is duplication from what BE does for qvitterapi
|
|
|
|
if (output.rights.admin) {
|
|
|
|
output.role = 'admin'
|
|
|
|
} else if (output.rights.moderator) {
|
|
|
|
output.role = 'moderator'
|
|
|
|
} else {
|
|
|
|
output.role = 'member'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data.source) {
|
|
|
|
output.description = data.source.note
|
|
|
|
output.default_scope = data.source.privacy
|
2019-11-19 15:15:41 +01:00
|
|
|
output.fields = data.source.fields
|
2019-05-21 22:35:40 +02:00
|
|
|
if (data.source.pleroma) {
|
|
|
|
output.no_rich_text = data.source.pleroma.no_rich_text
|
|
|
|
output.show_role = data.source.pleroma.show_role
|
2019-09-27 00:31:28 +02:00
|
|
|
output.discoverable = data.source.pleroma.discoverable
|
2019-05-21 22:35:40 +02:00
|
|
|
}
|
2019-01-19 02:10:16 +01:00
|
|
|
}
|
2019-01-17 21:53:05 +01:00
|
|
|
|
2019-03-13 19:08:03 +01:00
|
|
|
// TODO: handle is_local
|
2019-03-13 20:43:48 +01:00
|
|
|
output.is_local = !output.screen_name.includes('@')
|
2019-01-14 13:30:14 +01:00
|
|
|
} else {
|
|
|
|
output.screen_name = data.screen_name
|
|
|
|
|
|
|
|
output.name = data.name
|
|
|
|
output.name_html = data.name_html
|
|
|
|
|
|
|
|
output.description = data.description
|
|
|
|
output.description_html = data.description_html
|
|
|
|
|
|
|
|
output.profile_image_url = data.profile_image_url
|
|
|
|
output.profile_image_url_original = data.profile_image_url_original
|
|
|
|
|
|
|
|
output.cover_photo = data.cover_photo
|
|
|
|
|
|
|
|
output.friends_count = data.friends_count
|
|
|
|
|
2019-03-11 22:03:55 +01:00
|
|
|
// output.bot = ??? missing
|
2019-01-14 13:30:14 +01:00
|
|
|
|
|
|
|
output.statusnet_profile_url = data.statusnet_profile_url
|
2019-01-17 21:53:05 +01:00
|
|
|
|
2019-01-14 13:30:14 +01:00
|
|
|
output.is_local = data.is_local
|
2019-02-04 15:03:35 +01:00
|
|
|
output.role = data.role
|
|
|
|
output.show_role = data.show_role
|
2019-01-17 20:11:51 +01:00
|
|
|
|
2019-02-18 15:49:32 +01:00
|
|
|
if (data.rights) {
|
|
|
|
output.rights = {
|
|
|
|
moderator: data.rights.delete_others_notice,
|
|
|
|
admin: data.rights.admin
|
|
|
|
}
|
|
|
|
}
|
2019-01-17 20:11:51 +01:00
|
|
|
output.no_rich_text = data.no_rich_text
|
|
|
|
output.default_scope = data.default_scope
|
2019-02-06 12:21:13 +01:00
|
|
|
output.hide_follows = data.hide_follows
|
2019-01-29 23:11:40 +01:00
|
|
|
output.hide_followers = data.hide_followers
|
2019-09-13 15:15:19 +02:00
|
|
|
output.hide_follows_count = data.hide_follows_count
|
|
|
|
output.hide_followers_count = data.hide_followers_count
|
2019-01-17 20:11:51 +01:00
|
|
|
output.background_image = data.background_image
|
2019-01-27 21:38:33 +01:00
|
|
|
// Websocket token
|
|
|
|
output.token = data.token
|
2020-04-21 22:27:51 +02:00
|
|
|
|
|
|
|
// Convert relationsip data to expected format
|
|
|
|
output.relationship = {
|
|
|
|
muting: data.muted,
|
|
|
|
blocking: data.statusnet_blocking,
|
|
|
|
followed_by: data.follows_you,
|
|
|
|
following: data.following
|
|
|
|
}
|
2019-01-13 20:07:55 +01:00
|
|
|
}
|
2019-01-14 13:30:14 +01:00
|
|
|
|
|
|
|
output.created_at = new Date(data.created_at)
|
|
|
|
output.locked = data.locked
|
|
|
|
output.followers_count = data.followers_count
|
|
|
|
output.statuses_count = data.statuses_count
|
2019-04-10 19:49:39 +02:00
|
|
|
output.friendIds = []
|
|
|
|
output.followerIds = []
|
2019-07-20 04:49:29 +02:00
|
|
|
output.pinnedStatusIds = []
|
2019-04-30 14:20:19 +02:00
|
|
|
|
2019-02-11 10:41:17 +01:00
|
|
|
if (data.pleroma) {
|
|
|
|
output.follow_request_count = data.pleroma.follow_request_count
|
2019-01-14 13:30:14 +01:00
|
|
|
|
2019-02-18 15:49:32 +01:00
|
|
|
output.tags = data.pleroma.tags
|
|
|
|
output.deactivated = data.pleroma.deactivated
|
|
|
|
|
2019-05-25 09:01:02 +02:00
|
|
|
output.notification_settings = data.pleroma.notification_settings
|
2020-05-07 15:10:53 +02:00
|
|
|
output.unread_chat_count = data.pleroma.unread_chat_count
|
2019-02-18 15:49:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
output.tags = output.tags || []
|
2019-04-27 14:56:37 +02:00
|
|
|
output.rights = output.rights || {}
|
2019-05-25 09:01:02 +02:00
|
|
|
output.notification_settings = output.notification_settings || {}
|
2019-02-18 15:49:32 +01:00
|
|
|
|
2019-01-14 13:30:14 +01:00
|
|
|
return output
|
2019-01-13 20:07:55 +01:00
|
|
|
}
|
|
|
|
|
2019-03-18 04:23:59 +01:00
|
|
|
export const parseAttachment = (data) => {
|
2019-01-21 14:28:36 +01:00
|
|
|
const output = {}
|
|
|
|
const masto = !data.hasOwnProperty('oembed')
|
|
|
|
|
|
|
|
if (masto) {
|
|
|
|
// Not exactly same...
|
2019-03-18 04:42:07 +01:00
|
|
|
output.mimetype = data.pleroma ? data.pleroma.mime_type : data.type
|
2019-01-21 14:28:36 +01:00
|
|
|
output.meta = data.meta // not present in BE yet
|
2019-03-25 17:19:33 +01:00
|
|
|
output.id = data.id
|
2019-01-21 14:28:36 +01:00
|
|
|
} else {
|
|
|
|
output.mimetype = data.mimetype
|
2019-03-11 22:03:55 +01:00
|
|
|
// output.meta = ??? missing
|
2019-01-13 20:07:55 +01:00
|
|
|
}
|
2019-01-21 14:28:36 +01:00
|
|
|
|
|
|
|
output.url = data.url
|
|
|
|
output.description = data.description
|
|
|
|
|
|
|
|
return output
|
2019-01-13 20:07:55 +01:00
|
|
|
}
|
2019-03-11 21:41:08 +01:00
|
|
|
export const addEmojis = (string, emojis) => {
|
2019-09-30 22:45:03 +02:00
|
|
|
const matchOperatorsRegex = /[|\\{}()[\]^$+*?.-]/g
|
2019-03-09 01:15:35 +01:00
|
|
|
return emojis.reduce((acc, emoji) => {
|
2019-09-30 22:45:03 +02:00
|
|
|
const regexSafeShortCode = emoji.shortcode.replace(matchOperatorsRegex, '\\$&')
|
2019-03-09 01:15:35 +01:00
|
|
|
return acc.replace(
|
2019-09-30 22:45:03 +02:00
|
|
|
new RegExp(`:${regexSafeShortCode}:`, 'g'),
|
2020-06-04 15:12:03 +02:00
|
|
|
`<img src='${emoji.url}' alt=':${emoji.shortcode}:' title=':${emoji.shortcode}:' class='emoji' />`
|
2019-03-09 01:15:35 +01:00
|
|
|
)
|
|
|
|
}, string)
|
|
|
|
}
|
2019-01-13 20:07:55 +01:00
|
|
|
|
|
|
|
export const parseStatus = (data) => {
|
|
|
|
const output = {}
|
2019-01-14 20:38:37 +01:00
|
|
|
const masto = data.hasOwnProperty('account')
|
|
|
|
|
2019-01-13 20:07:55 +01:00
|
|
|
if (masto) {
|
|
|
|
output.favorited = data.favourited
|
|
|
|
output.fave_num = data.favourites_count
|
|
|
|
|
|
|
|
output.repeated = data.reblogged
|
|
|
|
output.repeat_num = data.reblogs_count
|
|
|
|
|
2020-07-03 21:45:49 +02:00
|
|
|
output.bookmarked = data.bookmarked
|
|
|
|
|
2019-01-13 20:07:55 +01:00
|
|
|
output.type = data.reblog ? 'retweet' : 'status'
|
|
|
|
output.nsfw = data.sensitive
|
|
|
|
|
2019-03-09 01:15:35 +01:00
|
|
|
output.statusnet_html = addEmojis(data.content, data.emojis)
|
2019-01-14 20:58:23 +01:00
|
|
|
|
2019-05-20 06:03:50 +02:00
|
|
|
output.tags = data.tags
|
|
|
|
|
2019-04-09 21:25:44 +02:00
|
|
|
if (data.pleroma) {
|
|
|
|
const { pleroma } = data
|
|
|
|
output.text = pleroma.content ? data.pleroma.content['text/plain'] : data.content
|
|
|
|
output.summary = pleroma.spoiler_text ? data.pleroma.spoiler_text['text/plain'] : data.spoiler_text
|
|
|
|
output.statusnet_conversation_id = data.pleroma.conversation_id
|
2019-04-10 14:02:14 +02:00
|
|
|
output.is_local = pleroma.local
|
2019-04-27 06:52:11 +02:00
|
|
|
output.in_reply_to_screen_name = data.pleroma.in_reply_to_account_acct
|
2019-09-14 04:59:24 +02:00
|
|
|
output.thread_muted = pleroma.thread_muted
|
2020-01-28 16:09:25 +01:00
|
|
|
output.emoji_reactions = pleroma.emoji_reactions
|
2020-06-30 14:04:16 +02:00
|
|
|
output.parent_visible = pleroma.parent_visible === undefined ? true : pleroma.parent_visible
|
2019-04-09 21:25:44 +02:00
|
|
|
} else {
|
|
|
|
output.text = data.content
|
|
|
|
output.summary = data.spoiler_text
|
|
|
|
}
|
2019-01-13 20:07:55 +01:00
|
|
|
|
|
|
|
output.in_reply_to_status_id = data.in_reply_to_id
|
2019-01-17 21:22:51 +01:00
|
|
|
output.in_reply_to_user_id = data.in_reply_to_account_id
|
2019-03-28 08:46:41 +01:00
|
|
|
output.replies_count = data.replies_count
|
2019-01-21 19:41:17 +01:00
|
|
|
|
2019-01-17 18:44:37 +01:00
|
|
|
if (output.type === 'retweet') {
|
|
|
|
output.retweeted_status = parseStatus(data.reblog)
|
|
|
|
}
|
2019-01-17 21:22:51 +01:00
|
|
|
|
2020-01-30 17:55:01 +01:00
|
|
|
output.summary_html = addEmojis(escape(data.spoiler_text), data.emojis)
|
2019-01-17 21:44:31 +01:00
|
|
|
output.external_url = data.url
|
2019-06-18 22:28:31 +02:00
|
|
|
output.poll = data.poll
|
2020-06-14 13:16:08 +02:00
|
|
|
if (output.poll) {
|
2020-06-14 15:09:14 +02:00
|
|
|
output.poll.options = (output.poll.options || []).map(field => ({
|
|
|
|
...field,
|
|
|
|
title_html: addEmojis(field.title, data.emojis)
|
|
|
|
}))
|
2020-06-14 13:16:08 +02:00
|
|
|
}
|
2019-04-04 18:47:25 +02:00
|
|
|
output.pinned = data.pinned
|
2019-07-07 22:02:09 +02:00
|
|
|
output.muted = data.muted
|
2019-01-13 20:07:55 +01:00
|
|
|
} else {
|
|
|
|
output.favorited = data.favorited
|
|
|
|
output.fave_num = data.fave_num
|
|
|
|
|
|
|
|
output.repeated = data.repeated
|
|
|
|
output.repeat_num = data.repeat_num
|
|
|
|
|
|
|
|
// catchall, temporary
|
|
|
|
// Object.assign(output, data)
|
|
|
|
|
|
|
|
output.type = qvitterStatusType(data)
|
|
|
|
|
|
|
|
if (data.nsfw === undefined) {
|
|
|
|
output.nsfw = isNsfw(data)
|
|
|
|
if (data.retweeted_status) {
|
|
|
|
output.nsfw = data.retweeted_status.nsfw
|
|
|
|
}
|
2019-01-15 16:39:24 +01:00
|
|
|
} else {
|
|
|
|
output.nsfw = data.nsfw
|
2019-01-13 20:07:55 +01:00
|
|
|
}
|
2019-01-15 16:39:24 +01:00
|
|
|
|
2019-01-13 20:07:55 +01:00
|
|
|
output.statusnet_html = data.statusnet_html
|
|
|
|
output.text = data.text
|
|
|
|
|
2019-01-17 21:22:51 +01:00
|
|
|
output.in_reply_to_status_id = data.in_reply_to_status_id
|
|
|
|
output.in_reply_to_user_id = data.in_reply_to_user_id
|
2019-01-21 19:41:17 +01:00
|
|
|
output.in_reply_to_screen_name = data.in_reply_to_screen_name
|
2019-01-14 20:58:23 +01:00
|
|
|
output.statusnet_conversation_id = data.statusnet_conversation_id
|
2019-01-17 18:44:37 +01:00
|
|
|
|
|
|
|
if (output.type === 'retweet') {
|
|
|
|
output.retweeted_status = parseStatus(data.retweeted_status)
|
|
|
|
}
|
2019-01-17 21:22:51 +01:00
|
|
|
|
|
|
|
output.summary = data.summary
|
2019-01-25 11:05:19 +01:00
|
|
|
output.summary_html = data.summary_html
|
2019-01-17 21:44:31 +01:00
|
|
|
output.external_url = data.external_url
|
|
|
|
output.is_local = data.is_local
|
2019-01-13 20:07:55 +01:00
|
|
|
}
|
|
|
|
|
2019-01-17 17:23:14 +01:00
|
|
|
output.id = String(data.id)
|
2019-01-13 20:07:55 +01:00
|
|
|
output.visibility = data.visibility
|
2019-01-27 13:56:07 +01:00
|
|
|
output.card = data.card
|
2019-01-13 20:07:55 +01:00
|
|
|
output.created_at = new Date(data.created_at)
|
|
|
|
|
2019-01-22 21:57:51 +01:00
|
|
|
// Converting to string, the right way.
|
|
|
|
output.in_reply_to_status_id = output.in_reply_to_status_id
|
|
|
|
? String(output.in_reply_to_status_id)
|
|
|
|
: null
|
|
|
|
output.in_reply_to_user_id = output.in_reply_to_user_id
|
|
|
|
? String(output.in_reply_to_user_id)
|
|
|
|
: null
|
|
|
|
|
2019-01-13 20:07:55 +01:00
|
|
|
output.user = parseUser(masto ? data.account : data.user)
|
|
|
|
|
2019-01-19 02:10:16 +01:00
|
|
|
output.attentions = ((masto ? data.mentions : data.attentions) || []).map(parseUser)
|
2019-01-13 20:07:55 +01:00
|
|
|
|
|
|
|
output.attachments = ((masto ? data.media_attachments : data.attachments) || [])
|
|
|
|
.map(parseAttachment)
|
|
|
|
|
|
|
|
const retweetedStatus = masto ? data.reblog : data.retweeted_status
|
|
|
|
if (retweetedStatus) {
|
|
|
|
output.retweeted_status = parseStatus(retweetedStatus)
|
|
|
|
}
|
|
|
|
|
2019-05-01 16:33:56 +02:00
|
|
|
output.favoritedBy = []
|
|
|
|
output.rebloggedBy = []
|
|
|
|
|
2019-01-13 20:07:55 +01:00
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
2019-01-14 20:38:37 +01:00
|
|
|
export const parseNotification = (data) => {
|
|
|
|
const mastoDict = {
|
|
|
|
'favourite': 'like',
|
|
|
|
'reblog': 'repeat'
|
|
|
|
}
|
|
|
|
const masto = !data.hasOwnProperty('ntype')
|
|
|
|
const output = {}
|
2020-04-23 13:27:27 +02:00
|
|
|
|
2019-01-14 20:38:37 +01:00
|
|
|
if (masto) {
|
|
|
|
output.type = mastoDict[data.type] || data.type
|
2019-03-18 17:30:34 +01:00
|
|
|
output.seen = data.pleroma.is_seen
|
2020-04-25 06:04:39 +02:00
|
|
|
output.status = isStatusNotification(output.type) ? parseStatus(data.status) : null
|
2019-03-31 20:50:34 +02:00
|
|
|
output.action = output.status // TODO: Refactor, this is unneeded
|
2019-12-10 15:54:28 +01:00
|
|
|
output.target = output.type !== 'move'
|
|
|
|
? null
|
|
|
|
: parseUser(data.target)
|
2019-01-14 20:38:37 +01:00
|
|
|
output.from_profile = parseUser(data.account)
|
2020-02-11 13:24:51 +01:00
|
|
|
output.emoji = data.emoji
|
2019-01-14 20:38:37 +01:00
|
|
|
} else {
|
|
|
|
const parsedNotice = parseStatus(data.notice)
|
|
|
|
output.type = data.ntype
|
2019-01-17 18:44:37 +01:00
|
|
|
output.seen = Boolean(data.is_seen)
|
2019-01-14 20:38:37 +01:00
|
|
|
output.status = output.type === 'like'
|
|
|
|
? parseStatus(data.notice.favorited_status)
|
|
|
|
: parsedNotice
|
|
|
|
output.action = parsedNotice
|
2020-05-07 15:10:53 +02:00
|
|
|
output.from_profile = output.type === 'pleroma:chat_mention' ? parseUser(data.account) : parseUser(data.from_profile)
|
2019-01-14 20:38:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
output.created_at = new Date(data.created_at)
|
2019-05-03 21:56:21 +02:00
|
|
|
output.id = parseInt(data.id)
|
2019-01-14 20:38:37 +01:00
|
|
|
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
2019-01-13 20:07:55 +01:00
|
|
|
const isNsfw = (status) => {
|
|
|
|
const nsfwRegex = /#nsfw/i
|
2019-03-22 18:15:11 +01:00
|
|
|
return (status.tags || []).includes('nsfw') || !!(status.text || '').match(nsfwRegex)
|
2019-01-13 20:07:55 +01:00
|
|
|
}
|
2020-07-03 21:45:49 +02:00
|
|
|
|
|
|
|
export const parseLinkHeaderPagination = (linkHeader, opts = {}) => {
|
|
|
|
const flakeId = opts.flakeId
|
|
|
|
const parsedLinkHeader = parseLinkHeader(linkHeader)
|
|
|
|
if (!parsedLinkHeader) return
|
|
|
|
const maxId = parsedLinkHeader.next.max_id
|
|
|
|
const minId = parsedLinkHeader.prev.min_id
|
|
|
|
|
|
|
|
return {
|
|
|
|
maxId: flakeId ? maxId : parseInt(maxId, 10),
|
|
|
|
minId: flakeId ? minId : parseInt(minId, 10)
|
|
|
|
}
|
|
|
|
}
|
2020-05-07 15:10:53 +02:00
|
|
|
|
|
|
|
export const parseChat = (chat) => {
|
|
|
|
const output = {}
|
|
|
|
output.id = chat.id
|
|
|
|
output.account = parseUser(chat.account)
|
|
|
|
output.unread = chat.unread
|
|
|
|
output.lastMessage = parseChatMessage(chat.last_message)
|
|
|
|
output.updated_at = new Date(chat.updated_at)
|
|
|
|
return output
|
|
|
|
}
|
|
|
|
|
|
|
|
export const parseChatMessage = (message) => {
|
|
|
|
if (!message) { return }
|
|
|
|
if (message.isNormalized) { return message }
|
|
|
|
const output = message
|
|
|
|
output.id = message.id
|
|
|
|
output.created_at = new Date(message.created_at)
|
|
|
|
output.chat_id = message.chat_id
|
|
|
|
if (message.content) {
|
|
|
|
output.content = addEmojis(message.content, message.emojis)
|
|
|
|
} else {
|
|
|
|
output.content = ''
|
|
|
|
}
|
|
|
|
if (message.attachment) {
|
|
|
|
output.attachments = [parseAttachment(message.attachment)]
|
|
|
|
} else {
|
|
|
|
output.attachments = []
|
|
|
|
}
|
|
|
|
output.isNormalized = true
|
|
|
|
return output
|
|
|
|
}
|