2018-01-19 04:25:34 +00:00
|
|
|
import { get, paramsString } from '../ajax'
|
2018-01-19 05:52:58 +00:00
|
|
|
import { basename } from './utils'
|
2018-01-19 04:25:34 +00:00
|
|
|
|
2018-01-23 05:16:27 +00:00
|
|
|
function getTimelineUrlPath(timeline) {
|
2018-01-22 04:02:32 +00:00
|
|
|
switch (timeline) {
|
|
|
|
case 'local':
|
|
|
|
case 'federated':
|
2018-01-23 05:16:27 +00:00
|
|
|
return 'timelines/public'
|
2018-01-22 04:02:32 +00:00
|
|
|
case 'home':
|
2018-01-23 05:16:27 +00:00
|
|
|
return 'timelines/home'
|
|
|
|
}
|
|
|
|
if (timeline.startsWith('tag/')) {
|
|
|
|
return 'timelines/tag'
|
|
|
|
} else if (timeline.startsWith('account/')) {
|
|
|
|
return 'accounts'
|
2018-01-22 04:02:32 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-19 07:37:43 +00:00
|
|
|
export function getTimeline(instanceName, accessToken, timeline, maxId, since) {
|
2018-01-23 05:16:27 +00:00
|
|
|
let timelineUrlName = getTimelineUrlPath(timeline)
|
|
|
|
let url = `${basename(instanceName)}/api/v1/${timelineUrlName}`
|
2018-01-19 04:25:34 +00:00
|
|
|
|
2018-01-22 04:02:32 +00:00
|
|
|
if (timeline.startsWith('tag/')) {
|
|
|
|
url += '/' + timeline.split('/').slice(-1)[0]
|
2018-01-23 05:16:27 +00:00
|
|
|
} else if (timeline.startsWith('account/')) {
|
|
|
|
url += '/' + timeline.split('/').slice(-1)[0] +'/statuses'
|
2018-01-22 04:02:32 +00:00
|
|
|
}
|
|
|
|
|
2018-01-19 04:25:34 +00:00
|
|
|
let params = {}
|
|
|
|
if (since) {
|
|
|
|
params.since = since
|
|
|
|
}
|
|
|
|
|
|
|
|
if (maxId) {
|
|
|
|
params.max_id = maxId
|
|
|
|
}
|
|
|
|
|
2018-01-19 07:37:43 +00:00
|
|
|
if (timeline === 'local') {
|
|
|
|
params.local = true
|
|
|
|
}
|
|
|
|
|
2018-01-19 04:25:34 +00:00
|
|
|
url += '?' + paramsString(params)
|
|
|
|
|
|
|
|
return get(url, {
|
|
|
|
'Authorization': `Bearer ${accessToken}`
|
|
|
|
})
|
|
|
|
}
|