aboutsummaryrefslogtreecommitdiff
path: root/src/services/status_poster/status_poster.service.js
blob: 850993f7e7d21fcd32943cb716daab344b79f858 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
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) => {
      store.dispatch('addNewStatuses', {
        statuses: [data],
        timeline: 'friends',
        showImmediately: true,
        noIdUpdate: true // To prevent missing notices on next pull.
      })
    })
}

const uploadMedia = ({ store, formData }) => {
  const credentials = store.state.users.currentUser.credentials

  return apiService.uploadMedia({ credentials, formData }).then((xml) => {
    return {
      id: xml.getElementsByTagName('media_id')[0].textContent,
      url: xml.getElementsByTagName('media_url')[0].textContent,
      image: xml.getElementsByTagName('atom:link')[0].getAttribute('href'),
      mimetype: xml.getElementsByTagName('atom:link')[0].getAttribute('type')
    }
  })
}

const statusPosterService = {
  postStatus,
  uploadMedia
}

export default statusPosterService