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'
|
|
|
|
const PUBLIC_TIMELINE_URL = '/api/statuses/public_timeline.json'
|
|
|
|
const PUBLIC_AND_EXTERNAL_TIMELINE_URL = '/api/statuses/public_and_external_timeline.json'
|
2016-10-30 15:12:35 +00:00
|
|
|
const FAVORITE_URL = '/api/favorites/create'
|
|
|
|
const UNFAVORITE_URL = '/api/favorites/destroy'
|
2016-11-13 15:42:56 +00:00
|
|
|
const RETWEET_URL = '/api/statuses/retweet'
|
2016-10-30 15:53:58 +00:00
|
|
|
const STATUS_UPDATE_URL = '/api/statuses/update.json'
|
2016-11-24 17:16:20 +00:00
|
|
|
const STATUS_URL = '/api/statuses/show'
|
2016-11-06 18:29:41 +00:00
|
|
|
const MEDIA_UPLOAD_URL = '/api/statusnet/media/upload'
|
2016-11-24 17:16:20 +00:00
|
|
|
const CONVERSATION_URL = '/api/statusnet/conversation'
|
2016-11-26 20:09:41 +00:00
|
|
|
const MENTIONS_URL = '/api/statuses/mentions.json'
|
2016-11-30 20:27:25 +00:00
|
|
|
const FRIENDS_URL = '/api/statuses/friends.json'
|
2016-10-27 16:03:14 +00:00
|
|
|
|
2016-11-24 17:16:20 +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) => {
|
|
|
|
const baseUrl = ''
|
|
|
|
const fullUrl = baseUrl + url
|
2016-11-24 17:16:20 +00:00
|
|
|
return oldfetch(fullUrl, options)
|
2016-11-22 14:45:40 +00:00
|
|
|
}
|
|
|
|
|
2016-11-06 19:10:45 +00:00
|
|
|
const authHeaders = (user) => {
|
2016-11-26 17:57:08 +00:00
|
|
|
if (user && user.username && user.password) {
|
2016-11-06 19:10:45 +00:00
|
|
|
return { 'Authorization': `Basic ${btoa(`${user.username}:${user.password}`)}` }
|
|
|
|
} else {
|
|
|
|
return { }
|
|
|
|
}
|
|
|
|
}
|
2016-10-28 12:26:51 +00:00
|
|
|
|
2016-11-30 20:27:25 +00:00
|
|
|
const fetchFriends = ({credentials}) => {
|
|
|
|
return fetch(FRIENDS_URL, { headers: authHeaders(credentials) })
|
|
|
|
.then((data) => data.json())
|
|
|
|
}
|
|
|
|
|
2016-11-26 20:09:41 +00:00
|
|
|
const fetchMentions = ({username, sinceId = 0, credentials}) => {
|
|
|
|
let url = `${MENTIONS_URL}?since_id=${sinceId}&screen_name=${username}`
|
|
|
|
return fetch(url, { headers: authHeaders(credentials) })
|
|
|
|
.then((data) => data.json())
|
|
|
|
}
|
|
|
|
|
2016-11-26 17:57:08 +00:00
|
|
|
const fetchConversation = ({id, credentials}) => {
|
2016-11-24 17:16:20 +00:00
|
|
|
let url = `${CONVERSATION_URL}/${id}.json?count=100`
|
2016-11-26 17:57:08 +00:00
|
|
|
return fetch(url, { headers: authHeaders(credentials) })
|
|
|
|
.then((data) => data.json())
|
2016-11-24 17:16:20 +00:00
|
|
|
}
|
|
|
|
|
2016-11-26 17:57:08 +00:00
|
|
|
const fetchStatus = ({id, credentials}) => {
|
2016-11-24 17:16:20 +00:00
|
|
|
let url = `${STATUS_URL}/${id}.json`
|
2016-11-26 17:57:08 +00:00
|
|
|
return fetch(url, { headers: authHeaders(credentials) })
|
|
|
|
.then((data) => data.json())
|
2016-11-24 17:16:20 +00:00
|
|
|
}
|
|
|
|
|
2016-10-28 12:26:51 +00:00
|
|
|
const fetchTimeline = ({timeline, credentials, since = false, until = false}) => {
|
|
|
|
const timelineUrls = {
|
|
|
|
public: PUBLIC_TIMELINE_URL,
|
|
|
|
friends: FRIENDS_TIMELINE_URL,
|
2016-11-06 20:46:01 +00:00
|
|
|
'publicAndExternal': PUBLIC_AND_EXTERNAL_TIMELINE_URL
|
2016-10-28 12:26:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let url = timelineUrls[timeline]
|
|
|
|
|
|
|
|
if (since) {
|
|
|
|
url += `?since_id=${since}`
|
|
|
|
}
|
|
|
|
|
|
|
|
if (until) {
|
|
|
|
url += `?max_id=${until}`
|
2016-10-27 16:03:14 +00:00
|
|
|
}
|
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'
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-11-13 15:42:56 +00:00
|
|
|
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)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
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'))
|
|
|
|
}
|
|
|
|
|
2016-10-28 12:26:51 +00:00
|
|
|
const apiService = {
|
|
|
|
verifyCredentials,
|
2016-10-30 15:12:35 +00:00
|
|
|
fetchTimeline,
|
2016-11-24 17:16:20 +00:00
|
|
|
fetchConversation,
|
|
|
|
fetchStatus,
|
2016-11-26 20:09:41 +00:00
|
|
|
fetchMentions,
|
2016-11-30 20:27:25 +00:00
|
|
|
fetchFriends,
|
2016-10-30 15:12:35 +00:00
|
|
|
favorite,
|
2016-10-30 15:53:58 +00:00
|
|
|
unfavorite,
|
2016-11-13 15:42:56 +00:00
|
|
|
retweet,
|
2016-11-06 18:29:41 +00:00
|
|
|
postStatus,
|
|
|
|
uploadMedia
|
2016-10-27 16:03:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default apiService
|