2018-02-25 06:27:32 +01:00
|
|
|
import { favoriteStatus } from '../routes/_api/favorite'
|
|
|
|
import fetch from 'node-fetch'
|
2018-03-10 19:54:16 +01:00
|
|
|
import FileApi from 'file-api'
|
2018-03-06 05:29:49 +01:00
|
|
|
import { users } from './users'
|
2018-03-10 19:54:16 +01:00
|
|
|
import { postStatus } from '../routes/_api/statuses'
|
2018-03-11 01:21:10 +01:00
|
|
|
import { deleteStatus } from '../routes/_api/delete'
|
2018-03-15 06:14:06 +01:00
|
|
|
import { authorizeFollowRequest, getFollowRequests } from '../routes/_actions/followRequests'
|
2018-03-10 19:54:16 +01:00
|
|
|
|
2018-03-06 08:56:48 +01:00
|
|
|
global.fetch = fetch
|
2018-03-10 19:54:16 +01:00
|
|
|
global.File = FileApi.File
|
|
|
|
global.FormData = FileApi.FormData
|
2018-02-25 06:27:32 +01:00
|
|
|
|
2018-03-11 01:21:10 +01:00
|
|
|
const instanceName = 'localhost:3000'
|
|
|
|
|
2018-03-16 18:06:02 +01:00
|
|
|
export async function favoriteStatusAs (username, statusId) {
|
|
|
|
return favoriteStatus(instanceName, users[username].accessToken, statusId)
|
2018-02-25 06:27:32 +01:00
|
|
|
}
|
2018-03-10 19:54:16 +01:00
|
|
|
|
2018-03-16 18:06:02 +01:00
|
|
|
export async function postAs (username, text) {
|
|
|
|
return postStatus(instanceName, users[username].accessToken, text,
|
2018-03-10 19:54:16 +01:00
|
|
|
null, null, false, null, 'public')
|
|
|
|
}
|
2018-03-11 01:21:10 +01:00
|
|
|
|
2018-03-16 18:06:02 +01:00
|
|
|
export async function postReplyAs (username, text, inReplyTo) {
|
|
|
|
return postStatus(instanceName, users[username].accessToken, text,
|
2018-03-11 05:24:07 +01:00
|
|
|
inReplyTo, null, false, null, 'public')
|
|
|
|
}
|
|
|
|
|
2018-03-16 18:06:02 +01:00
|
|
|
export async function deleteAs (username, statusId) {
|
|
|
|
return deleteStatus(instanceName, users[username].accessToken, statusId)
|
2018-03-11 01:21:10 +01:00
|
|
|
}
|
2018-03-15 06:14:06 +01:00
|
|
|
|
2018-03-16 18:06:02 +01:00
|
|
|
export async function getFollowRequestsAs (username) {
|
|
|
|
return getFollowRequests(instanceName, users[username].accessToken)
|
2018-03-15 06:14:06 +01:00
|
|
|
}
|
|
|
|
|
2018-03-16 18:06:02 +01:00
|
|
|
export async function authorizeFollowRequestAs (username, id) {
|
|
|
|
return authorizeFollowRequest(instanceName, users[username].accessToken, id)
|
2018-03-15 06:14:06 +01:00
|
|
|
}
|