2016-10-30 15:53:58 +00:00
|
|
|
import { map } from 'lodash'
|
|
|
|
import apiService from '../api/api.service.js'
|
|
|
|
|
|
|
|
const postStatus = ({ store, status, media = [], inReplyToStatusId = undefined }) => {
|
|
|
|
const mediaIds = map(media, 'id')
|
|
|
|
|
|
|
|
return apiService.postStatus({credentials: store.state.users.currentUser.credentials, status, mediaIds, inReplyToStatusId})
|
|
|
|
.then((data) => data.json())
|
|
|
|
.then((data) => {
|
2016-11-28 20:25:36 +00:00
|
|
|
store.dispatch('addNewStatuses', {
|
|
|
|
statuses: [data],
|
|
|
|
timeline: 'friends',
|
|
|
|
showImmediately: true,
|
|
|
|
noIdUpdate: true // To prevent missing notices on next pull.
|
|
|
|
})
|
2016-10-30 15:53:58 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-11-06 18:30:20 +00:00
|
|
|
const uploadMedia = ({ store, formData }) => {
|
|
|
|
const credentials = store.state.users.currentUser.credentials
|
|
|
|
|
|
|
|
return apiService.uploadMedia({ credentials, formData }).then((xml) => {
|
2017-01-20 22:58:58 +00:00
|
|
|
// Firefox and Chrome treat method differently...
|
|
|
|
let link = xml.getElementsByTagName('link')
|
|
|
|
|
|
|
|
if (link.length === 0) {
|
|
|
|
link = xml.getElementsByTagName('atom:link')
|
|
|
|
}
|
|
|
|
|
|
|
|
link = link[0]
|
|
|
|
|
|
|
|
const mediaData = {
|
2016-11-06 18:30:20 +00:00
|
|
|
id: xml.getElementsByTagName('media_id')[0].textContent,
|
|
|
|
url: xml.getElementsByTagName('media_url')[0].textContent,
|
2017-01-20 22:58:58 +00:00
|
|
|
image: link.getAttribute('href'),
|
|
|
|
mimetype: link.getAttribute('type')
|
2016-11-06 18:30:20 +00:00
|
|
|
}
|
2017-01-20 22:58:58 +00:00
|
|
|
|
|
|
|
return mediaData
|
2016-11-06 18:30:20 +00:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-10-30 15:53:58 +00:00
|
|
|
const statusPosterService = {
|
2016-11-06 18:30:20 +00:00
|
|
|
postStatus,
|
|
|
|
uploadMedia
|
2016-10-30 15:53:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export default statusPosterService
|