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

403 lines
9.9 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'
2016-10-28 12:26:51 +00:00
const FRIENDS_TIMELINE_URL = '/api/statuses/friends_timeline.json'
2017-02-13 21:55:38 +00:00
const ALL_FOLLOWING_URL = '/api/qvitter/allfollowing'
2016-10-28 12:26:51 +00:00
const PUBLIC_TIMELINE_URL = '/api/statuses/public_timeline.json'
const PUBLIC_AND_EXTERNAL_TIMELINE_URL = '/api/statuses/public_and_external_timeline.json'
2017-09-17 11:26:35 +00:00
const TAG_TIMELINE_URL = '/api/statusnet/tags/timeline'
2016-10-30 15:12:35 +00:00
const FAVORITE_URL = '/api/favorites/create'
const UNFAVORITE_URL = '/api/favorites/destroy'
const RETWEET_URL = '/api/statuses/retweet'
2016-10-30 15:53:58 +00:00
const STATUS_UPDATE_URL = '/api/statuses/update.json'
const STATUS_DELETE_URL = '/api/statuses/destroy'
const STATUS_URL = '/api/statuses/show'
2017-04-16 09:15:06 +00:00
const MEDIA_UPLOAD_URL = '/api/statusnet/media/upload'
const CONVERSATION_URL = '/api/statusnet/conversation'
const MENTIONS_URL = '/api/statuses/mentions.json'
2017-08-21 17:25:01 +00:00
const FOLLOWERS_URL = '/api/statuses/followers.json'
2016-11-30 20:27:25 +00:00
const FRIENDS_URL = '/api/statuses/friends.json'
2016-12-08 08:09:21 +00:00
const FOLLOWING_URL = '/api/friendships/create.json'
2016-12-23 15:45:57 +00:00
const UNFOLLOWING_URL = '/api/friendships/destroy.json'
const QVITTER_USER_PREF_URL = '/api/qvitter/set_profile_pref.json'
2017-04-15 16:12:23 +00:00
const REGISTRATION_URL = '/api/account/register.json'
2017-04-16 11:44:11 +00:00
const AVATAR_UPDATE_URL = '/api/qvitter/update_avatar.json'
const BG_UPDATE_URL = '/api/qvitter/update_background_image.json'
const BANNER_UPDATE_URL = '/api/account/update_profile_banner.json'
const PROFILE_UPDATE_URL = '/api/account/update_profile.json'
2017-05-12 16:54:12 +00:00
const EXTERNAL_PROFILE_URL = '/api/externalprofile/show.json'
2017-06-12 14:00:46 +00:00
const QVITTER_USER_TIMELINE_URL = '/api/qvitter/statuses/user_timeline.json'
2017-11-07 20:38:28 +00:00
const BLOCKING_URL = '/api/blocks/create.json'
const UNBLOCKING_URL = '/api/blocks/destroy.json'
const USER_URL = '/api/users/show.json'
2016-10-27 16:03:14 +00:00
2017-06-19 08:32:40 +00:00
import { each, map } from 'lodash'
2017-07-31 14:35:07 +00:00
import 'whatwg-fetch'
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
}
// from https://developer.mozilla.org/en-US/docs/Web/API/WindowBase64/Base64_encoding_and_decoding
let utoa = (str) => {
// first we use encodeURIComponent to get percent-encoded UTF-8,
// then we convert the percent encodings into raw bytes which
// can be fed into btoa.
return btoa(encodeURIComponent(str)
.replace(/%([0-9A-F]{2})/g,
(match, p1) => { return String.fromCharCode('0x' + p1) }))
}
2017-04-16 11:44:11 +00:00
// Params
// cropH
// cropW
// cropX
// cropY
// img (base 64 encodend data url)
const updateAvatar = ({credentials, params}) => {
let url = AVATAR_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())
}
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())
}
// Params
// height
// width
// offset_left
// offset_top
// banner (base 64 encodend data url)
const updateBanner = ({credentials, params}) => {
let url = BANNER_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())
}
// Params
// name
// url
// location
// description
const updateProfile = ({credentials, params}) => {
let url = PROFILE_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())
}
2017-04-15 16:12:23 +00:00
// Params needed:
// nickname
// email
// fullname
// password
// password_confirm
//
// Optional
// bio
// homepage
// location
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 authHeaders = (user) => {
if (user && user.username && user.password) {
return { 'Authorization': `Basic ${utoa(`${user.username}:${user.password}`)}` }
} 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 = `${FOLLOWING_URL}?user_id=${id}`
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 = `${UNFOLLOWING_URL}?user_id=${id}`
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
2017-11-07 20:38:28 +00:00
const blockUser = ({id, credentials}) => {
let url = `${BLOCKING_URL}?user_id=${id}`
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
const unblockUser = ({id, credentials}) => {
let url = `${UNBLOCKING_URL}?user_id=${id}`
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
const fetchUser = ({id, credentials}) => {
let url = `${USER_URL}?user_id=${id}`
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
}
2017-08-21 17:25:01 +00:00
const fetchFriends = ({id, credentials}) => {
let url = `${FRIENDS_URL}?user_id=${id}`
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
}
const fetchFollowers = ({id, credentials}) => {
let url = `${FOLLOWERS_URL}?user_id=${id}`
return fetch(url, { headers: authHeaders(credentials) })
2016-11-30 20:27:25 +00:00
.then((data) => data.json())
}
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())
2017-02-13 21:55:38 +00:00
}
const fetchConversation = ({id, credentials}) => {
let url = `${CONVERSATION_URL}/${id}.json?count=100`
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
}
const fetchStatus = ({id, credentials}) => {
let url = `${STATUS_URL}/${id}.json`
return fetch(url, { headers: authHeaders(credentials) })
.then((data) => data.json())
}
const setUserMute = ({id, credentials, muted = true}) => {
const form = new FormData()
const muteInteger = muted ? 1 : 0
form.append('namespace', 'qvitter')
form.append('data', muteInteger)
form.append('topic', `mute:${id}`)
return fetch(QVITTER_USER_PREF_URL, {
method: 'POST',
headers: authHeaders(credentials),
body: form
})
}
2017-09-17 11:26:35 +00:00
const fetchTimeline = ({timeline, credentials, since = false, until = false, userId = false, tag = false}) => {
2016-10-28 12:26:51 +00:00
const timelineUrls = {
public: PUBLIC_TIMELINE_URL,
friends: FRIENDS_TIMELINE_URL,
2017-03-09 17:20:16 +00:00
mentions: MENTIONS_URL,
2017-06-12 14:00:46 +00:00
'publicAndExternal': PUBLIC_AND_EXTERNAL_TIMELINE_URL,
2017-09-17 11:26:35 +00:00
user: QVITTER_USER_TIMELINE_URL,
tag: TAG_TIMELINE_URL
2016-10-28 12:26:51 +00:00
}
let url = timelineUrls[timeline]
2017-06-12 14:00:46 +00:00
let params = []
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
}
if (userId) {
params.push(['user_id', userId])
2016-10-27 16:03:14 +00:00
}
2017-09-17 11:26:35 +00:00
if (tag) {
url += `/${tag}.json`
}
2016-10-28 12:26:51 +00:00
params.push(['count', 20])
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}`
2016-10-28 12:26:51 +00:00
return fetch(url, { headers: authHeaders(credentials) }).then((data) => data.json())
}
const verifyCredentials = (user) => {
return fetch(LOGIN_URL, {
method: 'POST',
headers: authHeaders(user)
})
}
2016-10-30 15:12:35 +00:00
const favorite = ({ id, credentials }) => {
return fetch(`${FAVORITE_URL}/${id}.json`, {
headers: authHeaders(credentials),
method: 'POST'
})
}
const unfavorite = ({ id, credentials }) => {
return fetch(`${UNFAVORITE_URL}/${id}.json`, {
headers: authHeaders(credentials),
method: 'POST'
})
}
const retweet = ({ id, credentials }) => {
return fetch(`${RETWEET_URL}/${id}.json`, {
headers: authHeaders(credentials),
method: 'POST'
})
}
2016-10-30 15:53:58 +00:00
const postStatus = ({credentials, status, mediaIds, inReplyToStatusId}) => {
const idsText = mediaIds.join(',')
const form = new FormData()
form.append('status', status)
form.append('source', 'Pleroma FE')
form.append('media_ids', idsText)
if (inReplyToStatusId) {
form.append('in_reply_to_status_id', inReplyToStatusId)
}
return fetch(STATUS_UPDATE_URL, {
body: form,
method: 'POST',
headers: authHeaders(credentials)
})
}
const deleteStatus = ({ id, credentials }) => {
return fetch(`${STATUS_DELETE_URL}/${id}.json`, {
headers: authHeaders(credentials),
method: 'POST'
})
}
2016-11-06 18:29:41 +00:00
const uploadMedia = ({formData, credentials}) => {
return fetch(MEDIA_UPLOAD_URL, {
body: formData,
method: 'POST',
headers: authHeaders(credentials)
})
.then((response) => response.text())
.then((text) => (new DOMParser()).parseFromString(text, 'application/xml'))
}
const fetchMutes = ({credentials}) => {
const url = '/api/qvitter/mutes.json'
return fetch(url, {
headers: authHeaders(credentials)
}).then((data) => data.json())
}
2016-10-28 12:26:51 +00:00
const apiService = {
verifyCredentials,
2016-10-30 15:12:35 +00:00
fetchTimeline,
fetchConversation,
fetchStatus,
2016-11-30 20:27:25 +00:00
fetchFriends,
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,
2017-11-07 20:38:28 +00:00
blockUser,
unblockUser,
fetchUser,
2016-10-30 15:12:35 +00:00
favorite,
2016-10-30 15:53:58 +00:00
unfavorite,
retweet,
2016-11-06 18:29:41 +00:00
postStatus,
deleteStatus,
2017-02-13 21:55:38 +00:00
uploadMedia,
fetchAllFollowing,
setUserMute,
2017-04-15 16:12:23 +00:00
fetchMutes,
2017-04-16 11:44:11 +00:00
register,
2017-06-19 08:32:40 +00:00
updateAvatar,
updateBg,
updateProfile,
updateBanner,
2017-05-12 16:54:12 +00:00
externalProfile
2016-10-27 16:03:14 +00:00
}
export default apiService