pleroma-fe/src/services/api/api.service.js

1779 行
47 KiB
JavaScript
Raw 通常表示 履歴

import { each, map, concat, last, get } from 'lodash'
2022-06-08 12:31:48 +09:00
import { parseStatus, parseSource, parseUser, parseNotification, parseAttachment, parseChat, parseLinkHeaderPagination } from '../entity_normalizer/entity_normalizer.service.js'
import { RegistrationError, StatusCodeError } from '../errors/errors'
2019-06-19 05:28:31 +09:00
2016-10-28 01:03:14 +09:00
/* eslint-env browser */
2020-09-07 20:27:37 +09:00
const MUTES_IMPORT_URL = '/api/pleroma/mutes_import'
2019-03-30 20:27:53 +09:00
const BLOCKS_IMPORT_URL = '/api/pleroma/blocks_import'
2017-12-23 23:44:22 +09:00
const FOLLOW_IMPORT_URL = '/api/pleroma/follow_import'
const DELETE_ACCOUNT_URL = '/api/pleroma/delete_account'
2019-11-08 11:21:19 +09:00
const CHANGE_EMAIL_URL = '/api/pleroma/change_email'
2018-05-22 07:01:09 +09:00
const CHANGE_PASSWORD_URL = '/api/pleroma/change_password'
const MOVE_ACCOUNT_URL = '/api/pleroma/move_account'
const ALIASES_URL = '/api/pleroma/aliases'
2019-02-18 23:49:32 +09:00
const TAG_USER_URL = '/api/pleroma/admin/users/tag'
2019-05-17 03:02:37 +09:00
const PERMISSION_GROUP_URL = (screenName, right) => `/api/pleroma/admin/users/${screenName}/permission_group/${right}`
const ACTIVATE_USER_URL = '/api/pleroma/admin/users/activate'
const DEACTIVATE_USER_URL = '/api/pleroma/admin/users/deactivate'
const ADMIN_USERS_URL = '/api/pleroma/admin/users'
2018-08-02 18:34:12 +09:00
const SUGGESTIONS_URL = '/api/v1/suggestions'
2019-05-25 16:01:02 +09:00
const NOTIFICATION_SETTINGS_URL = '/api/pleroma/notification_settings'
const NOTIFICATION_READ_URL = '/api/v1/pleroma/notifications/read'
2016-10-28 01:03:14 +09:00
const MFA_SETTINGS_URL = '/api/pleroma/accounts/mfa'
const MFA_BACKUP_CODES_URL = '/api/pleroma/accounts/mfa/backup_codes'
const MFA_SETUP_OTP_URL = '/api/pleroma/accounts/mfa/setup/totp'
const MFA_CONFIRM_OTP_URL = '/api/pleroma/accounts/mfa/confirm/totp'
2019-12-11 21:59:29 +09:00
const MFA_DISABLE_OTP_URL = '/api/pleroma/accounts/mfa/totp'
2019-05-22 05:35:40 +09:00
const MASTODON_LOGIN_URL = '/api/v1/accounts/verify_credentials'
const MASTODON_REGISTRATION_URL = '/api/v1/accounts'
const MASTODON_USER_FAVORITES_TIMELINE_URL = '/api/v1/favourites'
2019-03-13 06:16:57 +09:00
const MASTODON_USER_NOTIFICATIONS_URL = '/api/v1/notifications'
const MASTODON_DISMISS_NOTIFICATION_URL = id => `/api/v1/notifications/${id}/dismiss`
const MASTODON_FAVORITE_URL = id => `/api/v1/statuses/${id}/favourite`
const MASTODON_UNFAVORITE_URL = id => `/api/v1/statuses/${id}/unfavourite`
const MASTODON_RETWEET_URL = id => `/api/v1/statuses/${id}/reblog`
const MASTODON_UNRETWEET_URL = id => `/api/v1/statuses/${id}/unreblog`
const MASTODON_DELETE_URL = id => `/api/v1/statuses/${id}`
const MASTODON_FOLLOW_URL = id => `/api/v1/accounts/${id}/follow`
const MASTODON_UNFOLLOW_URL = id => `/api/v1/accounts/${id}/unfollow`
const MASTODON_FOLLOWING_URL = id => `/api/v1/accounts/${id}/following`
const MASTODON_FOLLOWERS_URL = id => `/api/v1/accounts/${id}/followers`
2019-09-03 19:38:52 +09:00
const MASTODON_FOLLOW_REQUESTS_URL = '/api/v1/follow_requests'
const MASTODON_APPROVE_USER_URL = id => `/api/v1/follow_requests/${id}/authorize`
const MASTODON_DENY_USER_URL = id => `/api/v1/follow_requests/${id}/reject`
2019-03-08 03:21:07 +09:00
const MASTODON_DIRECT_MESSAGES_TIMELINE_URL = '/api/v1/timelines/direct'
2019-03-08 03:16:35 +09:00
const MASTODON_PUBLIC_TIMELINE = '/api/v1/timelines/public'
const MASTODON_USER_HOME_TIMELINE_URL = '/api/v1/timelines/home'
const MASTODON_STATUS_URL = id => `/api/v1/statuses/${id}`
const MASTODON_STATUS_CONTEXT_URL = id => `/api/v1/statuses/${id}/context`
2022-06-08 12:31:48 +09:00
const MASTODON_STATUS_SOURCE_URL = id => `/api/v1/statuses/${id}/source`
const MASTODON_STATUS_HISTORY_URL = id => `/api/v1/statuses/${id}/history`
const MASTODON_USER_URL = '/api/v1/accounts'
const MASTODON_USER_LOOKUP_URL = '/api/v1/accounts/lookup'
const MASTODON_USER_RELATIONSHIPS_URL = '/api/v1/accounts/relationships'
2019-03-08 07:50:58 +09:00
const MASTODON_USER_TIMELINE_URL = id => `/api/v1/accounts/${id}/statuses`
const MASTODON_USER_IN_LISTS = id => `/api/v1/accounts/${id}/lists`
2022-08-06 23:26:43 +09:00
const MASTODON_LIST_URL = id => `/api/v1/lists/${id}`
const MASTODON_LIST_TIMELINE_URL = id => `/api/v1/timelines/list/${id}`
const MASTODON_LIST_ACCOUNTS_URL = id => `/api/v1/lists/${id}/accounts`
const MASTODON_TAG_TIMELINE_URL = tag => `/api/v1/timelines/tag/${tag}`
const MASTODON_BOOKMARK_TIMELINE_URL = '/api/v1/bookmarks'
2019-03-22 10:27:10 +09:00
const MASTODON_USER_BLOCKS_URL = '/api/v1/blocks/'
const MASTODON_USER_MUTES_URL = '/api/v1/mutes/'
2019-03-22 10:44:59 +09:00
const MASTODON_BLOCK_USER_URL = id => `/api/v1/accounts/${id}/block`
const MASTODON_UNBLOCK_USER_URL = id => `/api/v1/accounts/${id}/unblock`
2019-03-22 10:53:24 +09:00
const MASTODON_MUTE_USER_URL = id => `/api/v1/accounts/${id}/mute`
const MASTODON_UNMUTE_USER_URL = id => `/api/v1/accounts/${id}/unmute`
const MASTODON_REMOVE_USER_FROM_FOLLOWERS = id => `/api/v1/accounts/${id}/remove_from_followers`
const MASTODON_SUBSCRIBE_USER = id => `/api/v1/pleroma/accounts/${id}/subscribe`
const MASTODON_UNSUBSCRIBE_USER = id => `/api/v1/pleroma/accounts/${id}/unsubscribe`
2022-08-21 02:18:57 +09:00
const MASTODON_USER_NOTE_URL = id => `/api/v1/accounts/${id}/note`
const MASTODON_BOOKMARK_STATUS_URL = id => `/api/v1/statuses/${id}/bookmark`
const MASTODON_UNBOOKMARK_STATUS_URL = id => `/api/v1/statuses/${id}/unbookmark`
const MASTODON_POST_STATUS_URL = '/api/v1/statuses'
const MASTODON_MEDIA_UPLOAD_URL = '/api/v1/media'
2019-06-19 05:28:31 +09:00
const MASTODON_VOTE_URL = id => `/api/v1/polls/${id}/votes`
const MASTODON_POLL_URL = id => `/api/v1/polls/${id}`
2019-04-03 01:13:55 +09:00
const MASTODON_STATUS_FAVORITEDBY_URL = id => `/api/v1/statuses/${id}/favourited_by`
2019-04-02 11:30:06 +09:00
const MASTODON_STATUS_REBLOGGEDBY_URL = id => `/api/v1/statuses/${id}/reblogged_by`
const MASTODON_PROFILE_UPDATE_URL = '/api/v1/accounts/update_credentials'
2019-04-25 11:40:37 +09:00
const MASTODON_REPORT_USER_URL = '/api/v1/reports'
2019-04-05 00:27:02 +09:00
const MASTODON_PIN_OWN_STATUS = id => `/api/v1/statuses/${id}/pin`
const MASTODON_UNPIN_OWN_STATUS = id => `/api/v1/statuses/${id}/unpin`
const MASTODON_MUTE_CONVERSATION = id => `/api/v1/statuses/${id}/mute`
const MASTODON_UNMUTE_CONVERSATION = id => `/api/v1/statuses/${id}/unmute`
2022-07-31 18:35:48 +09:00
const MASTODON_SEARCH_2 = '/api/v2/search'
const MASTODON_USER_SEARCH_URL = '/api/v1/accounts/search'
2020-01-16 05:22:54 +09:00
const MASTODON_DOMAIN_BLOCKS_URL = '/api/v1/domain_blocks'
2022-08-06 23:26:43 +09:00
const MASTODON_LISTS_URL = '/api/v1/lists'
2019-11-25 01:50:28 +09:00
const MASTODON_STREAMING = '/api/v1/streaming'
const MASTODON_KNOWN_DOMAIN_LIST_URL = '/api/v1/instance/peers'
2022-03-18 03:01:45 +09:00
const MASTODON_ANNOUNCEMENTS_URL = '/api/v1/announcements'
const MASTODON_ANNOUNCEMENTS_DISMISS_URL = id => `/api/v1/announcements/${id}/dismiss`
const PLEROMA_EMOJI_REACTIONS_URL = id => `/api/v1/pleroma/statuses/${id}/reactions`
const PLEROMA_EMOJI_REACT_URL = (id, emoji) => `/api/v1/pleroma/statuses/${id}/reactions/${emoji}`
const PLEROMA_EMOJI_UNREACT_URL = (id, emoji) => `/api/v1/pleroma/statuses/${id}/reactions/${emoji}`
2022-07-31 18:35:48 +09:00
const PLEROMA_CHATS_URL = '/api/v1/pleroma/chats'
2020-05-07 22:10:53 +09:00
const PLEROMA_CHAT_URL = id => `/api/v1/pleroma/chats/by-account-id/${id}`
const PLEROMA_CHAT_MESSAGES_URL = id => `/api/v1/pleroma/chats/${id}/messages`
const PLEROMA_CHAT_READ_URL = id => `/api/v1/pleroma/chats/${id}/read`
const PLEROMA_DELETE_CHAT_MESSAGE_URL = (chatId, messageId) => `/api/v1/pleroma/chats/${chatId}/messages/${messageId}`
2021-01-12 02:32:58 +09:00
const PLEROMA_ADMIN_REPORTS = '/api/pleroma/admin/reports'
2022-05-09 13:38:25 +09:00
const PLEROMA_BACKUP_URL = '/api/v1/pleroma/backups'
2022-03-18 05:51:32 +09:00
const PLEROMA_ANNOUNCEMENTS_URL = '/api/v1/pleroma/admin/announcements'
2022-03-18 03:54:52 +09:00
const PLEROMA_POST_ANNOUNCEMENT_URL = '/api/v1/pleroma/admin/announcements'
2022-03-18 06:11:53 +09:00
const PLEROMA_EDIT_ANNOUNCEMENT_URL = id => `/api/v1/pleroma/admin/announcements/${id}`
2022-03-18 04:07:04 +09:00
const PLEROMA_DELETE_ANNOUNCEMENT_URL = id => `/api/v1/pleroma/admin/announcements/${id}`
const oldfetch = window.fetch
2016-10-28 01:03:14 +09:00
2022-07-31 18:35:48 +09:00
const fetch = (url, options) => {
options = options || {}
2016-11-22 23:45:40 +09:00
const baseUrl = ''
const fullUrl = baseUrl + url
options.credentials = 'same-origin'
return oldfetch(fullUrl, options)
2016-11-22 23:45:40 +09:00
}
const promisedRequest = ({ method, url, params, payload, credentials, headers = {} }) => {
const options = {
method,
headers: {
2022-07-31 18:35:48 +09:00
Accept: 'application/json',
'Content-Type': 'application/json',
...headers
}
}
if (params) {
url += '?' + Object.entries(params)
.map(([key, value]) => encodeURIComponent(key) + '=' + encodeURIComponent(value))
.join('&')
}
if (payload) {
options.body = JSON.stringify(payload)
}
if (credentials) {
options.headers = {
...options.headers,
...authHeaders(credentials)
}
}
return fetch(url, options)
.then((response) => {
return new Promise((resolve, reject) => response.json()
.then((json) => {
if (!response.ok) {
return reject(new StatusCodeError(response.status, json, { url, options }, response))
}
return resolve(json)
2020-10-29 19:33:06 +09:00
})
.catch((error) => {
return reject(new StatusCodeError(response.status, error, { url, options }, response))
})
)
})
}
2019-06-19 05:28:31 +09:00
const updateNotificationSettings = ({ credentials, settings }) => {
2019-05-25 16:01:02 +09:00
const form = new FormData()
each(settings, (value, key) => {
form.append(key, value)
})
2022-12-28 03:46:50 +09:00
return fetch(`${NOTIFICATION_SETTINGS_URL}?${new URLSearchParams(settings)}`, {
2019-05-25 16:01:02 +09:00
headers: authHeaders(credentials),
method: 'PUT',
body: form
2019-06-19 05:28:31 +09:00
}).then((data) => data.json())
2019-05-25 16:01:02 +09:00
}
const updateProfileImages = ({ credentials, avatar = null, avatarName = null, banner = null, background = null }) => {
2017-04-16 20:44:11 +09:00
const form = new FormData()
if (avatar !== null) {
if (avatarName !== null) {
form.append('avatar', avatar, avatarName)
} else {
form.append('avatar', avatar)
}
}
if (banner !== null) form.append('header', banner)
if (background !== null) form.append('pleroma_background_image', background)
return fetch(MASTODON_PROFILE_UPDATE_URL, {
headers: authHeaders(credentials),
method: 'PATCH',
body: form
})
.then((data) => data.json())
2020-12-02 19:46:31 +09:00
.then((data) => {
if (data.error) {
throw new Error(data.error)
}
return parseUser(data)
})
}
2019-06-19 05:28:31 +09:00
const updateProfile = ({ credentials, params }) => {
2019-05-01 05:38:34 +09:00
return promisedRequest({
url: MASTODON_PROFILE_UPDATE_URL,
method: 'PATCH',
2019-05-01 05:38:34 +09:00
payload: params,
credentials
2019-06-19 05:28:31 +09:00
}).then((data) => parseUser(data))
}
2017-04-16 01:12:23 +09:00
// Params needed:
// nickname
// email
// fullname
// password
// password_confirm
//
// Optional
// bio
// homepage
// location
2018-08-05 16:01:38 +09:00
// token
// language
const register = ({ params, credentials }) => {
const { nickname, ...rest } = params
return fetch(MASTODON_REGISTRATION_URL, {
2017-04-16 01:12:23 +09:00
method: 'POST',
headers: {
...authHeaders(credentials),
'Content-Type': 'application/json'
},
body: JSON.stringify({
nickname,
2019-06-13 06:47:06 +09:00
locale: 'en_US',
agreement: true,
...rest
})
2017-04-16 01:12:23 +09:00
})
.then((response) => {
if (response.ok) {
return response.json()
} else {
return response.json().then((error) => { throw new RegistrationError(error) })
}
})
2017-04-16 01:12:23 +09:00
}
const getCaptcha = () => fetch('/api/pleroma/captcha').then(resp => resp.json())
2018-10-26 22:16:23 +09:00
const authHeaders = (accessToken) => {
if (accessToken) {
2022-07-31 18:35:48 +09:00
return { Authorization: `Bearer ${accessToken}` }
} else {
return { }
}
}
2016-10-28 21:26:51 +09:00
2019-10-08 16:21:48 +09:00
const followUser = ({ id, credentials, ...options }) => {
2022-07-31 18:35:48 +09:00
const url = MASTODON_FOLLOW_URL(id)
2019-10-08 16:21:48 +09:00
const form = {}
2022-07-31 18:35:48 +09:00
if (options.reblogs !== undefined) { form.reblogs = options.reblogs }
2016-12-08 17:09:21 +09:00
return fetch(url, {
2019-10-08 16:21:48 +09:00
body: JSON.stringify(form),
headers: {
...authHeaders(credentials),
'Content-Type': 'application/json'
},
2016-12-08 17:09:21 +09:00
method: 'POST'
}).then((data) => data.json())
}
2019-06-19 05:28:31 +09:00
const unfollowUser = ({ id, credentials }) => {
2022-07-31 18:35:48 +09:00
const url = MASTODON_UNFOLLOW_URL(id)
2016-12-24 00:45:57 +09:00
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
const fetchUserInLists = ({ id, credentials }) => {
const url = MASTODON_USER_IN_LISTS(id)
return fetch(url, {
headers: authHeaders(credentials)
}).then((data) => data.json())
}
2019-04-05 00:27:02 +09:00
const pinOwnStatus = ({ id, credentials }) => {
2019-05-05 02:11:19 +09:00
return promisedRequest({ url: MASTODON_PIN_OWN_STATUS(id), credentials, method: 'POST' })
.then((data) => parseStatus(data))
2019-04-05 00:27:02 +09:00
}
const unpinOwnStatus = ({ id, credentials }) => {
2019-05-05 02:11:19 +09:00
return promisedRequest({ url: MASTODON_UNPIN_OWN_STATUS(id), credentials, method: 'POST' })
.then((data) => parseStatus(data))
2019-04-05 00:27:02 +09:00
}
const muteConversation = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_MUTE_CONVERSATION(id), credentials, method: 'POST' })
.then((data) => parseStatus(data))
}
const unmuteConversation = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_UNMUTE_CONVERSATION(id), credentials, method: 'POST' })
.then((data) => parseStatus(data))
}
2019-06-19 05:28:31 +09:00
const blockUser = ({ id, credentials }) => {
2019-03-22 10:44:59 +09:00
return fetch(MASTODON_BLOCK_USER_URL(id), {
2017-11-08 05:38:28 +09:00
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
2019-06-19 05:28:31 +09:00
const unblockUser = ({ id, credentials }) => {
2019-03-22 10:44:59 +09:00
return fetch(MASTODON_UNBLOCK_USER_URL(id), {
2017-11-08 05:38:28 +09:00
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
const removeUserFromFollowers = ({ id, credentials }) => {
return fetch(MASTODON_REMOVE_USER_FROM_FOLLOWERS(id), {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
2022-08-21 02:18:57 +09:00
const editUserNote = ({ id, credentials, comment }) => {
return promisedRequest({
url: MASTODON_USER_NOTE_URL(id),
credentials,
payload: {
comment
},
method: 'POST'
})
}
2019-06-19 05:28:31 +09:00
const approveUser = ({ id, credentials }) => {
2022-07-31 18:35:48 +09:00
const url = MASTODON_APPROVE_USER_URL(id)
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
2019-06-19 05:28:31 +09:00
const denyUser = ({ id, credentials }) => {
2022-07-31 18:35:48 +09:00
const url = MASTODON_DENY_USER_URL(id)
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
2019-06-19 05:28:31 +09:00
const fetchUser = ({ id, credentials }) => {
2022-07-31 18:35:48 +09:00
const url = `${MASTODON_USER_URL}/${id}`
return promisedRequest({ url, credentials })
2019-01-14 21:30:14 +09:00
.then((data) => parseUser(data))
}
const fetchUserByName = ({ name, credentials }) => {
return promisedRequest({
url: MASTODON_USER_LOOKUP_URL,
credentials,
params: { acct: name }
})
.then(data => data.id)
.catch(error => {
if (error && error.statusCode === 404) {
// Either the backend does not support lookup endpoint,
// or there is no user with such name. Fallback and treat name as id.
return name
} else {
throw error
}
})
.then(id => fetchUser({ id, credentials }))
}
2019-06-19 05:28:31 +09:00
const fetchUserRelationship = ({ id, credentials }) => {
2022-07-31 18:35:48 +09:00
const url = `${MASTODON_USER_RELATIONSHIPS_URL}/?id=${id}`
return fetch(url, { headers: authHeaders(credentials) })
.then((response) => {
return new Promise((resolve, reject) => response.json()
.then((json) => {
if (!response.ok) {
return reject(new StatusCodeError(response.status, json, { url }, response))
}
return resolve(json)
}))
})
}
2019-06-19 05:28:31 +09:00
const fetchFriends = ({ id, maxId, sinceId, limit = 20, credentials }) => {
let url = MASTODON_FOLLOWING_URL(id)
2019-03-26 04:04:52 +09:00
const args = [
maxId && `max_id=${maxId}`,
2019-03-28 05:02:46 +09:00
sinceId && `since_id=${sinceId}`,
2020-05-13 23:48:31 +09:00
limit && `limit=${limit}`,
2022-07-31 18:35:48 +09:00
'with_relationships=true'
2019-03-26 04:04:52 +09:00
].filter(_ => _).join('&')
url = url + (args ? '?' + args : '')
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
.then((data) => data.map(parseUser))
}
2019-06-19 05:28:31 +09:00
const exportFriends = ({ id, credentials }) => {
// eslint-disable-next-line no-async-promise-executor
2019-04-19 13:27:06 +09:00
return new Promise(async (resolve, reject) => {
try {
let friends = []
let more = true
while (more) {
const maxId = friends.length > 0 ? last(friends).id : undefined
2019-07-05 16:02:14 +09:00
const users = await fetchFriends({ id, maxId, credentials })
2019-04-19 13:27:06 +09:00
friends = concat(friends, users)
if (users.length === 0) {
more = false
}
}
resolve(friends)
} catch (err) {
reject(err)
}
})
2017-08-22 02:25:01 +09:00
}
2019-06-19 05:28:31 +09:00
const fetchFollowers = ({ id, maxId, sinceId, limit = 20, credentials }) => {
let url = MASTODON_FOLLOWERS_URL(id)
2019-03-26 04:04:52 +09:00
const args = [
maxId && `max_id=${maxId}`,
2019-03-28 05:02:46 +09:00
sinceId && `since_id=${sinceId}`,
2020-05-13 23:48:31 +09:00
limit && `limit=${limit}`,
2022-07-31 18:35:48 +09:00
'with_relationships=true'
2019-03-26 04:04:52 +09:00
].filter(_ => _).join('&')
2019-03-28 05:02:46 +09:00
url += args ? '?' + args : ''
2017-08-22 02:25:01 +09:00
return fetch(url, { headers: authHeaders(credentials) })
2016-12-01 05:27:25 +09:00
.then((data) => data.json())
2019-01-14 21:30:14 +09:00
.then((data) => data.map(parseUser))
2016-12-01 05:27:25 +09:00
}
2019-06-19 05:28:31 +09:00
const fetchFollowRequests = ({ credentials }) => {
2019-09-03 19:38:52 +09:00
const url = MASTODON_FOLLOW_REQUESTS_URL
2018-06-07 07:26:24 +09:00
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
2019-09-03 19:38:52 +09:00
.then((data) => data.map(parseUser))
2018-06-07 07:26:24 +09:00
}
2022-08-06 23:26:43 +09:00
const fetchLists = ({ credentials }) => {
const url = MASTODON_LISTS_URL
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
}
const createList = ({ title, credentials }) => {
const url = MASTODON_LISTS_URL
const headers = authHeaders(credentials)
headers['Content-Type'] = 'application/json'
return fetch(url, {
headers,
method: 'POST',
body: JSON.stringify({ title })
}).then((data) => data.json())
}
const getList = ({ listId, credentials }) => {
const url = MASTODON_LIST_URL(listId)
2022-08-06 23:26:43 +09:00
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
}
const updateList = ({ listId, title, credentials }) => {
const url = MASTODON_LIST_URL(listId)
2022-08-06 23:26:43 +09:00
const headers = authHeaders(credentials)
headers['Content-Type'] = 'application/json'
return fetch(url, {
headers,
method: 'PUT',
body: JSON.stringify({ title })
})
}
const getListAccounts = ({ listId, credentials }) => {
const url = MASTODON_LIST_ACCOUNTS_URL(listId)
2022-08-06 23:26:43 +09:00
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
.then((data) => data.map(({ id }) => id))
}
const addAccountsToList = ({ listId, accountIds, credentials }) => {
const url = MASTODON_LIST_ACCOUNTS_URL(listId)
2022-08-06 23:26:43 +09:00
const headers = authHeaders(credentials)
headers['Content-Type'] = 'application/json'
return fetch(url, {
headers,
method: 'POST',
body: JSON.stringify({ account_ids: accountIds })
})
}
const removeAccountsFromList = ({ listId, accountIds, credentials }) => {
const url = MASTODON_LIST_ACCOUNTS_URL(listId)
2022-08-06 23:26:43 +09:00
const headers = authHeaders(credentials)
headers['Content-Type'] = 'application/json'
return fetch(url, {
headers,
method: 'DELETE',
body: JSON.stringify({ account_ids: accountIds })
})
}
const deleteList = ({ listId, credentials }) => {
const url = MASTODON_LIST_URL(listId)
2022-08-06 23:26:43 +09:00
return fetch(url, {
method: 'DELETE',
headers: authHeaders(credentials)
})
}
2019-06-19 05:28:31 +09:00
const fetchConversation = ({ id, credentials }) => {
2022-07-31 18:35:48 +09:00
const urlContext = MASTODON_STATUS_CONTEXT_URL(id)
return fetch(urlContext, { headers: authHeaders(credentials) })
2019-01-15 04:58:23 +09:00
.then((data) => {
if (data.ok) {
return data
}
2019-01-18 05:22:51 +09:00
throw new Error('Error fetching timeline', data)
2019-01-15 04:58:23 +09:00
})
2019-01-18 05:22:51 +09:00
.then((data) => data.json())
2019-06-19 05:28:31 +09:00
.then(({ ancestors, descendants }) => ({
ancestors: ancestors.map(parseStatus),
descendants: descendants.map(parseStatus)
}))
}
2019-06-19 05:28:31 +09:00
const fetchStatus = ({ id, credentials }) => {
2022-07-31 18:35:48 +09:00
const url = MASTODON_STATUS_URL(id)
return fetch(url, { headers: authHeaders(credentials) })
2019-01-15 04:58:23 +09:00
.then((data) => {
if (data.ok) {
return data
}
2019-01-18 05:22:51 +09:00
throw new Error('Error fetching timeline', data)
2019-01-15 04:58:23 +09:00
})
2019-01-18 05:22:51 +09:00
.then((data) => data.json())
2019-01-15 04:58:23 +09:00
.then((data) => parseStatus(data))
}
2022-06-08 12:31:48 +09:00
const fetchStatusSource = ({ id, credentials }) => {
2022-08-02 09:45:52 +09:00
const url = MASTODON_STATUS_SOURCE_URL(id)
2022-06-08 12:31:48 +09:00
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => {
if (data.ok) {
return data
}
throw new Error('Error fetching source', data)
})
.then((data) => data.json())
.then((data) => parseSource(data))
}
const fetchStatusHistory = ({ status, credentials }) => {
2022-08-02 09:45:52 +09:00
const url = MASTODON_STATUS_HISTORY_URL(status.id)
return promisedRequest({ url, credentials })
2022-06-08 12:31:48 +09:00
.then((data) => {
data.reverse()
return data.map((item) => {
item.originalStatus = status
return parseStatus(item)
})
2022-06-08 12:31:48 +09:00
})
}
const tagUser = ({ tag, credentials, user }) => {
const screenName = user.screen_name
2019-02-18 23:49:32 +09:00
const form = {
nicknames: [screenName],
tags: [tag]
}
const headers = authHeaders(credentials)
headers['Content-Type'] = 'application/json'
return fetch(TAG_USER_URL, {
method: 'PUT',
2022-07-31 18:35:48 +09:00
headers,
2019-02-18 23:49:32 +09:00
body: JSON.stringify(form)
})
}
const untagUser = ({ tag, credentials, user }) => {
const screenName = user.screen_name
2019-02-18 23:49:32 +09:00
const body = {
nicknames: [screenName],
tags: [tag]
}
const headers = authHeaders(credentials)
headers['Content-Type'] = 'application/json'
return fetch(TAG_USER_URL, {
method: 'DELETE',
2022-07-31 18:35:48 +09:00
headers,
2019-02-18 23:49:32 +09:00
body: JSON.stringify(body)
})
}
const addRight = ({ right, credentials, user }) => {
2019-02-18 23:49:32 +09:00
const screenName = user.screen_name
return fetch(PERMISSION_GROUP_URL(screenName, right), {
2019-02-18 23:49:32 +09:00
method: 'POST',
headers: authHeaders(credentials),
body: {}
})
}
const deleteRight = ({ right, credentials, user }) => {
2019-02-18 23:49:32 +09:00
const screenName = user.screen_name
return fetch(PERMISSION_GROUP_URL(screenName, right), {
2019-02-18 23:49:32 +09:00
method: 'DELETE',
headers: authHeaders(credentials),
body: {}
})
}
const activateUser = ({ credentials, user: { screen_name: nickname } }) => {
return promisedRequest({
url: ACTIVATE_USER_URL,
method: 'PATCH',
credentials,
payload: {
nicknames: [nickname]
}
}).then(response => get(response, 'users.0'))
}
2019-02-18 23:49:32 +09:00
const deactivateUser = ({ credentials, user: { screen_name: nickname } }) => {
return promisedRequest({
url: DEACTIVATE_USER_URL,
method: 'PATCH',
credentials,
payload: {
nicknames: [nickname]
}
}).then(response => get(response, 'users.0'))
2019-02-18 23:49:32 +09:00
}
const deleteUser = ({ credentials, user }) => {
2019-02-18 23:49:32 +09:00
const screenName = user.screen_name
const headers = authHeaders(credentials)
return fetch(`${ADMIN_USERS_URL}?nickname=${screenName}`, {
2019-02-18 23:49:32 +09:00
method: 'DELETE',
2022-07-31 18:35:48 +09:00
headers
2019-02-18 23:49:32 +09:00
})
}
2019-06-19 05:28:31 +09:00
const fetchTimeline = ({
timeline,
credentials,
since = false,
until = false,
userId = false,
2022-08-06 23:26:43 +09:00
listId = false,
2019-06-19 05:28:31 +09:00
tag = false,
2020-06-30 23:02:38 +09:00
withMuted = false,
replyVisibility = 'all',
includeTypes = []
2019-06-19 05:28:31 +09:00
}) => {
2016-10-28 21:26:51 +09:00
const timelineUrls = {
2019-03-08 03:16:35 +09:00
public: MASTODON_PUBLIC_TIMELINE,
friends: MASTODON_USER_HOME_TIMELINE_URL,
2019-03-08 03:21:07 +09:00
dms: MASTODON_DIRECT_MESSAGES_TIMELINE_URL,
2019-03-13 06:16:57 +09:00
notifications: MASTODON_USER_NOTIFICATIONS_URL,
2022-07-31 18:35:48 +09:00
publicAndExternal: MASTODON_PUBLIC_TIMELINE,
2019-03-08 07:50:58 +09:00
user: MASTODON_USER_TIMELINE_URL,
media: MASTODON_USER_TIMELINE_URL,
2022-08-06 23:26:43 +09:00
list: MASTODON_LIST_TIMELINE_URL,
favorites: MASTODON_USER_FAVORITES_TIMELINE_URL,
tag: MASTODON_TAG_TIMELINE_URL,
bookmarks: MASTODON_BOOKMARK_TIMELINE_URL
2016-10-28 21:26:51 +09:00
}
const isNotifications = timeline === 'notifications'
const params = []
2016-10-28 21:26:51 +09:00
let url = timelineUrls[timeline]
2017-06-12 23:00:46 +09:00
2019-03-08 07:50:58 +09:00
if (timeline === 'user' || timeline === 'media') {
url = url(userId)
}
2022-08-06 23:26:43 +09:00
if (timeline === 'list') {
url = url(listId)
}
2016-10-28 21:26:51 +09:00
if (since) {
2017-06-12 23:20:02 +09:00
params.push(['since_id', since])
2016-10-28 21:26:51 +09:00
}
if (until) {
2017-06-12 23:20:02 +09:00
params.push(['max_id', until])
2017-06-12 23:00:46 +09:00
}
2017-09-17 20:26:35 +09:00
if (tag) {
url = url(tag)
2017-09-17 20:26:35 +09:00
}
if (timeline === 'media') {
params.push(['only_media', 1])
}
2019-03-08 03:16:35 +09:00
if (timeline === 'public') {
params.push(['local', true])
}
if (timeline === 'public' || timeline === 'publicAndExternal') {
params.push(['only_media', false])
}
if (timeline !== 'favorites' && timeline !== 'bookmarks') {
params.push(['with_muted', withMuted])
}
2020-06-30 23:02:38 +09:00
if (replyVisibility !== 'all') {
params.push(['reply_visibility', replyVisibility])
}
if (includeTypes.length > 0) {
includeTypes.forEach(type => {
params.push(['include_types[]', type])
})
}
2016-10-28 21:26:51 +09:00
2020-04-13 20:26:55 +09:00
params.push(['limit', 20])
2017-06-13 00:35:04 +09:00
const queryString = map(params, (param) => `${param[0]}=${param[1]}`).join('&')
2017-06-12 23:00:46 +09:00
url += `?${queryString}`
2020-09-29 19:18:37 +09:00
return fetch(url, { headers: authHeaders(credentials) })
.then(async (response) => {
const success = response.ok
const data = await response.json()
if (success && !data.errors) {
const pagination = parseLinkHeaderPagination(response.headers.get('Link'), {
flakeId: timeline !== 'bookmarks' && timeline !== 'notifications'
})
return { data: data.map(isNotifications ? parseNotification : parseStatus), pagination }
2019-12-05 11:48:37 +09:00
} else {
data.errors ||= []
data.status = response.status
data.statusText = response.statusText
return data
}
})
2016-10-28 21:26:51 +09:00
}
const fetchPinnedStatuses = ({ id, credentials }) => {
const url = MASTODON_USER_TIMELINE_URL(id) + '?pinned=true'
2019-05-05 02:11:19 +09:00
return promisedRequest({ url, credentials })
.then((data) => data.map(parseStatus))
}
2016-10-28 21:26:51 +09:00
const verifyCredentials = (user) => {
2019-05-22 05:35:40 +09:00
return fetch(MASTODON_LOGIN_URL, {
2016-10-28 21:26:51 +09:00
headers: authHeaders(user)
})
2019-01-18 04:11:51 +09:00
.then((response) => {
if (response.ok) {
return response.json()
} else {
return {
error: response
}
}
})
2019-01-18 05:01:38 +09:00
.then((data) => data.error ? data : parseUser(data))
2016-10-28 21:26:51 +09:00
}
2016-10-31 00:12:35 +09:00
const favorite = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_FAVORITE_URL(id), method: 'POST', credentials })
.then((data) => parseStatus(data))
2016-10-31 00:12:35 +09:00
}
const unfavorite = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_UNFAVORITE_URL(id), method: 'POST', credentials })
.then((data) => parseStatus(data))
2016-10-31 00:12:35 +09:00
}
const retweet = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_RETWEET_URL(id), method: 'POST', credentials })
.then((data) => parseStatus(data))
}
2018-06-14 18:00:11 +09:00
const unretweet = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_UNRETWEET_URL(id), method: 'POST', credentials })
.then((data) => parseStatus(data))
2018-06-14 18:00:11 +09:00
}
const bookmarkStatus = ({ id, credentials }) => {
return promisedRequest({
url: MASTODON_BOOKMARK_STATUS_URL(id),
headers: authHeaders(credentials),
method: 'POST'
})
}
const unbookmarkStatus = ({ id, credentials }) => {
return promisedRequest({
url: MASTODON_UNBOOKMARK_STATUS_URL(id),
headers: authHeaders(credentials),
method: 'POST'
})
}
2019-06-19 05:28:31 +09:00
const postStatus = ({
credentials,
status,
spoilerText,
visibility,
sensitive,
poll,
mediaIds = [],
inReplyToStatusId,
2020-06-28 18:16:41 +09:00
contentType,
2020-07-15 22:19:57 +09:00
preview,
idempotencyKey
2019-06-19 05:28:31 +09:00
}) => {
2016-10-31 00:53:58 +09:00
const form = new FormData()
2019-06-19 05:28:31 +09:00
const pollOptions = poll.options || []
2016-10-31 00:53:58 +09:00
form.append('status', status)
form.append('source', 'Pleroma FE')
2018-06-07 18:03:50 +09:00
if (spoilerText) form.append('spoiler_text', spoilerText)
if (visibility) form.append('visibility', visibility)
if (sensitive) form.append('sensitive', sensitive)
if (contentType) form.append('content_type', contentType)
2019-03-18 12:22:54 +09:00
mediaIds.forEach(val => {
form.append('media_ids[]', val)
})
2019-06-19 05:28:31 +09:00
if (pollOptions.some(option => option !== '')) {
const normalizedPoll = {
expires_in: parseInt(poll.expiresIn, 10),
2019-06-19 05:28:31 +09:00
multiple: poll.multiple
}
Object.keys(normalizedPoll).forEach(key => {
form.append(`poll[${key}]`, normalizedPoll[key])
})
pollOptions.forEach(option => {
form.append('poll[options][]', option)
})
}
2016-10-31 00:53:58 +09:00
if (inReplyToStatusId) {
form.append('in_reply_to_id', inReplyToStatusId)
2016-10-31 00:53:58 +09:00
}
2020-06-28 18:16:41 +09:00
if (preview) {
form.append('preview', 'true')
}
2016-10-31 00:53:58 +09:00
2022-07-31 18:35:48 +09:00
const postHeaders = authHeaders(credentials)
2020-07-15 22:19:57 +09:00
if (idempotencyKey) {
postHeaders['idempotency-key'] = idempotencyKey
}
return fetch(MASTODON_POST_STATUS_URL, {
2016-10-31 00:53:58 +09:00
body: form,
method: 'POST',
2020-07-15 22:19:57 +09:00
headers: postHeaders
2016-10-31 00:53:58 +09:00
})
2019-01-18 05:01:38 +09:00
.then((response) => {
2020-06-28 18:16:41 +09:00
return response.json()
2019-01-18 05:01:38 +09:00
})
.then((data) => data.error ? data : parseStatus(data))
2016-10-31 00:53:58 +09:00
}
2022-06-08 12:31:48 +09:00
const editStatus = ({
id,
credentials,
status,
spoilerText,
sensitive,
poll,
mediaIds = [],
contentType
}) => {
const form = new FormData()
const pollOptions = poll.options || []
form.append('status', status)
if (spoilerText) form.append('spoiler_text', spoilerText)
if (sensitive) form.append('sensitive', sensitive)
if (contentType) form.append('content_type', contentType)
mediaIds.forEach(val => {
form.append('media_ids[]', val)
})
if (pollOptions.some(option => option !== '')) {
const normalizedPoll = {
expires_in: parseInt(poll.expiresIn, 10),
2022-06-08 12:31:48 +09:00
multiple: poll.multiple
}
Object.keys(normalizedPoll).forEach(key => {
form.append(`poll[${key}]`, normalizedPoll[key])
})
pollOptions.forEach(option => {
form.append('poll[options][]', option)
})
}
2022-08-02 09:45:52 +09:00
const putHeaders = authHeaders(credentials)
2022-06-08 12:31:48 +09:00
return fetch(MASTODON_STATUS_URL(id), {
body: form,
method: 'PUT',
headers: putHeaders
})
.then((response) => {
return response.json()
})
.then((data) => data.error ? data : parseStatus(data))
}
const deleteStatus = ({ id, credentials }) => {
return fetch(MASTODON_DELETE_URL(id), {
headers: authHeaders(credentials),
method: 'DELETE'
})
}
2019-06-19 05:28:31 +09:00
const uploadMedia = ({ formData, credentials }) => {
return fetch(MASTODON_MEDIA_UPLOAD_URL, {
2016-11-07 03:29:41 +09:00
body: formData,
method: 'POST',
headers: authHeaders(credentials)
})
2019-03-18 12:22:54 +09:00
.then((data) => data.json())
.then((data) => parseAttachment(data))
2016-11-07 03:29:41 +09:00
}
2020-07-07 15:07:20 +09:00
const setMediaDescription = ({ id, description, credentials }) => {
return promisedRequest({
url: `${MASTODON_MEDIA_UPLOAD_URL}/${id}`,
method: 'PUT',
headers: authHeaders(credentials),
payload: {
description
}
}).then((data) => parseAttachment(data))
}
2020-09-07 20:27:37 +09:00
const importMutes = ({ file, credentials }) => {
const formData = new FormData()
formData.append('list', file)
return fetch(MUTES_IMPORT_URL, {
body: formData,
method: 'POST',
headers: authHeaders(credentials)
})
.then((response) => response.ok)
}
2019-06-19 05:28:31 +09:00
const importBlocks = ({ file, credentials }) => {
2019-03-30 20:27:53 +09:00
const formData = new FormData()
formData.append('list', file)
return fetch(BLOCKS_IMPORT_URL, {
body: formData,
method: 'POST',
headers: authHeaders(credentials)
})
.then((response) => response.ok)
}
2019-06-19 05:28:31 +09:00
const importFollows = ({ file, credentials }) => {
const formData = new FormData()
formData.append('list', file)
2017-12-23 23:44:22 +09:00
return fetch(FOLLOW_IMPORT_URL, {
body: formData,
2017-12-23 23:44:22 +09:00
method: 'POST',
headers: authHeaders(credentials)
})
.then((response) => response.ok)
}
2019-06-19 05:28:31 +09:00
const deleteAccount = ({ credentials, password }) => {
const form = new FormData()
form.append('password', password)
return fetch(DELETE_ACCOUNT_URL, {
body: form,
method: 'POST',
headers: authHeaders(credentials)
})
.then((response) => response.json())
}
2019-11-08 11:21:19 +09:00
const changeEmail = ({ credentials, email, password }) => {
const form = new FormData()
form.append('email', email)
form.append('password', password)
return fetch(CHANGE_EMAIL_URL, {
body: form,
method: 'POST',
headers: authHeaders(credentials)
})
.then((response) => response.json())
}
const moveAccount = ({ credentials, password, targetAccount }) => {
const form = new FormData()
form.append('password', password)
form.append('target_account', targetAccount)
return fetch(MOVE_ACCOUNT_URL, {
body: form,
method: 'POST',
headers: authHeaders(credentials)
})
.then((response) => response.json())
}
const addAlias = ({ credentials, alias }) => {
return promisedRequest({
url: ALIASES_URL,
method: 'PUT',
credentials,
payload: { alias }
})
}
const deleteAlias = ({ credentials, alias }) => {
return promisedRequest({
url: ALIASES_URL,
method: 'DELETE',
credentials,
payload: { alias }
})
}
const listAliases = ({ credentials }) => {
return promisedRequest({
url: ALIASES_URL,
method: 'GET',
credentials,
params: {
_cacheBooster: (new Date()).getTime()
}
})
}
2019-06-19 05:28:31 +09:00
const changePassword = ({ credentials, password, newPassword, newPasswordConfirmation }) => {
2018-05-22 07:01:09 +09:00
const form = new FormData()
form.append('password', password)
form.append('new_password', newPassword)
form.append('new_password_confirmation', newPasswordConfirmation)
return fetch(CHANGE_PASSWORD_URL, {
body: form,
method: 'POST',
headers: authHeaders(credentials)
})
.then((response) => response.json())
}
2019-06-19 05:28:31 +09:00
const settingsMFA = ({ credentials }) => {
return fetch(MFA_SETTINGS_URL, {
headers: authHeaders(credentials),
method: 'GET'
}).then((data) => data.json())
}
2019-06-19 05:28:31 +09:00
const mfaDisableOTP = ({ credentials, password }) => {
const form = new FormData()
form.append('password', password)
return fetch(MFA_DISABLE_OTP_URL, {
body: form,
method: 'DELETE',
headers: authHeaders(credentials)
})
.then((response) => response.json())
}
2019-06-19 05:28:31 +09:00
const mfaConfirmOTP = ({ credentials, password, token }) => {
const form = new FormData()
form.append('password', password)
form.append('code', token)
return fetch(MFA_CONFIRM_OTP_URL, {
body: form,
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
2019-06-19 05:28:31 +09:00
const mfaSetupOTP = ({ credentials }) => {
return fetch(MFA_SETUP_OTP_URL, {
headers: authHeaders(credentials),
method: 'GET'
}).then((data) => data.json())
}
2019-06-19 05:28:31 +09:00
const generateMfaBackupCodes = ({ credentials }) => {
return fetch(MFA_BACKUP_CODES_URL, {
headers: authHeaders(credentials),
method: 'GET'
}).then((data) => data.json())
}
2019-06-19 05:28:31 +09:00
const fetchMutes = ({ credentials }) => {
return promisedRequest({ url: MASTODON_USER_MUTES_URL, credentials })
2019-03-22 10:27:10 +09:00
.then((users) => users.map(parseUser))
}
2022-05-01 00:08:19 +09:00
const muteUser = ({ id, expiresIn, credentials }) => {
const payload = {}
if (expiresIn) {
2022-08-02 00:08:32 +09:00
payload.expires_in = expiresIn
2022-05-01 00:08:19 +09:00
}
return promisedRequest({ url: MASTODON_MUTE_USER_URL(id), credentials, method: 'POST', payload })
}
2019-06-19 05:28:31 +09:00
const unmuteUser = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_UNMUTE_USER_URL(id), credentials, method: 'POST' })
2019-02-14 02:05:23 +09:00
}
const subscribeUser = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_SUBSCRIBE_USER(id), credentials, method: 'POST' })
}
const unsubscribeUser = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_UNSUBSCRIBE_USER(id), credentials, method: 'POST' })
}
2019-06-19 05:28:31 +09:00
const fetchBlocks = ({ credentials }) => {
return promisedRequest({ url: MASTODON_USER_BLOCKS_URL, credentials })
2019-03-22 10:27:10 +09:00
.then((users) => users.map(parseUser))
2019-02-14 02:05:23 +09:00
}
2022-05-09 13:38:25 +09:00
const addBackup = ({ credentials }) => {
return promisedRequest({
url: PLEROMA_BACKUP_URL,
method: 'POST',
credentials
})
}
const listBackups = ({ credentials }) => {
return promisedRequest({
url: PLEROMA_BACKUP_URL,
method: 'GET',
credentials,
params: {
_cacheBooster: (new Date()).getTime()
}
})
}
2019-06-19 05:28:31 +09:00
const fetchOAuthTokens = ({ credentials }) => {
const url = '/api/oauth_tokens.json'
return fetch(url, {
headers: authHeaders(credentials)
2019-03-22 01:04:57 +09:00
}).then((data) => {
if (data.ok) {
return data.json()
}
throw new Error('Error fetching auth tokens', data)
})
}
2019-06-19 05:28:31 +09:00
const revokeOAuthToken = ({ id, credentials }) => {
const url = `/api/oauth_tokens/${id}`
return fetch(url, {
headers: authHeaders(credentials),
method: 'DELETE'
})
}
2019-06-19 05:28:31 +09:00
const suggestions = ({ credentials }) => {
2018-08-02 18:34:12 +09:00
return fetch(SUGGESTIONS_URL, {
headers: authHeaders(credentials)
}).then((data) => data.json())
}
const markNotificationsAsSeen = ({ id, credentials, single = false }) => {
const body = new FormData()
if (single) {
body.append('id', id)
} else {
body.append('max_id', id)
}
return fetch(NOTIFICATION_READ_URL, {
body,
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
2019-06-19 05:28:31 +09:00
const vote = ({ pollId, choices, credentials }) => {
const form = new FormData()
form.append('choices', choices)
return promisedRequest({
url: MASTODON_VOTE_URL(encodeURIComponent(pollId)),
method: 'POST',
credentials,
payload: {
2022-07-31 18:35:48 +09:00
choices
2019-06-19 05:28:31 +09:00
}
})
}
const fetchPoll = ({ pollId, credentials }) => {
return promisedRequest(
{
url: MASTODON_POLL_URL(encodeURIComponent(pollId)),
method: 'GET',
credentials
}
)
}
const fetchFavoritedByUsers = ({ id, credentials }) => {
return promisedRequest({
url: MASTODON_STATUS_FAVORITEDBY_URL(id),
method: 'GET',
credentials
}).then((users) => users.map(parseUser))
2019-04-02 11:29:45 +09:00
}
const fetchRebloggedByUsers = ({ id, credentials }) => {
return promisedRequest({
url: MASTODON_STATUS_REBLOGGEDBY_URL(id),
method: 'GET',
credentials
}).then((users) => users.map(parseUser))
2019-04-02 11:29:45 +09:00
}
const fetchEmojiReactions = ({ id, credentials }) => {
return promisedRequest({ url: PLEROMA_EMOJI_REACTIONS_URL(id), credentials })
.then((reactions) => reactions.map(r => {
r.accounts = r.accounts.map(parseUser)
return r
}))
}
const reactWithEmoji = ({ id, emoji, credentials }) => {
return promisedRequest({
url: PLEROMA_EMOJI_REACT_URL(id, emoji),
method: 'PUT',
credentials
2020-01-28 01:43:26 +09:00
}).then(parseStatus)
}
const unreactWithEmoji = ({ id, emoji, credentials }) => {
return promisedRequest({
url: PLEROMA_EMOJI_UNREACT_URL(id, emoji),
method: 'DELETE',
credentials
}).then(parseStatus)
}
2019-06-19 05:28:31 +09:00
const reportUser = ({ credentials, userId, statusIds, comment, forward }) => {
2019-03-21 00:54:16 +09:00
return promisedRequest({
url: MASTODON_REPORT_USER_URL,
2019-03-21 00:54:16 +09:00
method: 'POST',
payload: {
2022-07-31 18:35:48 +09:00
account_id: userId,
status_ids: statusIds,
2019-03-21 00:54:16 +09:00
comment,
forward
2019-03-21 00:45:19 +09:00
},
2019-03-21 00:54:16 +09:00
credentials
})
2019-03-21 00:45:19 +09:00
}
2020-05-14 00:04:30 +09:00
const searchUsers = ({ credentials, query }) => {
return promisedRequest({
url: MASTODON_USER_SEARCH_URL,
params: {
q: query,
2020-05-14 00:04:30 +09:00
resolve: true
},
credentials
})
.then((data) => data.map(parseUser))
}
2022-07-16 09:22:39 +09:00
const search2 = ({ credentials, q, resolve, limit, offset, following, type }) => {
2019-07-16 01:42:27 +09:00
let url = MASTODON_SEARCH_2
2022-07-31 18:35:48 +09:00
const params = []
2019-07-16 01:42:27 +09:00
if (q) {
params.push(['q', encodeURIComponent(q)])
}
if (resolve) {
params.push(['resolve', resolve])
}
if (limit) {
params.push(['limit', limit])
}
if (offset) {
params.push(['offset', offset])
}
if (following) {
params.push(['following', true])
}
2022-07-16 09:22:39 +09:00
if (type) {
params.push(['following', type])
}
2020-05-13 23:48:31 +09:00
params.push(['with_relationships', true])
2022-07-31 18:35:48 +09:00
const queryString = map(params, (param) => `${param[0]}=${param[1]}`).join('&')
2019-07-16 01:42:27 +09:00
url += `?${queryString}`
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => {
if (data.ok) {
return data
}
throw new Error('Error fetching search result', data)
})
.then((data) => { return data.json() })
.then((data) => {
data.accounts = data.accounts.slice(0, limit).map(u => parseUser(u))
data.statuses = data.statuses.slice(0, limit).map(s => parseStatus(s))
return data
})
}
const fetchKnownDomains = ({ credentials }) => {
return promisedRequest({ url: MASTODON_KNOWN_DOMAIN_LIST_URL, credentials })
}
2020-01-16 05:22:54 +09:00
const fetchDomainMutes = ({ credentials }) => {
return promisedRequest({ url: MASTODON_DOMAIN_BLOCKS_URL, credentials })
}
const muteDomain = ({ domain, credentials }) => {
return promisedRequest({
url: MASTODON_DOMAIN_BLOCKS_URL,
method: 'POST',
payload: { domain },
credentials
})
}
const unmuteDomain = ({ domain, credentials }) => {
return promisedRequest({
url: MASTODON_DOMAIN_BLOCKS_URL,
method: 'DELETE',
payload: { domain },
credentials
})
}
const dismissNotification = ({ credentials, id }) => {
return promisedRequest({
url: MASTODON_DISMISS_NOTIFICATION_URL(id),
method: 'POST',
payload: { id },
credentials
})
}
2022-03-18 05:51:32 +09:00
const adminFetchAnnouncements = ({ credentials }) => {
return promisedRequest({ url: PLEROMA_ANNOUNCEMENTS_URL, credentials })
}
2022-03-18 03:01:45 +09:00
const fetchAnnouncements = ({ credentials }) => {
return promisedRequest({ url: MASTODON_ANNOUNCEMENTS_URL, credentials })
}
const dismissAnnouncement = ({ id, credentials }) => {
return promisedRequest({
url: MASTODON_ANNOUNCEMENTS_DISMISS_URL(id),
credentials,
method: 'POST'
})
}
2022-03-18 06:11:53 +09:00
const announcementToPayload = ({ content, startsAt, endsAt, allDay }) => {
2022-03-18 03:54:52 +09:00
const payload = { content }
if (typeof startsAt !== 'undefined') {
2022-08-02 00:08:09 +09:00
payload.starts_at = startsAt ? new Date(startsAt).toISOString() : null
2022-03-18 03:54:52 +09:00
}
if (typeof endsAt !== 'undefined') {
2022-08-02 00:08:09 +09:00
payload.ends_at = endsAt ? new Date(endsAt).toISOString() : null
2022-03-18 03:54:52 +09:00
}
if (typeof allDay !== 'undefined') {
2022-08-02 00:08:09 +09:00
payload.all_day = allDay
2022-03-18 03:54:52 +09:00
}
2022-03-18 06:11:53 +09:00
return payload
}
const postAnnouncement = ({ credentials, content, startsAt, endsAt, allDay }) => {
2022-03-18 03:54:52 +09:00
return promisedRequest({
url: PLEROMA_POST_ANNOUNCEMENT_URL,
credentials,
method: 'POST',
2022-03-18 06:11:53 +09:00
payload: announcementToPayload({ content, startsAt, endsAt, allDay })
})
}
const editAnnouncement = ({ id, credentials, content, startsAt, endsAt, allDay }) => {
return promisedRequest({
url: PLEROMA_EDIT_ANNOUNCEMENT_URL(id),
credentials,
method: 'PATCH',
payload: announcementToPayload({ content, startsAt, endsAt, allDay })
2022-03-18 03:54:52 +09:00
})
}
2022-03-18 04:07:04 +09:00
const deleteAnnouncement = ({ id, credentials }) => {
return promisedRequest({
url: PLEROMA_DELETE_ANNOUNCEMENT_URL(id),
credentials,
method: 'DELETE'
})
}
2019-11-25 01:50:28 +09:00
export const getMastodonSocketURI = ({ credentials, stream, args = {} }) => {
return Object.entries({
...(credentials
? { access_token: credentials }
: {}
),
stream,
...args
}).reduce((acc, [key, val]) => {
return acc + `${key}=${val}&`
}, MASTODON_STREAMING + '?')
}
const MASTODON_STREAMING_EVENTS = new Set([
'update',
'notification',
'delete',
2022-06-08 12:31:48 +09:00
'filters_changed',
'status.update'
2019-11-25 01:50:28 +09:00
])
2020-05-07 22:10:53 +09:00
const PLEROMA_STREAMING_EVENTS = new Set([
'pleroma:chat_update'
])
2019-12-09 02:18:38 +09:00
// A thin wrapper around WebSocket API that allows adding a pre-processor to it
// Uses EventTarget and a CustomEvent to proxy events
export const ProcessedWS = ({
url,
preprocessor = handleMastoWS,
id = 'Unknown'
}) => {
const eventTarget = new EventTarget()
const socket = new WebSocket(url)
if (!socket) throw new Error(`Failed to create socket ${id}`)
const proxy = (original, eventName, processor = a => a) => {
original.addEventListener(eventName, (eventData) => {
eventTarget.dispatchEvent(new CustomEvent(
eventName,
{ detail: processor(eventData) }
))
})
}
socket.addEventListener('open', (wsEvent) => {
console.debug(`[WS][${id}] Socket connected`, wsEvent)
})
socket.addEventListener('error', (wsEvent) => {
console.debug(`[WS][${id}] Socket errored`, wsEvent)
})
socket.addEventListener('close', (wsEvent) => {
console.debug(
`[WS][${id}] Socket disconnected with code ${wsEvent.code}`,
wsEvent
)
})
2019-12-11 04:30:27 +09:00
// Commented code reason: very spammy, uncomment to enable message debug logging
/*
2019-12-09 02:18:38 +09:00
socket.addEventListener('message', (wsEvent) => {
console.debug(
`[WS][${id}] Message received`,
wsEvent
)
})
2019-12-11 04:30:27 +09:00
/**/
2019-12-09 02:18:38 +09:00
proxy(socket, 'open')
proxy(socket, 'close')
proxy(socket, 'message', preprocessor)
proxy(socket, 'error')
2019-12-11 04:30:27 +09:00
// 1000 = Normal Closure
eventTarget.close = () => { socket.close(1000, 'Shutting down socket') }
eventTarget.getState = () => socket.readyState
2019-12-11 04:30:27 +09:00
2019-12-09 02:18:38 +09:00
return eventTarget
}
2019-11-25 01:50:28 +09:00
export const handleMastoWS = (wsEvent) => {
const { data } = wsEvent
if (!data) return
const parsedEvent = JSON.parse(data)
const { event, payload } = parsedEvent
2020-05-07 22:10:53 +09:00
if (MASTODON_STREAMING_EVENTS.has(event) || PLEROMA_STREAMING_EVENTS.has(event)) {
2019-12-12 01:20:43 +09:00
// MastoBE and PleromaBE both send payload for delete as a PLAIN string
if (event === 'delete') {
return { event, id: payload }
}
2019-11-25 01:50:28 +09:00
const data = payload ? JSON.parse(payload) : null
if (event === 'update') {
return { event, status: parseStatus(data) }
2022-06-08 12:31:48 +09:00
} else if (event === 'status.update') {
return { event, status: parseStatus(data) }
2019-11-25 01:50:28 +09:00
} else if (event === 'notification') {
return { event, notification: parseNotification(data) }
2020-05-07 22:10:53 +09:00
} else if (event === 'pleroma:chat_update') {
return { event, chatUpdate: parseChat(data) }
2019-11-25 01:50:28 +09:00
}
} else {
console.warn('Unknown event', wsEvent)
return null
}
}
2020-05-07 22:10:53 +09:00
export const WSConnectionStatus = Object.freeze({
2022-07-31 18:35:48 +09:00
JOINED: 1,
CLOSED: 2,
ERROR: 3,
DISABLED: 4,
STARTING: 5,
STARTING_INITIAL: 6
2020-05-07 22:10:53 +09:00
})
const chats = ({ credentials }) => {
return fetch(PLEROMA_CHATS_URL, { headers: authHeaders(credentials) })
.then((data) => data.json())
.then((data) => {
return { chats: data.map(parseChat).filter(c => c) }
})
}
const getOrCreateChat = ({ accountId, credentials }) => {
return promisedRequest({
url: PLEROMA_CHAT_URL(accountId),
method: 'POST',
credentials
})
}
const chatMessages = ({ id, credentials, maxId, sinceId, limit = 20 }) => {
let url = PLEROMA_CHAT_MESSAGES_URL(id)
const args = [
maxId && `max_id=${maxId}`,
sinceId && `since_id=${sinceId}`,
limit && `limit=${limit}`
].filter(_ => _).join('&')
url = url + (args ? '?' + args : '')
return promisedRequest({
url,
method: 'GET',
credentials
})
}
2020-10-29 19:33:06 +09:00
const sendChatMessage = ({ id, content, mediaId = null, idempotencyKey, credentials }) => {
2020-05-07 22:10:53 +09:00
const payload = {
2022-07-31 18:35:48 +09:00
content
2020-05-07 22:10:53 +09:00
}
if (mediaId) {
2022-07-31 18:35:48 +09:00
payload.media_id = mediaId
2020-05-07 22:10:53 +09:00
}
2020-10-29 19:33:06 +09:00
const headers = {}
if (idempotencyKey) {
headers['idempotency-key'] = idempotencyKey
}
2020-05-07 22:10:53 +09:00
return promisedRequest({
url: PLEROMA_CHAT_MESSAGES_URL(id),
method: 'POST',
2022-07-31 18:35:48 +09:00
payload,
2020-10-29 19:33:06 +09:00
credentials,
headers
2020-05-07 22:10:53 +09:00
})
}
const readChat = ({ id, lastReadId, credentials }) => {
return promisedRequest({
url: PLEROMA_CHAT_READ_URL(id),
method: 'POST',
payload: {
2022-07-31 18:35:48 +09:00
last_read_id: lastReadId
2020-05-07 22:10:53 +09:00
},
credentials
})
}
const deleteChatMessage = ({ chatId, messageId, credentials }) => {
return promisedRequest({
url: PLEROMA_DELETE_CHAT_MESSAGE_URL(chatId, messageId),
method: 'DELETE',
credentials
})
}
2021-01-12 02:32:58 +09:00
const setReportState = ({ id, state, credentials }) => {
// TODO: Can't use promisedRequest because on OK this does not return json
// See https://git.pleroma.social/pleroma/pleroma-fe/-/merge_requests/1322
return fetch(PLEROMA_ADMIN_REPORTS, {
headers: {
...authHeaders(credentials),
2022-08-07 13:15:34 +09:00
Accept: 'application/json',
'Content-Type': 'application/json'
},
2021-01-12 02:32:58 +09:00
method: 'PATCH',
body: JSON.stringify({
reports: [{
id,
state
}]
})
2021-01-12 02:32:58 +09:00
})
.then(data => {
if (data.status >= 500) {
throw Error(data.statusText)
} else if (data.status >= 400) {
return data.json()
}
return data
})
.then(data => {
if (data.errors) {
throw Error(data.errors[0].message)
}
})
2021-01-12 02:32:58 +09:00
}
2016-10-28 21:26:51 +09:00
const apiService = {
verifyCredentials,
2016-10-31 00:12:35 +09:00
fetchTimeline,
fetchPinnedStatuses,
fetchConversation,
fetchStatus,
2022-06-08 12:31:48 +09:00
fetchStatusSource,
fetchStatusHistory,
2016-12-01 05:27:25 +09:00
fetchFriends,
exportFriends,
2017-08-22 02:25:01 +09:00
fetchFollowers,
2016-12-08 17:09:21 +09:00
followUser,
2016-12-24 00:45:57 +09:00
unfollowUser,
2019-04-05 00:27:02 +09:00
pinOwnStatus,
unpinOwnStatus,
muteConversation,
unmuteConversation,
2017-11-08 05:38:28 +09:00
blockUser,
unblockUser,
removeUserFromFollowers,
2022-08-21 02:18:57 +09:00
editUserNote,
fetchUser,
fetchUserByName,
fetchUserRelationship,
2016-10-31 00:12:35 +09:00
favorite,
2016-10-31 00:53:58 +09:00
unfavorite,
retweet,
2018-06-14 18:00:11 +09:00
unretweet,
bookmarkStatus,
unbookmarkStatus,
2016-11-07 03:29:41 +09:00
postStatus,
2022-06-08 12:31:48 +09:00
editStatus,
deleteStatus,
2017-02-14 06:55:38 +09:00
uploadMedia,
2020-07-07 15:07:20 +09:00
setMediaDescription,
2017-04-16 01:12:23 +09:00
fetchMutes,
muteUser,
unmuteUser,
subscribeUser,
unsubscribeUser,
2019-02-14 02:05:23 +09:00
fetchBlocks,
fetchOAuthTokens,
revokeOAuthToken,
2019-02-18 23:49:32 +09:00
tagUser,
untagUser,
deleteUser,
addRight,
deleteRight,
activateUser,
deactivateUser,
2017-04-16 20:44:11 +09:00
register,
getCaptcha,
updateProfileImages,
updateProfile,
2020-09-07 20:27:37 +09:00
importMutes,
2019-03-30 20:27:53 +09:00
importBlocks,
2019-03-30 20:22:30 +09:00
importFollows,
2018-05-22 07:01:09 +09:00
deleteAccount,
2019-11-08 11:21:19 +09:00
changeEmail,
moveAccount,
addAlias,
deleteAlias,
listAliases,
2018-06-07 07:26:24 +09:00
changePassword,
settingsMFA,
mfaDisableOTP,
generateMfaBackupCodes,
mfaSetupOTP,
mfaConfirmOTP,
2022-05-09 13:38:25 +09:00
addBackup,
listBackups,
fetchFollowRequests,
2022-08-06 23:26:43 +09:00
fetchLists,
createList,
getList,
updateList,
getListAccounts,
addAccountsToList,
removeAccountsFromList,
deleteList,
approveUser,
2018-08-02 18:34:12 +09:00
denyUser,
suggestions,
2019-04-02 11:30:06 +09:00
markNotificationsAsSeen,
dismissNotification,
2019-06-19 05:28:31 +09:00
vote,
fetchPoll,
2019-04-03 01:13:55 +09:00
fetchFavoritedByUsers,
2019-03-21 00:45:19 +09:00
fetchRebloggedByUsers,
fetchEmojiReactions,
reactWithEmoji,
unreactWithEmoji,
2019-05-25 16:01:02 +09:00
reportUser,
updateNotificationSettings,
search2,
2020-01-16 05:22:54 +09:00
searchUsers,
fetchKnownDomains,
2020-01-16 05:22:54 +09:00
fetchDomainMutes,
muteDomain,
2020-05-07 22:10:53 +09:00
unmuteDomain,
chats,
getOrCreateChat,
chatMessages,
sendChatMessage,
readChat,
2021-01-12 02:32:58 +09:00
deleteChatMessage,
setReportState,
2022-03-18 03:01:45 +09:00
fetchUserInLists,
fetchAnnouncements,
2022-03-18 03:54:52 +09:00
dismissAnnouncement,
2022-03-18 04:07:04 +09:00
postAnnouncement,
2022-03-18 06:11:53 +09:00
editAnnouncement,
2022-03-18 05:51:32 +09:00
deleteAnnouncement,
adminFetchAnnouncements
2016-10-28 01:03:14 +09:00
}
export default apiService