Skip to content

Commit ad19c4d

Browse files
committed
Change injection strategy to work with Meteor 1.3 / gzip (#18)
1 parent d70d186 commit ad19c4d

File tree

4 files changed

+73
-20
lines changed

4 files changed

+73
-20
lines changed

History.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# vNEXT
22

3+
# v1.0.4-rc.0
4+
5+
* Change injection strategy to work with both Meteor 1.3 and earlier.
6+
(fixes #17, #18)
7+
38
# v1.0.3
49

510
* Fix broken `Injected.meta()`, thanks @JProgrammer! (#16)

lib/inject-core.js

+25-18
Original file line numberDiff line numberDiff line change
@@ -2,28 +2,35 @@
22
// We are simply using this hack because, there is no way to alter
33
// Meteor's html content on the server side
44

5-
var http = Npm.require('http');
6-
7-
var originalWrite = http.OutgoingMessage.prototype.write;
8-
http.OutgoingMessage.prototype.write = function(chunk, encoding) {
9-
//prevent hijacking other http requests
10-
if(!this.iInjected &&
11-
encoding === undefined && /^<!DOCTYPE html>/.test(chunk)) {
12-
chunk = chunk.toString();
13-
14-
for (id in Inject.rawModHtmlFuncs) {
15-
chunk = Inject.rawModHtmlFuncs[id](chunk, this);
16-
if (!_.isString(chunk)) {
17-
throw new Error('Inject func id "' + id + '" must return HTML, not '
18-
+ typeof(chunk) + '\n' + JSON.stringify(chunk, null, 2));
5+
Inject._hijackWrite = function(res) {
6+
var originalWrite = res.write;
7+
res.write = function(chunk, encoding) {
8+
//prevent hijacking other http requests
9+
if(!res.iInjected &&
10+
encoding === undefined && /^<!DOCTYPE html>/.test(chunk)) {
11+
chunk = chunk.toString();
12+
13+
for (id in Inject.rawModHtmlFuncs) {
14+
chunk = Inject.rawModHtmlFuncs[id](chunk, res);
15+
if (!_.isString(chunk)) {
16+
throw new Error('Inject func id "' + id + '" must return HTML, not '
17+
+ typeof(chunk) + '\n' + JSON.stringify(chunk, null, 2));
18+
}
1919
}
20+
21+
res.iInjected = true;
2022
}
2123

22-
this.iInjected = true;
23-
}
24+
originalWrite.call(res, chunk, encoding);
25+
};
26+
}
2427

25-
originalWrite.call(this, chunk, encoding);
26-
};
28+
WebApp.connectHandlers.use(function(req, res, next) {
29+
// We only separate this to make testing easier
30+
Inject._hijackWrite(res);
31+
32+
next();
33+
});
2734

2835
//meteor algorithm to check if this is a meteor serving http request or not
2936
Inject.appUrl = function(url) {

package.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package.describe({
22
summary: "Allow injection of arbitrary data to initial Meteor HTML page",
3-
version: "1.0.3",
3+
version: "1.0.4-rc.0",
44
git: "https://github.com/meteorhacks/meteor-inject-initial.git",
55
name: "meteorhacks:inject-initial"
66
});
@@ -32,7 +32,7 @@ function configurePackage(api) {
3232
api.versionsFrom('[email protected]');
3333
}
3434

35-
api.use('routepolicy', 'server');
35+
api.use(['routepolicy', 'webapp'], 'server');
3636
api.use(['ejson', 'underscore'], ['client','server']);
3737

3838
api.add_files('lib/inject-server.js', 'server');

test/inject-core.js

+41
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,42 @@
1+
// This test assumes Inject._hijackWrite is called inside of a
2+
// a WebApp.connectHandlers.use function (it is).
3+
4+
Tinytest.add(
5+
'Inject Core - injecting',
6+
function (test, done) {
7+
var context = {
8+
_header: {},
9+
_hadBody: true
10+
};
11+
12+
context.write = function(html) {
13+
test.equal(html, "<!DOCTYPE html>ABC</html>");
14+
};
15+
16+
var htmlText = "<!DOCTYPE html>---</html>"
17+
18+
Inject.rawModHtmlFuncs = {
19+
"id1": function(html, res) {
20+
test.isTrue(res, context);
21+
test.equal(html, htmlText);
22+
return html.replace('---', 'ABC');
23+
}
24+
}
25+
26+
Inject._hijackWrite(context);
27+
context.write(htmlText);
28+
29+
test.equal(context.iInjected, true);
30+
Inject.rawModHtmlFuncs = {};
31+
}
32+
);
33+
34+
35+
/*
36+
37+
We no longer override http.OutgoingMessage.prototype.write; instead
38+
we hijack res.write in connect middleware.
39+
140
Tinytest.add(
241
'Inject Core - injecting',
342
function (test, done) {
@@ -23,3 +62,5 @@ Tinytest.add(
2362
Inject.rawModHtmlFuncs = {};
2463
}
2564
);
65+
66+
*/

0 commit comments

Comments
 (0)