Very basic user following.

This commit is contained in:
Roger Braun 2016-12-08 09:09:21 +01:00
parent f18f87747f
commit fc268c48bc
4 changed files with 58 additions and 0 deletions

View file

@ -13,6 +13,9 @@ const MEDIA_UPLOAD_URL = '/api/statusnet/media/upload'
const CONVERSATION_URL = '/api/statusnet/conversation'
const MENTIONS_URL = '/api/statuses/mentions.json'
const FRIENDS_URL = '/api/statuses/friends.json'
const FOLLOWING_URL = '/api/friendships/create.json'
// const UNFOLLOWING_URL = '/api/friendships/create.json'
// const USER_URL = '/api/users/show.json'
const oldfetch = window.fetch
@ -30,6 +33,14 @@ const authHeaders = (user) => {
}
}
const followUser = ({id, credentials}) => {
let url = `${FOLLOWING_URL}?user_id=${id}`
return fetch(url, {
headers: authHeaders(credentials),
method: 'POST'
}).then((data) => data.json())
}
const fetchFriends = ({credentials}) => {
return fetch(FRIENDS_URL, { headers: authHeaders(credentials) })
.then((data) => data.json())
@ -143,6 +154,7 @@ const apiService = {
fetchStatus,
fetchMentions,
fetchFriends,
followUser,
favorite,
unfavorite,
retweet,