git ssb

0+

cel / ssb-activity



Tree: 60bb192e4fd7cd1d216e02babf4182c884bf1b29

Files: 60bb192e4fd7cd1d216e02babf4182c884bf1b29 / run.js

2149 bytesRaw
1var fs = require('fs')
2var path = require('path')
3var pull = require('pull-stream')
4var File = require('pull-file')
5var Split = require('pull-split')
6var PNG = require('pngjs').PNG
7var common = require('./common')
8
9var start = common.startTime
10var startDay = Math.floor(start / 86400000)
11var startWeek = Math.floor(start / 86400000 / 7)
12var startMonth = Math.floor(start / 86400000 / 30.43666666666666666666)
13var startT
14
15var now = Date.now()
16var nowDay = Math.floor(now / 86400000)
17var nowWeek = Math.floor(now / 86400000 / 7)
18var nowMonth = Math.floor(now / 86400000 / 30.43666666666666666666)
19
20var series = process.argv[2]
21if (!series) throw new TypeError('Missing series argument')
22
23if (series === 'day') {
24 width = nowDay - startDay
25 startT = startDay
26} else if (series === 'week') {
27 width = nowWeek - startWeek
28 startT = startWeek
29} else if (series === 'month') {
30 width = nowMonth - startMonth
31 startT = startMonth
32} else {
33 throw new TypeError('Invalid series')
34}
35
36var info = JSON.parse(fs.readFileSync(path.join(__dirname, series + '.json')))
37var ids = JSON.parse(fs.readFileSync(path.join(__dirname, 'ids.json')))
38
39var width
40var height = info.max
41
42var png = new PNG({
43 width: width,
44 height: height,
45 colorType: 6
46})
47
48var userColors = common.computeIdColors(ids)
49var userNumbers = {}
50for (var i = 0; i < ids.length; i++) {
51 var id = ids[i]
52 userNumbers[id] = i
53}
54
55function setPixel(data, x, y, color) {
56 var i = (y * width + x) << 2
57 data[i] = color[0]
58 data[i+1] = color[1]
59 data[i+2] = color[2]
60 data[i+3] = color[3]
61}
62
63function compareIds(a, b) {
64 return userNumbers[a] - userNumbers[b]
65}
66
67pull(
68 File(path.join(__dirname, series + '.jsonp')),
69 Split(),
70 pull.filter(Boolean),
71 pull.map(JSON.parse),
72 pull.drain(function (interval) {
73 var x = interval.time - startT
74 var ids = interval.ids.sort(compareIds)
75 for (var i = 0; i < ids.length; i++) {
76 var id = ids[i]
77 var y = height - i
78 var color = userColors[id] || [0, 0, 0, 255]
79 setPixel(png.data, x, y, color)
80 }
81 }, function (err) {
82 if (err) throw err
83    png.pack().pipe(fs.createWriteStream(series + '.png'))
84 })
85)
86

Built with git-ssb-web