summaryrefslogtreecommitdiff
path: root/bucky/app/federate.js
blob: 51b34f6b5a3c62e9ca32df22dbf72ae81c2fbb71 (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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
var fetch = require('node-fetch')
var db = require('../db')

module.exports = {

  route: (app) => {
    app.put('/raw/import/thread/',  importRaw('thread', 'Thread'),  (req, res) => res.send({ status: 'ok', el: res.el }))
    app.put('/raw/import/keyword/', importRaw('keyword', 'Keyword'), (req, res) => res.send({ status: 'ok', el: res.el }))
    app.put('/raw/import/file/',    importRaw('file', 'File'),    (req, res) => res.send({ status: 'ok', el: res.el }))
    app.put('/raw/import/comment/', importRaw('comment', 'Comment'), (req, res) => res.send({ status: 'ok', el: res.el }))

    app.get('/raw/export/thread/:id',  exportThread,  (req, res) => res.send({ status: 'ok' }))
    app.get('/raw/export/keyword/:keyword', exportKeyword, (req, res) => res.send({ status: 'ok' }))

    function importRaw (type, model) {
      return (req, res, next) => {
        console.log('importing', type, req.body.id)
        delete req.body.id
        db[model].forge(req.body).save().then((el) => {
          res.el = el;
          next()
        }).catch(e => {
          console.error(e)
          next()
        })
      }
    }
    function exportKeyword (req, res, next) {
      console.log('export keyword', req.params.keyword)
      db.getKeyword(req.params.keyword).then(keyword => {
        send("keyword", keyword)
        return db.getThreadsForKeyword(req.params.keyword)
      }).then(threads => {
        var promises = threads.map(thread => {
          exportThread({ params: { id: thread.get('id') } }, res, function(){})
        })
        return Promise.all(promises)
      }).then( () => {
        next()
      })
    }
    function exportThread (req, res, next) {
      var thread_id
      return db.getThread(req.params.id).then(thread => {
        return send("thread", thread)
      }).then(json => {
        thread_id = json.el.id
        console.log('got thread id', thread_id)
        return db.getCommentsForThread(req.params.id)
      }).then(comments => {
        var promises = comments.map(comment => {
          comment.set('thread', thread_id)
          send("comment", comment)
        })
        return Promise.all(promises)
      }).then( () => {
        return db.getFilesForThread(req.params.id)
      }).then(files => {
        var promises = files.map(file => {
          file.set('thread', thread_id)
          send("file", file)
        })
        return promises
      }).then( () => {
        next()
      }).catch(e => {
        console.error(e)
        next()
      })
    }
    function send(type, data){
      console.log('sending', type, data.get('id'))
      var json = data.toJSON()
      return fetch("https://bucky.asdf.us/raw/import/" + type, {
        method: 'PUT',
        body: JSON.stringify(json),
        headers: {
          'Content-Type': 'application/json',
          'Accept': 'application/json',
        },
      }).then((res) => {return res.json()})
    }

  }
}