Skip to content

Commit a4df77c

Browse files
committed
metadata & screenshots
1 parent d153892 commit a4df77c

File tree

8 files changed

+42
-42
lines changed

8 files changed

+42
-42
lines changed

.buildpacks

Whitespace-only changes.

app.json

+2
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
"env": {
1111
"NODE_ENV": "production",
1212
"BUILDPACK_URL": "https://github.com/lightning-viz/heroku-buildpack-nodejs",
13+
"LD_LIBRARY_PATH": "/usr/local/lib:/usr/lib:/lib:/app/vendor/phantomjs/lib",
14+
"PATH": "/usr/local/bin:/usr/bin:/bin:/app/vendor/phantomjs/bin",
1315
"LIGHTNING_USERNAME": {
1416
"description": "Username to secure this instance with basic auth. (optional)",
1517
"required": false

app/controllers/visualization.js

+20-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ var _ = require('lodash');
44
var webshot = require('webshot');
55
var config = require('../../config/config');
66
var debug = require('debug')('lightning:server:controllers:visualizations');
7-
7+
var cache = require('../cache');
8+
var concat = require('concat-stream');
89

910
exports.getData = function (req, res, next) {
1011
var vizId = req.params.vid;
@@ -239,6 +240,14 @@ exports.screenshot = function(req, res, next) {
239240
var host = req.headers.host;
240241
var url = 'http://' + host + '/visualizations/' + vizId + '/iframe';
241242

243+
res.setHeader('Content-Type', 'image/png');
244+
245+
var img = cache.get('screenshot/' + vizId);
246+
if(img) {
247+
console.log(img);
248+
return res.send(img);
249+
}
250+
242251
var width = req.query.width || 1024;
243252
var height = req.query.height || 768;
244253

@@ -247,17 +256,24 @@ exports.screenshot = function(req, res, next) {
247256
width: width,
248257
height: height
249258
},
250-
renderDelay: 500
259+
renderDelay: 500,
251260
};
252261

262+
if(process.env.PHANTOM_PATH) {
263+
opts.phantomPath = process.env.PHANTOM_PATH;
264+
}
265+
253266
webshot(url, opts, function(err, renderStream) {
254267

255268
if(err) {
256-
console.warn(err);
257269
return res.status(500).send();
258270
}
259271

260-
res.setHeader('Content-Type', 'image/png');
272+
var concatStream = concat(function(screenshot) {
273+
cache.put('screenshot/' + vizId, screenshot, 1000 * 60 * 10);
274+
});
275+
261276
renderStream.pipe(res);
277+
renderStream.pipe(concatStream);
262278
});
263279
}

app/models/visualizationtype.js

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ var path = require('path');
22
var fs = require('fs-extra');
33
var Q = require('q');
44
var uuid = require('node-uuid');
5-
var glob = require('glob');
65
var _ = require('lodash');
76
var env = process.env.NODE_ENV || 'development';
87
var dbConfig = require(__dirname + '/../../config/database')[env];

app/views/session/visualization-public.jade

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
extends ../layout
22

3+
block meta
4+
meta(content="#{BASE_URL}visualizations/#{viz.id}/screenshot/?width=800&height=600", property="og:image")
5+
meta(content="#{BASE_URL}visualizations/#{viz.id}/screenshot/?width=800&height=600", property="og:image:url")
6+
37
block sidebar
48

59
block content

config/database.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,11 @@ var config = require('./config');
44

55
var dbUrl = null;
66
if(process.env.DATABASE_URL) {
7-
dbUrl = url.parse(process.env.DATABASE_URL);
7+
dbUrl = url.parse(process.env.DATABASE_URL);
88
}
99

10+
console.log(dbUrl)
11+
1012
module.exports = {
1113
'development': {
1214
database: (dbUrl) ? dbUrl.path.replace('/', '') : 'lightning-viz',
@@ -18,7 +20,7 @@ module.exports = {
1820
'sync': {'force': true},
1921
'storage': config.root + '/database.sqlite',
2022
'logging': false
21-
},
23+
},
2224
'test': {
2325
database: (dbUrl) ? dbUrl.path.replace('/', '') : 'lightning-viz',
2426
username: (dbUrl) ? (dbUrl.auth.split(':') || [false])[0] : null,

config/express.js

+1-19
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ var serveStatic = require('serve-static');
1111
var slashes = require('connect-slashes');
1212
var favicon = require('serve-favicon');
1313

14-
var winston = require('winston');
15-
var helpers = require('view-helpers');
1614
var config = require('./config');
1715
var pkg = require('../package.json');
1816
var moment = require('moment');
@@ -36,19 +34,6 @@ module.exports = function (app, io) {
3634
app.use(favicon(path.resolve(__dirname + '/../public/images/favicon.ico')));
3735
app.use(serveStatic(config.root + '/public'));
3836

39-
// Use winston on production
40-
var log;
41-
if (env !== 'development') {
42-
log = {
43-
stream: {
44-
write: function (message, encoding) {
45-
winston.info(message);
46-
}
47-
}
48-
};
49-
} else {
50-
log = { format: 'dev' };
51-
}
5237

5338
// Don't log during tests
5439
// Logging middleware
@@ -76,7 +61,7 @@ module.exports = function (app, io) {
7661
app.use(cookieParser());
7762

7863
// bodyParser should be above methodOverride
79-
app.use(bodyParser.json({limit: '50mb'}));
64+
app.use(bodyParser.json({limit: '50mb'}));
8065
app.use(bodyParser.urlencoded({ extended: true, limit: '50mb' }));
8166

8267

@@ -135,9 +120,6 @@ module.exports = function (app, io) {
135120
}
136121
}));
137122

138-
// should be declared after session and flash
139-
app.use(helpers(pkg.name));
140-
141123
// adds CSRF support
142124
if (process.env.NODE_ENV !== 'test') {
143125
// app.use(csrf());

package.json

+11-16
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@
6060
"colors": "~0.6.2",
6161
"command-exists": "^0.1.0",
6262
"compression": "^1.0.8",
63+
"concat-stream": "^1.5.1",
6364
"connect-slashes": "^1.2.0",
6465
"cookie-parser": "^1.3.2",
6566
"cookie-session": "^1.0.2",
@@ -69,9 +70,6 @@
6970
"express": "^4.13.1",
7071
"forever": "^0.11.1",
7172
"fs-extra": "^0.11.1",
72-
"glob": "^4.0.6",
73-
"highlight.js": "^8.2.0",
74-
"immutable": "^3.7.4",
7573
"jade": "^1.11.0",
7674
"knox": "^0.9.0",
7775
"lodash": "^3.8.0",
@@ -81,30 +79,18 @@
8179
"multiparty": "^3.3.1",
8280
"node-uuid": "^1.4.1",
8381
"npm": "~2.12.1",
84-
"path": "~0.4.9",
8582
"pg": "^4.4.3",
8683
"pg-hstore": "^2.3.2",
87-
"pym.js": "^0.4.1",
8884
"q": "~1.0.1",
8985
"randomstring": "^1.0.3",
90-
"react": "^0.13.3",
91-
"react-highlight": "^0.5.0",
92-
"react-radio-group": "^2.0.2",
93-
"react-simpletabs": "^0.6.1",
94-
"request": "~2.36.0",
9586
"sequelize": "^3.6.0",
96-
"sequelize-cli": "^1.7.4",
9787
"serve-favicon": "^2.1.6",
9888
"serve-static": "^1.10.0",
9989
"socket.io": "^1.3.6",
10090
"sqlite3": "^3.1.1",
101-
"sticky-session": "^0.1.0",
102-
"superagent": "^0.18.2",
10391
"title-case": "^1.1.1",
10492
"validator": "~3.17.0",
105-
"view-helpers": "^0.1.5",
10693
"webshot": "^0.15.3",
107-
"winston": "^0.7.3",
10894
"yargs": "^1.3.3"
10995
},
11096
"devDependencies": {
@@ -126,6 +112,15 @@
126112
"reactify": "^1.1.1",
127113
"tiny-lr": "^0.1.6",
128114
"vinyl-buffer": "^1.0.0",
129-
"vinyl-source-stream": "^1.1.0"
115+
"vinyl-source-stream": "^1.1.0",
116+
"react": "^0.13.3",
117+
"react-highlight": "^0.5.0",
118+
"react-radio-group": "^2.0.2",
119+
"react-simpletabs": "^0.6.1",
120+
"highlight.js": "^8.2.0",
121+
"immutable": "^3.7.4",
122+
"superagent": "^0.18.2",
123+
"pym.js": "^0.4.1",
124+
"sequelize-cli": "^1.7.4"
130125
}
131126
}

0 commit comments

Comments
 (0)