git ssb

0+

cel / ssb-pull-requests



Tree: c7450f5a63f8f62ff9143f3a74bfc80f35a1611b

Files: c7450f5a63f8f62ff9143f3a74bfc80f35a1611b / index.js

3345 bytesRaw
1var pull = require('pull-stream')
2var paramap = require('pull-paramap')
3var asyncMemo = require('asyncmemo')
4var Issues = require('ssb-issues')
5
6function readNext(fn) {
7 var next
8 return function (end, cb) {
9 if (next) return next(end, cb)
10 fn(function (err, _next) {
11 if (err) return cb(err)
12 next = _next
13 next(null, cb)
14 })
15 }
16}
17
18module.exports = {
19 name: 'pull-requests',
20 version: '1.0.0',
21 manifest: {
22 get: 'async',
23 getRevs: 'async',
24 list: 'source'
25 },
26 schemas: require('./lib/schemas'),
27 init: function (sbot) {
28
29 var issues = Issues.init(sbot)
30 var getMsg = asyncMemo(sbot.get)
31
32 var getPullReq = asyncMemo(function (id, cb) {
33 issues.get(id, function (err, issue) {
34 if (err) return cb(err)
35 var c = issue.msg.value.content
36 issue.baseRepo = c.repo
37 issue.baseBranch = c.branch
38 issue.headRepo = c.head_repo
39 issue.headBranch = c.head_branch
40 cb(null, issue)
41 })
42 })
43
44 function getBranchLastUpdate(repoId, branch, lte, cb) {
45 // TODO: detect and skip updates from subsequent PR with same branch name
46 getMsg(repoId, function (err, msg) {
47 if (err) return cb(err)
48 var repoAuthor = msg.author
49 pull(
50 sbot.links({
51 dest: repoId,
52 source: repoAuthor,
53 rel: 'repo',
54 values: true,
55 reverse: true
56 }),
57 pull.filter(function (link) {
58 return link.value.content.type == 'git-update'
59 }),
60 pull.map(function (link) {
61 return {
62 timestamp: link.value.timestamp,
63 rev: (link.value.content.refs || {})['refs/heads/' + branch]
64 }
65 }),
66 pull.filter(function (update) {
67 return update.rev
68 && (lte ? update.timestamp <= lte : true)
69 }),
70 pull.take(1),
71 pull.collect(function (err, links) {
72 cb(err, links && links[0])
73 })
74 )
75 })
76 }
77
78 function getRevs(prId, cb) {
79 getPullReq(prId, function (err, pr) {
80 if (err) return cb(err)
81 // get the last rev of the head branch (before it was deleted)
82 getBranchLastUpdate(pr.headRepo, pr.headBranch, pr.updated_at,
83 function (err, headUpdate) {
84 if (err) return cb(err)
85 // get the rev of base when head was last updated
86 getBranchLastUpdate(pr.baseRepo, pr.baseBranch,
87 headUpdate.timestamp, function (err, baseUpdate) {
88 if (err) return cb(err)
89 cb(null, {base: baseUpdate.rev, head: headUpdate.rev})
90 })
91 })
92 })
93 }
94
95 function listPullReqs(opts) {
96 opts = opts || {}
97 opts.type = 'pull-request'
98 return pull(
99 sbot.messagesByType(opts),
100 pull.filter(function (msg) {
101 return (!opts.repo || opts.repo == msg.value.content.repo)
102 && (!opts.author || opts.author == msg.value.author)
103 }),
104 paramap(function (msg, cb) {
105 getPullReq(msg.key, cb)
106 }, 8),
107 pull.filter(opts.open != null && function (pr) {
108 return pr.open == opts.open
109 })
110 )
111 }
112
113 return {
114 get: getPullReq,
115 getRevs: getRevs,
116 list: listPullReqs
117 }
118 }
119}
120

Built with git-ssb-web