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

785 lines
21 KiB
JavaScript
Raw Normal View History

2016-10-27 16:03:14 +00:00
/* eslint-env browser */
const LOGIN_URL = '/api/account/verify_credentials.json'
2017-02-13 21:55:38 +00:00
const ALL_FOLLOWING_URL = '/api/qvitter/allfollowing'
const MENTIONS_URL = '/api/statuses/mentions.json'
2017-04-15 16:12:23 +00:00
const REGISTRATION_URL = '/api/account/register.json'
const BG_UPDATE_URL = '/api/qvitter/update_background_image.json'
2017-05-12 16:54:12 +00:00
const EXTERNAL_PROFILE_URL = '/api/externalprofile/show.json'
const QVITTER_USER_NOTIFICATIONS_READ_URL = '/api/qvitter/statuses/notifications/read.json'
2019-03-30 11:27:53 +00:00
const BLOCKS_IMPORT_URL = '/api/pleroma/blocks_import'
2017-12-23 14:44:22 +00:00
const FOLLOW_IMPORT_URL = '/api/pleroma/follow_import'
const DELETE_ACCOUNT_URL = '/api/pleroma/delete_account'
2018-05-21 22:01:09 +00:00
const CHANGE_PASSWORD_URL = '/api/pleroma/change_password'
2018-06-06 22:26:24 +00:00
const FOLLOW_REQUESTS_URL = '/api/pleroma/friend_requests'
const APPROVE_USER_URL = '/api/pleroma/friendships/approve'
const DENY_USER_URL = '/api/pleroma/friendships/deny'
2019-02-18 14:49:32 +00:00
const TAG_USER_URL = '/api/pleroma/admin/users/tag'
const PERMISSION_GROUP_URL = '/api/pleroma/admin/permission_group'
const ACTIVATION_STATUS_URL = '/api/pleroma/admin/activation_status'
const ADMIN_USER_URL = '/api/pleroma/admin/user'
2018-08-02 09:34:12 +00:00
const SUGGESTIONS_URL = '/api/v1/suggestions'
2016-10-27 16:03:14 +00:00
const MASTODON_USER_FAVORITES_TIMELINE_URL = '/api/v1/favourites'
2019-03-12 21:16:57 +00:00
const MASTODON_USER_NOTIFICATIONS_URL = '/api/v1/notifications'
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-03-07 18:21:07 +00:00
const MASTODON_DIRECT_MESSAGES_TIMELINE_URL = '/api/v1/timelines/direct'
2019-03-07 18:16:35 +00: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`
const MASTODON_USER_URL = '/api/v1/accounts'
const MASTODON_USER_RELATIONSHIPS_URL = '/api/v1/accounts/relationships'
2019-03-07 22:50:58 +00:00
const MASTODON_USER_TIMELINE_URL = id => `/api/v1/accounts/${id}/statuses`
const MASTODON_TAG_TIMELINE_URL = tag => `/api/v1/timelines/tag/${tag}`
2019-03-22 01:27:10 +00:00
const MASTODON_USER_BLOCKS_URL = '/api/v1/blocks/'
const MASTODON_USER_MUTES_URL = '/api/v1/mutes/'
2019-03-22 01:44:59 +00: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 01:53:24 +00: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_POST_STATUS_URL = '/api/v1/statuses'
const MASTODON_MEDIA_UPLOAD_URL = '/api/v1/media'
2019-04-02 16:13:55 +00:00
const MASTODON_STATUS_FAVORITEDBY_URL = id => `/api/v1/statuses/${id}/favourited_by`
2019-04-02 02:30:06 +00: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 02:40:37 +00:00
const MASTODON_REPORT_USER_URL = '/api/v1/reports'
2019-04-04 15:27:02 +00:00
const MASTODON_PIN_OWN_STATUS = id => `/api/v1/statuses/${id}/pin`
const MASTODON_UNPIN_OWN_STATUS = id => `/api/v1/statuses/${id}/unpin`
2019-04-19 04:27:06 +00:00
import { each, map, concat, last } from 'lodash'
2019-03-18 03:22:54 +00:00
import { parseStatus, parseUser, parseNotification, parseAttachment } from '../entity_normalizer/entity_normalizer.service.js'
2017-07-31 14:35:07 +00:00
import 'whatwg-fetch'
2019-02-26 17:26:04 +00:00
import { StatusCodeError } from '../errors/errors'
2017-04-15 16:12:23 +00:00
const oldfetch = window.fetch
2016-10-27 16:03:14 +00:00
2016-11-22 14:45:40 +00:00
let fetch = (url, options) => {
options = options || {}
2016-11-22 14:45:40 +00:00
const baseUrl = ''
const fullUrl = baseUrl + url
options.credentials = 'same-origin'
return oldfetch(fullUrl, options)
2016-11-22 14:45:40 +00:00
}
const promisedRequest = ({ method, url, payload, credentials, headers = {} }) => {
const options = {
method,
headers: {
'Accept': 'application/json',
'Content-Type': 'application/json',
...headers
}
}
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)
}))
})
}
const updateAvatar = ({credentials, avatar}) => {
2017-04-16 11:44:11 +00:00
const form = new FormData()
form.append('avatar', avatar)
return fetch(MASTODON_PROFILE_UPDATE_URL, {
2017-04-16 11:44:11 +00:00
headers: authHeaders(credentials),
method: 'PATCH',
2017-04-16 11:44:11 +00:00
body: form
})
.then((data) => data.json())
.then((data) => parseUser(data))
2017-04-16 11:44:11 +00:00
}
const updateBg = ({credentials, params}) => {
let url = BG_UPDATE_URL
const form = new FormData()
each(params, (value, key) => {
if (value) {
form.append(key, value)
}
})
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST',
body: form
}).then((data) => data.json())
}
2019-03-13 17:56:28 +00:00
const updateBanner = ({credentials, banner}) => {
const form = new FormData()
2019-03-13 17:56:28 +00:00
form.append('header', banner)
return fetch(MASTODON_PROFILE_UPDATE_URL, {
headers: authHeaders(credentials),
2019-03-13 17:56:28 +00:00
method: 'PATCH',
body: form
2019-03-13 17:56:28 +00:00
})
.then((data) => data.json())
.then((data) => parseUser(data))
}
const updateProfile = ({credentials, params}) => {
2019-04-30 20:38:34 +00:00
return promisedRequest({
url: MASTODON_PROFILE_UPDATE_URL,
method: 'PATCH',
2019-04-30 20:38:34 +00:00
payload: params,
credentials
})
.then((data) => parseUser(data))
}
2017-04-15 16:12:23 +00:00
// Params needed:
// nickname
// email
// fullname
// password
// password_confirm
//
// Optional
// bio
// homepage
// location
2018-08-05 07:01:38 +00:00
// token
2017-04-15 16:12:23 +00:00
const register = (params) => {
const form = new FormData()
each(params, (value, key) => {
if (value) {
form.append(key, value)
}
})
return fetch(REGISTRATION_URL, {
method: 'POST',
body: form
})
}
const getCaptcha = () => fetch('/api/pleroma/captcha').then(resp => resp.json())
2018-10-26 13:16:23 +00:00
const authHeaders = (accessToken) => {
if (accessToken) {
return { 'Authorization': `Bearer ${accessToken}` }
} else {
return { }
}
}
2016-10-28 12:26:51 +00:00
const externalProfile = ({profileUrl, credentials}) => {
2017-05-12 16:54:12 +00:00
let url = `${EXTERNAL_PROFILE_URL}?profileurl=${profileUrl}`
return fetch(url, {
headers: authHeaders(credentials),
2017-05-12 16:54:12 +00:00
method: 'GET'
}).then((data) => data.json())
}
2016-12-08 08:09:21 +00:00
const followUser = ({id, credentials}) => {
let url = MASTODON_FOLLOW_URL(id)
2016-12-08 08:09:21 +00:00
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
2016-12-23 15:45:57 +00:00
const unfollowUser = ({id, credentials}) => {
let url = MASTODON_UNFOLLOW_URL(id)
2016-12-23 15:45:57 +00:00
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
2019-04-04 15:27:02 +00:00
const pinOwnStatus = ({ id, credentials }) => {
2019-05-04 17:11:19 +00:00
return promisedRequest({ url: MASTODON_PIN_OWN_STATUS(id), credentials, method: 'POST' })
.then((data) => parseStatus(data))
2019-04-04 15:27:02 +00:00
}
const unpinOwnStatus = ({ id, credentials }) => {
2019-05-04 17:11:19 +00:00
return promisedRequest({ url: MASTODON_UNPIN_OWN_STATUS(id), credentials, method: 'POST' })
.then((data) => parseStatus(data))
2019-04-04 15:27:02 +00:00
}
2017-11-07 20:38:28 +00:00
const blockUser = ({id, credentials}) => {
2019-03-22 01:44:59 +00:00
return fetch(MASTODON_BLOCK_USER_URL(id), {
2017-11-07 20:38:28 +00:00
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
const unblockUser = ({id, credentials}) => {
2019-03-22 01:44:59 +00:00
return fetch(MASTODON_UNBLOCK_USER_URL(id), {
2017-11-07 20:38:28 +00:00
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
const approveUser = ({id, credentials}) => {
let url = `${APPROVE_USER_URL}?user_id=${id}`
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
const denyUser = ({id, credentials}) => {
let url = `${DENY_USER_URL}?user_id=${id}`
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
const fetchUser = ({id, credentials}) => {
let url = `${MASTODON_USER_URL}/${id}`
return promisedRequest({ url, credentials })
2019-01-14 12:30:14 +00:00
.then((data) => parseUser(data))
}
const fetchUserRelationship = ({id, credentials}) => {
let 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-03-25 19:04:52 +00:00
const fetchFriends = ({id, maxId, sinceId, limit = 20, credentials}) => {
let url = MASTODON_FOLLOWING_URL(id)
2019-03-25 19:04:52 +00:00
const args = [
maxId && `max_id=${maxId}`,
2019-03-27 20:02:46 +00:00
sinceId && `since_id=${sinceId}`,
2019-03-25 19:04:52 +00:00
limit && `limit=${limit}`
].filter(_ => _).join('&')
url = url + (args ? '?' + args : '')
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
.then((data) => data.map(parseUser))
}
const exportFriends = ({id, credentials}) => {
2019-04-19 04:27:06 +00:00
return new Promise(async (resolve, reject) => {
try {
let friends = []
let more = true
while (more) {
const maxId = friends.length > 0 ? last(friends).id : undefined
const users = await fetchFriends({id, maxId, credentials})
friends = concat(friends, users)
if (users.length === 0) {
more = false
}
}
resolve(friends)
} catch (err) {
reject(err)
}
})
2017-08-21 17:25:01 +00:00
}
2019-03-25 19:04:52 +00:00
const fetchFollowers = ({id, maxId, sinceId, limit = 20, credentials}) => {
let url = MASTODON_FOLLOWERS_URL(id)
2019-03-25 19:04:52 +00:00
const args = [
maxId && `max_id=${maxId}`,
2019-03-27 20:02:46 +00:00
sinceId && `since_id=${sinceId}`,
2019-03-25 19:04:52 +00:00
limit && `limit=${limit}`
].filter(_ => _).join('&')
2019-03-27 20:02:46 +00:00
url += args ? '?' + args : ''
2017-08-21 17:25:01 +00:00
return fetch(url, { headers: authHeaders(credentials) })
2016-11-30 20:27:25 +00:00
.then((data) => data.json())
2019-01-14 12:30:14 +00:00
.then((data) => data.map(parseUser))
2016-11-30 20:27:25 +00:00
}
2017-02-13 21:55:38 +00:00
const fetchAllFollowing = ({username, credentials}) => {
const url = `${ALL_FOLLOWING_URL}/${username}.json`
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
2019-01-14 12:30:14 +00:00
.then((data) => data.map(parseUser))
2017-02-13 21:55:38 +00:00
}
2018-06-06 22:26:24 +00:00
const fetchFollowRequests = ({credentials}) => {
const url = FOLLOW_REQUESTS_URL
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
}
const fetchConversation = ({id, credentials}) => {
let urlContext = MASTODON_STATUS_CONTEXT_URL(id)
return fetch(urlContext, { headers: authHeaders(credentials) })
2019-01-14 19:58:23 +00:00
.then((data) => {
if (data.ok) {
return data
}
2019-01-17 20:22:51 +00:00
throw new Error('Error fetching timeline', data)
2019-01-14 19:58:23 +00:00
})
2019-01-17 20:22:51 +00:00
.then((data) => data.json())
.then(({ancestors, descendants}) => ({
ancestors: ancestors.map(parseStatus),
descendants: descendants.map(parseStatus)
}))
}
const fetchStatus = ({id, credentials}) => {
let url = MASTODON_STATUS_URL(id)
return fetch(url, { headers: authHeaders(credentials) })
2019-01-14 19:58:23 +00:00
.then((data) => {
if (data.ok) {
return data
}
2019-01-17 20:22:51 +00:00
throw new Error('Error fetching timeline', data)
2019-01-14 19:58:23 +00:00
})
2019-01-17 20:22:51 +00:00
.then((data) => data.json())
2019-01-14 19:58:23 +00:00
.then((data) => parseStatus(data))
}
2019-02-18 14:49:32 +00:00
const tagUser = ({tag, credentials, ...options}) => {
const screenName = options.screen_name
const form = {
nicknames: [screenName],
tags: [tag]
}
const headers = authHeaders(credentials)
headers['Content-Type'] = 'application/json'
return fetch(TAG_USER_URL, {
method: 'PUT',
headers: headers,
body: JSON.stringify(form)
})
}
const untagUser = ({tag, credentials, ...options}) => {
const screenName = options.screen_name
const body = {
nicknames: [screenName],
tags: [tag]
}
const headers = authHeaders(credentials)
headers['Content-Type'] = 'application/json'
return fetch(TAG_USER_URL, {
method: 'DELETE',
headers: headers,
body: JSON.stringify(body)
})
}
const addRight = ({right, credentials, ...user}) => {
const screenName = user.screen_name
return fetch(`${PERMISSION_GROUP_URL}/${screenName}/${right}`, {
method: 'POST',
headers: authHeaders(credentials),
body: {}
})
}
const deleteRight = ({right, credentials, ...user}) => {
const screenName = user.screen_name
return fetch(`${PERMISSION_GROUP_URL}/${screenName}/${right}`, {
method: 'DELETE',
headers: authHeaders(credentials),
body: {}
})
}
const setActivationStatus = ({status, credentials, ...user}) => {
const screenName = user.screen_name
const body = {
status: status
}
const headers = authHeaders(credentials)
headers['Content-Type'] = 'application/json'
return fetch(`${ACTIVATION_STATUS_URL}/${screenName}.json`, {
method: 'PUT',
headers: headers,
body: JSON.stringify(body)
})
}
const deleteUser = ({credentials, ...user}) => {
const screenName = user.screen_name
const headers = authHeaders(credentials)
return fetch(`${ADMIN_USER_URL}.json?nickname=${screenName}`, {
method: 'DELETE',
headers: headers
})
}
const fetchTimeline = ({timeline, credentials, since = false, until = false, userId = false, tag = false, withMuted = false}) => {
2016-10-28 12:26:51 +00:00
const timelineUrls = {
2019-03-07 18:16:35 +00:00
public: MASTODON_PUBLIC_TIMELINE,
friends: MASTODON_USER_HOME_TIMELINE_URL,
2017-03-09 17:20:16 +00:00
mentions: MENTIONS_URL,
2019-03-07 18:21:07 +00:00
dms: MASTODON_DIRECT_MESSAGES_TIMELINE_URL,
2019-03-12 21:16:57 +00:00
notifications: MASTODON_USER_NOTIFICATIONS_URL,
2019-03-07 18:16:35 +00:00
'publicAndExternal': MASTODON_PUBLIC_TIMELINE,
2019-03-07 22:50:58 +00:00
user: MASTODON_USER_TIMELINE_URL,
media: MASTODON_USER_TIMELINE_URL,
favorites: MASTODON_USER_FAVORITES_TIMELINE_URL,
tag: MASTODON_TAG_TIMELINE_URL
2016-10-28 12:26:51 +00:00
}
const isNotifications = timeline === 'notifications'
const params = []
2016-10-28 12:26:51 +00:00
let url = timelineUrls[timeline]
2017-06-12 14:00:46 +00:00
2019-03-07 22:50:58 +00:00
if (timeline === 'user' || timeline === 'media') {
url = url(userId)
}
2016-10-28 12:26:51 +00:00
if (since) {
2017-06-12 14:20:02 +00:00
params.push(['since_id', since])
2016-10-28 12:26:51 +00:00
}
if (until) {
2017-06-12 14:20:02 +00:00
params.push(['max_id', until])
2017-06-12 14:00:46 +00:00
}
2017-09-17 11:26:35 +00:00
if (tag) {
url = url(tag)
2017-09-17 11:26:35 +00:00
}
if (timeline === 'media') {
params.push(['only_media', 1])
}
2019-03-07 18:16:35 +00:00
if (timeline === 'public') {
params.push(['local', true])
}
if (timeline === 'public' || timeline === 'publicAndExternal') {
params.push(['only_media', false])
}
2016-10-28 12:26:51 +00:00
params.push(['count', 20])
params.push(['with_muted', withMuted])
2017-06-12 15:35:04 +00:00
const queryString = map(params, (param) => `${param[0]}=${param[1]}`).join('&')
2017-06-12 14:00:46 +00:00
url += `?${queryString}`
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => {
if (data.ok) {
return data
}
2019-01-17 20:22:51 +00:00
throw new Error('Error fetching timeline', data)
})
.then((data) => data.json())
.then((data) => data.map(isNotifications ? parseNotification : parseStatus))
2016-10-28 12:26:51 +00:00
}
const fetchPinnedStatuses = ({ id, credentials }) => {
const url = MASTODON_USER_TIMELINE_URL(id) + '?pinned=true'
2019-05-04 17:11:19 +00:00
return promisedRequest({ url, credentials })
.then((data) => data.map(parseStatus))
}
2016-10-28 12:26:51 +00:00
const verifyCredentials = (user) => {
return fetch(LOGIN_URL, {
method: 'POST',
headers: authHeaders(user)
})
2019-01-17 19:11:51 +00:00
.then((response) => {
if (response.ok) {
return response.json()
} else {
return {
error: response
}
}
})
2019-01-17 20:01:38 +00:00
.then((data) => data.error ? data : parseUser(data))
2016-10-28 12:26:51 +00:00
}
2016-10-30 15:12:35 +00:00
const favorite = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_FAVORITE_URL(id), method: 'POST', credentials })
.then((data) => parseStatus(data))
2016-10-30 15:12:35 +00:00
}
const unfavorite = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_UNFAVORITE_URL(id), method: 'POST', credentials })
.then((data) => parseStatus(data))
2016-10-30 15:12:35 +00:00
}
const retweet = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_RETWEET_URL(id), method: 'POST', credentials })
.then((data) => parseStatus(data))
}
2018-06-14 09:00:11 +00:00
const unretweet = ({ id, credentials }) => {
return promisedRequest({ url: MASTODON_UNRETWEET_URL(id), method: 'POST', credentials })
.then((data) => parseStatus(data))
2018-06-14 09:00:11 +00:00
}
2019-03-18 03:22:54 +00:00
const postStatus = ({credentials, status, spoilerText, visibility, sensitive, mediaIds = [], inReplyToStatusId, contentType}) => {
2016-10-30 15:53:58 +00:00
const form = new FormData()
form.append('status', status)
form.append('source', 'Pleroma FE')
2018-06-07 09:03:50 +00: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 03:22:54 +00:00
mediaIds.forEach(val => {
form.append('media_ids[]', val)
})
2016-10-30 15:53:58 +00:00
if (inReplyToStatusId) {
form.append('in_reply_to_id', inReplyToStatusId)
2016-10-30 15:53:58 +00:00
}
return fetch(MASTODON_POST_STATUS_URL, {
2016-10-30 15:53:58 +00:00
body: form,
method: 'POST',
headers: authHeaders(credentials)
})
2019-01-17 20:01:38 +00:00
.then((response) => {
if (response.ok) {
return response.json()
} else {
return {
error: response
}
}
})
.then((data) => data.error ? data : parseStatus(data))
2016-10-30 15:53:58 +00:00
}
const deleteStatus = ({ id, credentials }) => {
return fetch(MASTODON_DELETE_URL(id), {
headers: authHeaders(credentials),
method: 'DELETE'
})
}
2016-11-06 18:29:41 +00:00
const uploadMedia = ({formData, credentials}) => {
return fetch(MASTODON_MEDIA_UPLOAD_URL, {
2016-11-06 18:29:41 +00:00
body: formData,
method: 'POST',
headers: authHeaders(credentials)
})
2019-03-18 03:22:54 +00:00
.then((data) => data.json())
.then((data) => parseAttachment(data))
2016-11-06 18:29:41 +00:00
}
2019-03-30 11:27:53 +00:00
const importBlocks = ({file, credentials}) => {
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-03-30 11:22:30 +00:00
const importFollows = ({file, credentials}) => {
const formData = new FormData()
formData.append('list', file)
2017-12-23 14:44:22 +00:00
return fetch(FOLLOW_IMPORT_URL, {
body: formData,
2017-12-23 14:44:22 +00:00
method: 'POST',
headers: authHeaders(credentials)
})
.then((response) => response.ok)
}
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())
}
2018-05-21 22:01:09 +00:00
const changePassword = ({credentials, password, newPassword, newPasswordConfirmation}) => {
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())
}
const fetchMutes = ({credentials}) => {
return promisedRequest({ url: MASTODON_USER_MUTES_URL, credentials })
2019-03-22 01:27:10 +00:00
.then((users) => users.map(parseUser))
}
const muteUser = ({id, credentials}) => {
return promisedRequest({ url: MASTODON_MUTE_USER_URL(id), credentials, method: 'POST' })
}
const unmuteUser = ({id, credentials}) => {
return promisedRequest({ url: MASTODON_UNMUTE_USER_URL(id), credentials, method: 'POST' })
2019-02-13 17:05:23 +00:00
}
const fetchBlocks = ({credentials}) => {
return promisedRequest({ url: MASTODON_USER_BLOCKS_URL, credentials })
2019-03-22 01:27:10 +00:00
.then((users) => users.map(parseUser))
2019-02-13 17:05:23 +00:00
}
const fetchOAuthTokens = ({credentials}) => {
const url = '/api/oauth_tokens.json'
return fetch(url, {
headers: authHeaders(credentials)
2019-03-21 16:04:57 +00:00
}).then((data) => {
if (data.ok) {
return data.json()
}
throw new Error('Error fetching auth tokens', data)
})
}
const revokeOAuthToken = ({id, credentials}) => {
const url = `/api/oauth_tokens/${id}`
return fetch(url, {
headers: authHeaders(credentials),
method: 'DELETE'
})
}
2018-08-02 09:34:12 +00:00
const suggestions = ({credentials}) => {
return fetch(SUGGESTIONS_URL, {
headers: authHeaders(credentials)
}).then((data) => data.json())
}
const markNotificationsAsSeen = ({id, credentials}) => {
const body = new FormData()
body.append('latest_id', id)
return fetch(QVITTER_USER_NOTIFICATIONS_READ_URL, {
body,
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
2019-04-02 16:13:55 +00:00
const fetchFavoritedByUsers = ({id}) => {
2019-04-30 20:38:34 +00:00
return promisedRequest({ url: MASTODON_STATUS_FAVORITEDBY_URL(id) }).then((users) => users.map(parseUser))
2019-04-02 02:29:45 +00:00
}
const fetchRebloggedByUsers = ({id}) => {
2019-04-30 20:38:34 +00:00
return promisedRequest({ url: MASTODON_STATUS_REBLOGGEDBY_URL(id) }).then((users) => users.map(parseUser))
2019-04-02 02:29:45 +00:00
}
2019-03-20 15:45:19 +00:00
const reportUser = ({credentials, userId, statusIds, comment, forward}) => {
2019-03-20 15:54:16 +00:00
return promisedRequest({
url: MASTODON_REPORT_USER_URL,
2019-03-20 15:54:16 +00:00
method: 'POST',
payload: {
'account_id': userId,
'status_ids': statusIds,
comment,
forward
2019-03-20 15:45:19 +00:00
},
2019-03-20 15:54:16 +00:00
credentials
})
2019-03-20 15:45:19 +00:00
}
2016-10-28 12:26:51 +00:00
const apiService = {
verifyCredentials,
2016-10-30 15:12:35 +00:00
fetchTimeline,
fetchPinnedStatuses,
fetchConversation,
fetchStatus,
2016-11-30 20:27:25 +00:00
fetchFriends,
exportFriends,
2017-08-21 17:25:01 +00:00
fetchFollowers,
2016-12-08 08:09:21 +00:00
followUser,
2016-12-23 15:45:57 +00:00
unfollowUser,
2019-04-04 15:27:02 +00:00
pinOwnStatus,
unpinOwnStatus,
2017-11-07 20:38:28 +00:00
blockUser,
unblockUser,
fetchUser,
fetchUserRelationship,
2016-10-30 15:12:35 +00:00
favorite,
2016-10-30 15:53:58 +00:00
unfavorite,
retweet,
2018-06-14 09:00:11 +00:00
unretweet,
2016-11-06 18:29:41 +00:00
postStatus,
deleteStatus,
2017-02-13 21:55:38 +00:00
uploadMedia,
fetchAllFollowing,
2017-04-15 16:12:23 +00:00
fetchMutes,
muteUser,
unmuteUser,
2019-02-13 17:05:23 +00:00
fetchBlocks,
fetchOAuthTokens,
revokeOAuthToken,
2019-02-18 14:49:32 +00:00
tagUser,
untagUser,
deleteUser,
addRight,
deleteRight,
setActivationStatus,
2017-04-16 11:44:11 +00:00
register,
getCaptcha,
2017-06-19 08:32:40 +00:00
updateAvatar,
updateBg,
updateProfile,
updateBanner,
2017-12-23 14:44:22 +00:00
externalProfile,
2019-03-30 11:27:53 +00:00
importBlocks,
2019-03-30 11:22:30 +00:00
importFollows,
2018-05-21 22:01:09 +00:00
deleteAccount,
2018-06-06 22:26:24 +00:00
changePassword,
fetchFollowRequests,
approveUser,
2018-08-02 09:34:12 +00:00
denyUser,
suggestions,
2019-04-02 02:30:06 +00:00
markNotificationsAsSeen,
2019-04-02 16:13:55 +00:00
fetchFavoritedByUsers,
2019-03-20 15:45:19 +00:00
fetchRebloggedByUsers,
reportUser
2016-10-27 16:03:14 +00:00
}
export default apiService