aboutsummaryrefslogtreecommitdiff
path: root/src/services/status_poster/status_poster.service.js
blob: 2a32454150b9db24f83da603b8eec5497c781aa0 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
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.commit('addNewStatuses',
        { statuses: [data], timeline: 'friends', showImmediately: true })
    })
}

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')
    }
  })
}

const statusPosterService = {
  postStatus,
  uploadMedia
}

export default statusPosterService

// const statusPosterServiceFactory = (apiService, $ngRedux) => {
//   const postStatus = ({status, media = [], in_reply_to_status_id = undefined}) => {
//     const mediaIds = map(media, 'id');

//     return apiService.postStatus({status, mediaIds, in_reply_to_status_id}).
//       then((data) => data.json()).
//       then((data) => {
//         $ngRedux.dispatch({type: 'ADD_NEW_STATUSES', data: { statuses: [data], timeline: 'friends', showImmediately: true }});
//       });
//   };

//   const uploadMedia = (formData) => {
//     return apiService.uploadMedia(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')
//       };
//     });
//   };

//   const statusPosterService = {
//     postStatus,
//     uploadMedia
//   };

//   return statusPosterService;
// };

// statusPosterServiceFactory.$inject = ['apiService', '$ngRedux'];

// export default statusPosterServiceFactory;