var url = require('url') var pull = require('pull-stream') var cat = require('pull-cat') var paramap = require('pull-paramap') var multicb = require('multicb') var JsDiff = require('diff') var GitRepo = require('pull-git-repo') var gitPack = require('pull-git-pack') var u = require('../util') var paginate = require('../paginate') var markdown = require('../markdown') var forms = require('../forms') module.exports = function (web) { return new RepoRoutes(web) } function RepoRoutes(web) { this.web = web this.issues = require('./issues')(this, web) this.pulls = require('./pulls')(this, web) } var R = RepoRoutes.prototype function getRepoObjectString(repo, id, mode, cb) { if (!id) return cb(null, '') if (mode == 0160000) return cb(null, 'Subproject commit ' + id) repo.getObjectFromAny(id, function (err, obj) { if (err) return cb(err) u.readObjectString(obj, cb) }) } function table(props) { return function (read) { return cat([ pull.once(''), pull( read, pull.map(function (row) { return row ? '' + row.map(function (cell, i) { return '' + cell + '' }).join('') + '' : '' }) ), pull.once('') ]) } } function ul(props) { return function (read) { return cat([ pull.once(''), pull(read, pull.map(function (li) { return '
  • ' + li + '
  • ' })), pull.once('') ]) } } /* Repo */ R.serveRepoPage = function (req, repo, path) { var self = this var defaultBranch = 'master' var query = req._u.query if (query.rev != null) { // Allow navigating revs using GET query param. // Replace the branch in the path with the rev query value path[0] = path[0] || 'tree' path[1] = query.rev req._u.pathname = u.encodeLink([repo.id].concat(path)) delete req._u.query.rev delete req._u.search return self.web.serveRedirect(req, url.format(req._u)) } // get branch return path[1] ? R_serveRepoPage2.call(self, req, repo, path) : u.readNext(function (cb) { // TODO: handle this in pull-git-repo or ssb-git-repo repo.getSymRef('HEAD', true, function (err, ref) { if (err) return cb(err) repo.resolveRef(ref, function (err, rev) { path[1] = rev ? ref : null cb(null, R_serveRepoPage2.call(self, req, repo, path)) }) }) }) } function R_serveRepoPage2(req, repo, path) { var branch = path[1] var filePath = path.slice(2) switch (path[0]) { case undefined: case '': return this.serveRepoTree(req, repo, branch, []) case 'activity': return this.serveRepoActivity(req, repo, branch) case 'commits': return this.serveRepoCommits(req, repo, branch) case 'commit': return this.serveRepoCommit(req, repo, path[1]) case 'tag': return this.serveRepoTag(req, repo, branch, filePath) case 'tree': return this.serveRepoTree(req, repo, branch, filePath) case 'blob': return this.serveRepoBlob(req, repo, branch, filePath) case 'raw': return this.serveRepoRaw(req, repo, branch, filePath) case 'digs': return this.serveRepoDigs(req, repo) case 'fork': return this.serveRepoForkPrompt(req, repo) case 'forks': return this.serveRepoForks(req, repo) case 'issues': switch (path[1]) { case 'new': if (filePath.length == 0) return this.issues.serveRepoNewIssue(req, repo) break default: return this.issues.serveRepoIssues(req, repo, false) } case 'pulls': return this.issues.serveRepoIssues(req, repo, true) case 'compare': return this.pulls.serveRepoCompare(req, repo) case 'comparing': return this.pulls.serveRepoComparing(req, repo) default: return this.web.serve404(req) } } R.serveRepoNotFound = function (req, id, err) { return this.web.serveTemplate(req, req._t('error.RepoNotFound'), 404) (pull.values([ '

    ' + req._t('error.RepoNotFound') + '

    ', '

    ' + req._t('error.RepoNameNotFound') + '

    ', '
    ' + u.escape(err.stack) + '
    ' ])) } R.renderRepoPage = function (req, repo, page, branch, titleTemplate, body) { var self = this var gitUrl = 'ssb://' + repo.id var gitLink = '' var digsPath = [repo.id, 'digs'] var done = multicb({ pluck: 1, spread: true }) self.web.getRepoName(repo.feed, repo.id, done()) self.web.about.getName(repo.feed, done()) self.web.getVotes(repo.id, done()) if (repo.upstream) { self.web.getRepoName(repo.upstream.feed, repo.upstream.id, done()) self.web.about.getName(repo.upstream.feed, done()) } return u.readNext(function (cb) { done(function (err, repoName, authorName, votes, upstreamName, upstreamAuthorName) { if (err) return cb(null, self.web.serveError(req, err)) var upvoted = votes.upvoters[self.web.myId] > 0 var upstreamLink = !repo.upstream ? '' : u.link([repo.upstream]) var title = titleTemplate ? titleTemplate .replace(/%\{repo\}/g, repoName) .replace(/%\{author\}/g, authorName) : authorName + '/' + repoName var isPublic = self.web.isPublic cb(null, self.web.serveTemplate(req, title)(cat([ pull.once( '
    ' + '
    ' + '' + (isPublic ? '' : '' + '') + ' ' + '' + u.link(digsPath, votes.upvotes) + ' ' + (isPublic ? '' : '') + ' ' + u.link([repo.id, 'forks'], '+', false, ' title="' + req._t('Forks') + '"') + '
    ' + forms.name(req, !isPublic, repo.id, repoName, 'repo-name', null, req._t('repo.Rename'), '

    ' + u.link([repo.feed], authorName) + ' / ' + u.link([repo.id], repoName) + '

    ') + '
    ' + (repo.upstream ? '' + req._t('ForkedFrom', { repo: u.link([repo.upstream.feed], upstreamAuthorName) + '/' + u.link([repo.upstream.id], upstreamName) }) + '' : '') + u.nav([ [[repo.id], req._t('Code'), 'code'], [[repo.id, 'activity'], req._t('Activity'), 'activity'], [[repo.id, 'commits', branch||''], req._t('Commits'), 'commits'], [[repo.id, 'issues'], req._t('Issues'), 'issues'], [[repo.id, 'pulls'], req._t('PullRequests'), 'pulls'] ], page, gitLink)), body ]))) }) }) } R.serveEmptyRepo = function (req, repo) { if (repo.feed != this.web.myId) return this.renderRepoPage(req, repo, 'code', null, null, pull.once( '
    ' + '

    ' + req._t('EmptyRepo') + '

    ' + '
    ')) var gitUrl = 'ssb://' + repo.id return this.renderRepoPage(req, repo, 'code', null, null, pull.once( '
    ' + '

    ' + req._t('initRepo.GettingStarted') + '

    ' + '

    ' + req._t('initRepo.CreateNew') + '

    ' +
        'touch ' + req._t('initRepo.README') + '.md\n' +
        'git init\n' +
        'git add ' + req._t('initRepo.README') + '.md\n' +
        'git commit -m "' + req._t('initRepo.InitialCommit') + '"\n' +
        'git remote add origin ' + gitUrl + '\n' +
        'git push -u origin master
    \n' + '

    ' + req._t('initRepo.PushExisting') + '

    \n' + '
    git remote add origin ' + gitUrl + '\n' +
        'git push -u origin master
    ' + '
    ')) } R.serveRepoTree = function (req, repo, rev, path) { var type = repo.isCommitHash(rev) ? 'Tree' : 'Branch' var title = (path.length ? path.join('/') + ' · ' : '') + '%{author}/%{repo}' + (repo.head == 'refs/heads/' + rev ? '' : '@' + rev) return this.renderRepoPage(req, repo, 'code', rev, title, cat([ pull.once('
    ' + '

    ' + req._t(type) + ': '), this.revMenu(req, repo, rev), pull.once('

    '), type == 'Branch' && renderRepoLatest(req, repo, rev), pull.once('
    '), rev ? cat([ pull.once('
    '), renderRepoTree(req, repo, rev, path), pull.once('
    '), this.renderRepoReadme(req, repo, rev, path) ]) : this.serveEmptyRepo(req, repo) ])) } /* Repo activity */ R.serveRepoActivity = function (req, repo, branch) { var self = this var title = req._t('Activity') + ' · %{author}/%{repo}' return self.renderRepoPage(req, repo, 'activity', branch, title, cat([ pull.once('

    ' + req._t('Activity') + '

    '), pull( self.web.ssb.links({ dest: repo.id, rel: 'repo', values: true, reverse: true }), pull.asyncMap(renderRepoUpdate.bind(self, req, repo, false)) ), u.readOnce(function (cb) { var done = multicb({ pluck: 1, spread: true }) self.web.about.getName(repo.feed, done()) self.web.getMsg(repo.id, done()) done(function (err, authorName, msg) { if (err) return cb(err) self.web.renderFeedItem(req, { key: repo.id, value: msg, authorName: authorName }, cb) }) }) ])) } function renderRepoUpdate(req, repo, full, msg, cb) { var c = msg.value.content if (c.type != 'git-update') { return '' // return renderFeedItem(msg, cb) // TODO: render post, issue, pull-request } var branches = [] var tags = [] if (c.refs) for (var name in c.refs) { var m = name.match(/^refs\/(heads|tags)\/(.*)$/) || [,, name] ;(m[1] == 'tags' ? tags : branches) .push({name: m[2], value: c.refs[name]}) } var numObjects = c.objects ? Object.keys(c.objects).length : 0 var dateStr = new Date(msg.value.timestamp).toLocaleString(req._locale) this.web.about.getName(msg.value.author, function (err, name) { if (err) return cb(err) cb(null, '
    ' + u.link([msg.key], dateStr) + '
    ' + u.link([msg.value.author], name) + '
    ' + branches.map(function (update) { if (!update.value) { return '' + u.escape(update.name) + '
    ' } else { var commitLink = u.link([repo.id, 'commit', update.value]) var branchLink = u.link([repo.id, 'tree', update.name]) return branchLink + ' → ' + commitLink + '
    ' } }).join('') + tags.map(function (update) { return update.value ? u.link([repo.id, 'tag', update.value], update.name) : '' + u.escape(update.name) + '' }).join(', ') + '
    ') }) } /* Repo commits */ R.serveRepoCommits = function (req, repo, branch) { var query = req._u.query var title = req._t('Commits') + ' · %{author}/%{repo}' return this.renderRepoPage(req, repo, 'commits', branch, title, cat([ pull.once('

    ' + req._t('Commits') + '

    '), pull( repo.readLog(query.start || branch), pull.take(20), paramap(repo.getCommitParsed.bind(repo), 8), paginate( !query.start ? '' : function (first, cb) { cb(null, '…') }, pull.map(renderCommit.bind(this, req, repo)), function (commit, cb) { cb(null, commit.parents && commit.parents[0] ? '' + req._t('Older') + '' : '') } ) ) ])) } function renderCommit(req, repo, commit) { var commitPath = [repo.id, 'commit', commit.id] var treePath = [repo.id, 'tree', commit.id] return '
    ' + '' + u.link(commitPath, commit.title) + '
    ' + '' + commit.id + ' ' + u.link(treePath, req._t('Tree')) + '
    ' + u.escape(commit.author.name) + ' · ' + commit.author.date.toLocaleString(req._locale) + (commit.separateAuthor ? '
    ' + req._t('CommittedOn', { name: u.escape(commit.committer.name), date: commit.committer.date.toLocaleString(req._locale) }) : '') + '
    ' } /* Branch menu */ R.formatRevOptions = function (currentName) { return function (name) { var htmlName = u.escape(name) return '' } } R.formatRevType = function(req, type) { return ( type == 'heads' ? req._t('Branches') : type == 'tags' ? req._t('Tags') : type) } R.revMenu = function (req, repo, currentName) { var self = this return u.readOnce(function (cb) { repo.getRefNames(function (err, refs) { if (err) return cb(err) cb(null, '') }) }) } /* Repo tree */ function renderRepoLatest(req, repo, rev) { if (!rev) return pull.empty() return u.readOnce(function (cb) { repo.getCommitParsed(rev, function (err, commit) { if (err) return cb(err) var commitPath = [repo.id, 'commit', commit.id] var actor = commit.separateAuthor ? 'author' : 'committer' var actionKey = actor.slice(0,1).toUpperCase() + actor.slice(1) + 'ReleasedCommit' cb(null, '
    ' + '' + req._t(actionKey, { name: u.escape(commit[actor].name), commitName: u.link(commitPath, commit.title) }) + '' + '' + req._t('LatestOn', { commitId: commit.id.slice(0, 7), date: commit[actor].date.toLocaleString(req._locale) }) + '' + '
    ' ) }) }) } // breadcrumbs function linkPath(basePath, path) { path = path.slice() var last = path.pop() return path.map(function (dir, i) { return u.link(basePath.concat(path.slice(0, i+1)), dir) }).concat(last).join(' / ') } function renderRepoTree(req, repo, rev, path) { var pathLinks = path.length === 0 ? '' : ': ' + linkPath([repo.id, 'tree'], [rev].concat(path)) return cat([ pull.once(pathLinks ? '
    ' + req._t('Files') + pathLinks + '
    ' : ''), pull( repo.readDir(rev, path), pull.map(function (file) { var type = (file.mode === 040000) ? 'tree' : (file.mode === 0160000) ? 'commit' : 'blob' if (type == 'commit') return [ '🖈', '' + u.escape(file.name) + ''] var filePath = [repo.id, type, rev].concat(path, file.name) return ['' + (type == 'tree' ? '📁' : '📄') + '', u.link(filePath, file.name)] }), table('class="files w-100"') ) ]) } /* Repo readme */ R.renderRepoReadme = function (req, repo, branch, path) { var self = this return u.readNext(function (cb) { pull( repo.readDir(branch, path), pull.filter(function (file) { return /readme(\.|$)/i.test(file.name) }), pull.take(1), pull.collect(function (err, files) { if (err) return cb(null, pull.empty()) var file = files[0] if (!file) return cb(null, pull.once(path.length ? '' : '

    ' + req._t('NoReadme') + '

    ')) repo.getObjectFromAny(file.id, function (err, obj) { if (err) return cb(err) cb(null, cat([ pull.once('
    '), self.web.renderObjectData(obj, file.name, repo, branch, path), pull.once('
    ') ])) }) }) ) }) } /* Repo commit */ R.serveRepoCommit = function (req, repo, rev) { var self = this return u.readNext(function (cb) { repo.getCommitParsed(rev, function (err, commit) { if (err) return cb(err) var commitPath = [repo.id, 'commit', commit.id] var treePath = [repo.id, 'tree', commit.id] var title = u.escape(commit.title) + ' · ' + '%{author}/%{repo}@' + commit.id.substr(0, 8) cb(null, self.renderRepoPage(req, repo, null, rev, title, cat([ pull.once( '

    ' + u.link(commitPath, req._t('CommitRev', {rev: rev})) + '

    ' + '
    ' + '
    ' + u.link(treePath, req._t('BrowseFiles')) + '
    ' + '

    ' + u.linkify(u.escape(commit.title)) + '

    ' + (commit.body ? u.linkify(u.pre(commit.body)) : '') + (commit.separateAuthor ? req._t('AuthoredOn', { name: u.escape(commit.author.name), date: commit.author.date.toLocaleString(req._locale) }) + '
    ' : '') + req._t('CommittedOn', { name: u.escape(commit.committer.name), date: commit.committer.date.toLocaleString(req._locale) }) + '
    ' + commit.parents.map(function (id) { return req._t('Parent') + ': ' + u.link([repo.id, 'commit', id], id) }).join('
    ') + '
    ' + '

    ' + req._t('FilesChanged') + '

    '), // TODO: show diff from all parents (merge commits) self.renderDiffStat(req, [repo, repo], [commit.parents[0], commit.id]), pull.once('
    ') ]))) }) }) } /* Repo tag */ R.serveRepoTag = function (req, repo, rev, path) { var self = this return u.readNext(function (cb) { repo.getTagParsed(rev, function (err, tag) { if (err) { if (/Expected tag, got commit/.test(err.message)) { req._u.pathname = u.encodeLink([repo.id, 'commit', rev].concat(path)) return cb(null, self.web.serveRedirect(req, url.format(req._u))) } return cb(null, self.web.serveError(req, err)) } var title = req._t('TagName', { tag: u.escape(tag.tag) }) + ' · %{author}/%{repo}' var body = (tag.title + '\n\n' + tag.body.replace(/-----BEGIN PGP SIGNATURE-----\n[^.]*?\n-----END PGP SIGNATURE-----\s*$/, '')).trim() var date = tag.tagger.date cb(null, self.renderRepoPage(req, repo, 'tags', tag.object, title, pull.once( '
    ' + '

    ' + u.link([repo.id, 'tag', rev], tag.tag) + '

    ' + req._t('TaggedOn', { name: u.escape(tag.tagger.name), date: date && date.toLocaleString(req._locale) }) + '
    ' + u.link([repo.id, tag.type, tag.object]) + u.linkify(u.pre(body)) + '
    '))) }) }) } /* Diff stat */ R.renderDiffStat = function (req, repos, treeIds) { if (treeIds.length == 0) treeIds = [null] var id = treeIds[0] var lastI = treeIds.length - 1 var oldTree = treeIds[0] var changedFiles = [] return cat([ pull( GitRepo.diffTrees(repos, treeIds, true), pull.map(function (item) { var filename = u.escape(item.filename = item.path.join('/')) var oldId = item.id && item.id[0] var newId = item.id && item.id[lastI] var oldMode = item.mode && item.mode[0] var newMode = item.mode && item.mode[lastI] var action = !oldId && newId ? req._t('action.added') : oldId && !newId ? req._t('action.deleted') : oldMode != newMode ? req._t('action.changedMode', { old: oldMode.toString(8), new: newMode.toString(8) }) : req._t('changed') if (item.id) changedFiles.push(item) var blobsPath = item.id[1] ? [repos[1].id, 'blob', treeIds[1]] : [repos[0].id, 'blob', treeIds[0]] var rawsPath = item.id[1] ? [repos[1].id, 'raw', treeIds[1]] : [repos[0].id, 'raw', treeIds[0]] item.blobPath = blobsPath.concat(item.path) item.rawPath = rawsPath.concat(item.path) var fileHref = item.id ? '#' + encodeURIComponent(item.path.join('/')) : u.encodeLink(item.blobPath) return ['' + filename + '', action] }), table() ), pull( pull.values(changedFiles), paramap(function (item, cb) { var extension = u.getExtension(item.filename) if (extension in u.imgMimes) { var filename = u.escape(item.filename) return cb(null, '
    ' +
                '' +
                '' +
                '
    ' + filename + '
    ' + filename + '
    ') } var done = multicb({ pluck: 1, spread: true }) var mode0 = item.mode && item.mode[0] var modeI = item.mode && item.mode[lastI] var isSubmodule = (modeI == 0160000) getRepoObjectString(repos[0], item.id[0], mode0, done()) getRepoObjectString(repos[1], item.id[lastI], modeI, done()) done(function (err, strOld, strNew) { if (err) return cb(err) cb(null, htmlLineDiff(req, item.filename, item.filename, strOld, strNew, u.encodeLink(item.blobPath), !isSubmodule)) }) }, 4) ) ]) } function htmlLineDiff(req, filename, anchor, oldStr, newStr, blobHref, showViewLink) { return '
    ' +
        '' +
        (oldStr.length + newStr.length > 200000
          ? ''
          : tableDiff(oldStr, newStr, filename)) +
        '
    ' + filename + (showViewLink === false ? '' : '' + '' + req._t('View') + ' ' + '') + '
    ' + req._t('diff.TooLarge') + '
    ' + req._t('diff.OldFileSize', {bytes: oldStr.length}) + '
    ' + req._t('diff.NewFileSize', {bytes: newStr.length}) + '
    ' } function tableDiff(oldStr, newStr, filename) { var diff = JsDiff.structuredPatch('', '', oldStr, newStr) var groups = diff.hunks.map(function (hunk) { var oldLine = hunk.oldStart var newLine = hunk.newStart var header = '' + '@@ -' + oldLine + ',' + hunk.oldLines + ' ' + '+' + newLine + ',' + hunk.newLines + ' @@' + '' return [header].concat(hunk.lines.map(function (line) { var s = line[0] if (s == '\\') return var html = u.highlight(line, u.getExtension(filename)) var trClass = s == '+' ? 'diff-new' : s == '-' ? 'diff-old' : '' var lineNums = [s == '+' ? '' : oldLine++, s == '-' ? '' : newLine++] var id = [filename].concat(lineNums).join('-') return '' + lineNums.map(function (num) { return '' + (num ? '' + num + '' : '') + '' }).join('') + '' + html + '' })) }) return [].concat.apply([], groups).join('') } /* An unknown message linking to a repo */ R.serveRepoSomething = function (req, repo, id, msg, path) { return this.renderRepoPage(req, repo, null, null, null, pull.once('

    ' + u.link([id]) + '

    ' + u.json(msg) + '
    ')) } /* Repo update */ function objsArr(objs) { return Array.isArray(objs) ? objs : Object.keys(objs).map(function (sha1) { var obj = Object.create(objs[sha1]) obj.sha1 = sha1 return obj }) } R.serveRepoUpdate = function (req, repo, id, msg, path) { var self = this var raw = req._u.query.raw != null var title = req._t('Update') + ' · %{author}/%{repo}' if (raw) return self.renderRepoPage(req, repo, 'activity', null, title, pull.once( '' + req._t('Info') + '' + '

    ' + req._t('Update') + '

    ' + '
    ' + u.json({key: id, value: msg}) + '
    ')) // convert packs to old single-object style if (msg.content.indexes) { for (var i = 0; i < msg.content.indexes.length; i++) { msg.content.packs[i] = { pack: {link: msg.content.packs[i].link}, idx: msg.content.indexes[i] } } } var commits = cat([ msg.content.objects && pull( pull.values(msg.content.objects), pull.filter(function (obj) { return obj.type == 'commit' }), paramap(function (obj, cb) { self.web.getBlob(req, obj.link || obj.key, function (err, readObject) { if (err) return cb(err) GitRepo.getCommitParsed({read: readObject}, cb) }) }, 8) ), msg.content.packs && pull( pull.values(msg.content.packs), paramap(function (pack, cb) { var done = multicb({ pluck: 1, spread: true }) self.web.getBlob(req, pack.pack.link, done()) self.web.getBlob(req, pack.idx.link, done()) done(function (err, readPack, readIdx) { if (err) return cb(self.web.renderError(err)) cb(null, gitPack.decodeWithIndex(repo, readPack, readIdx)) }) }, 4), pull.flatten(), pull.asyncMap(function (obj, cb) { if (obj.type == 'commit') GitRepo.getCommitParsed(obj, cb) else pull(obj.read, pull.drain(null, cb)) }), pull.filter() ) ]) return self.renderRepoPage(req, repo, 'activity', null, title, cat([ pull.once('' + req._t('Data') + '' + '

    ' + req._t('Update') + '

    '), pull( pull.once({key: id, value: msg}), pull.asyncMap(renderRepoUpdate.bind(self, req, repo, true)) ), (msg.content.objects || msg.content.packs) && pull.once('

    ' + req._t('Commits') + '

    '), pull(commits, pull.map(function (commit) { return renderCommit(req, repo, commit) })) ])) } /* Blob */ R.serveRepoBlob = function (req, repo, rev, path) { var self = this return u.readNext(function (cb) { repo.getFile(rev, path, function (err, object) { if (err) return cb(null, self.web.serveBlobNotFound(req, repo.id, err)) var type = repo.isCommitHash(rev) ? 'Tree' : 'Branch' var pathLinks = path.length === 0 ? '' : ': ' + linkPath([repo.id, 'tree'], [rev].concat(path)) var rawFilePath = [repo.id, 'raw', rev].concat(path) var dirPath = path.slice(0, path.length-1) var filename = path[path.length-1] var extension = u.getExtension(filename) var title = (path.length ? path.join('/') + ' · ' : '') + '%{author}/%{repo}' + (repo.head == 'refs/heads/' + rev ? '' : '@' + rev) cb(null, self.renderRepoPage(req, repo, 'code', rev, title, cat([ pull.once('
    ' + '

    ' + req._t(type) + ': ' + rev + ' '), self.revMenu(req, repo, rev), pull.once('

    '), type == 'Branch' && renderRepoLatest(req, repo, rev), pull.once('
    ' + '

    ' + req._t('Files') + pathLinks + '

    ' + '
    ' + object.length + ' bytes' + '' + u.link(rawFilePath, req._t('Raw')) + '' + '
    ' + '
    '), extension in u.imgMimes ? pull.once('' + u.escape(filename) + '') : self.web.renderObjectData(object, filename, repo, rev, dirPath), pull.once('
    ') ]))) }) }) } /* Raw blob */ R.serveRepoRaw = function (req, repo, branch, path) { var self = this return u.readNext(function (cb) { repo.getFile(branch, path, function (err, object) { if (err) return cb(null, self.web.serveBuffer(404, req._t('error.BlobNotFound'))) var extension = u.getExtension(path[path.length-1]) var contentType = u.imgMimes[extension] cb(null, pull(object.read, self.web.serveRaw(object.length, contentType))) }) }) } /* Digs */ R.serveRepoDigs = function (req, repo) { var self = this return u.readNext(function (cb) { var title = req._t('Digs') + ' · %{author}/%{repo}' self.web.getVotes(repo.id, function (err, votes) { cb(null, self.renderRepoPage(req, repo, null, null, title, cat([ pull.once('

    ' + req._t('Digs') + '

    ' + '
    ' + req._t('Total') + ': ' + votes.upvotes + '
    '), pull( pull.values(Object.keys(votes.upvoters)), paramap(function (feedId, cb) { self.web.about.getName(feedId, function (err, name) { if (err) return cb(err) cb(null, u.link([feedId], name)) }) }, 8), ul() ), pull.once('
    ') ]))) }) }) } /* Forks */ R.getForks = function (repo, includeSelf) { var self = this return pull( cat([ includeSelf && pull.once(repo.id), // get downstream repos pull( self.web.ssb.links({ dest: repo.id, rel: 'upstream' }), pull.map('key') ), // look for other repos that previously had pull requests to this one pull( self.web.ssb.links({ dest: repo.id, values: true, rel: 'project' }), pull.filter(function (msg) { var c = msg && msg.value && msg.value.content return c && c.type == 'pull-request' }), pull.map(function (msg) { return msg.value.content.head_repo }) ) ]), pull.unique(), paramap(function (key, cb) { self.web.ssb.get(key, function (err, value) { if (err) cb(err) else cb(null, {key: key, value: value}) }) }, 4), pull.filter(function (msg) { var c = msg && msg.value && msg.value.content return c && c.type == 'git-repo' }), paramap(function (msg, cb) { self.web.getRepoFullName(msg.value.author, msg.key, function (err, repoName, authorName) { if (err) return cb(err) cb(null, { key: msg.key, value: msg.value, repoName: repoName, authorName: authorName }) }) }, 8) ) } R.serveRepoForks = function (req, repo) { var hasForks var title = req._t('Forks') + ' · %{author}/%{repo}' return this.renderRepoPage(req, repo, null, null, title, cat([ pull.once('

    ' + req._t('Forks') + '

    '), pull( this.getForks(repo), pull.map(function (msg) { hasForks = true return '
    ' + u.link([msg.value.author], msg.authorName) + ' / ' + u.link([msg.key], msg.repoName) + '' + u.timestamp(msg.value.timestamp, req) + '
    ' }) ), u.readOnce(function (cb) { cb(null, hasForks ? '' : req._t('NoForks')) }) ])) } R.serveRepoForkPrompt = function (req, repo) { var title = req._t('Fork') + ' · %{author}/%{repo}' return this.renderRepoPage(req, repo, null, null, title, pull.once( '
    ' + '

    ' + req._t('ForkRepoPrompt') + '

    ' + '

    ' + u.hiddenInputs({ id: repo.id }) + '' + ' ' + '

    ' )) } R.serveIssueOrPullRequest = function (req, repo, issue, path, id) { return issue.msg.value.content.type == 'pull-request' ? this.pulls.serveRepoPullReq(req, repo, issue, path, id) : this.issues.serveRepoIssue(req, repo, issue, path, id) }