-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
91 lines (77 loc) · 2.07 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
/* jshint node: true */
'use strict';
/**
* The raw templates.
*
* @private
* @member {String} head
* @member {String} body
*/
var templates = {
head: '<script>var _paq=[["setSiteId",{{PIWIK_SID}}],["setTrackerUrl","{{PIWIK_URL}}/piwik.php"],["enableLinkTracking"]]</script>',
body: '<script src="{{PIWIK_URL}}/piwik.js" async defer></script>'
};
/**
* Checks that the minimum configuration has been set.
*
* @private
* @param {Object} config The application config.
* @return {Boolean} Returns `true` if configured, `false` otherwise.
*/
function isConfigured(config) {
if (config.piwik && config.piwik.url && config.piwik.sid) {
return true;
}
return false;
}
/**
* Hydrates the templates with the proper values.
*
* @private
* @param {String} template The template to hydrate.
* @param {String} url The Piwik endpoint URL.
* @param {Number} sid The Piwik site ID.
* @return {String} Returns the hydrated template.
*/
function hydrate(template, url, sid) {
template = template.replace('{{PIWIK_URL}}', url);
template = template.replace('{{PIWIK_SID}}', sid);
return template;
}
/**
* Implements the logic to inject a hydrated template into the HTML page.
*
* @since 0.0.2
* @type {Object}
*/
module.exports = {
/**
* The addon name.
*
* @readOnly
* @type {String}
*/
name: 'ember-cli-piwik',
/**
* Injects the templates into the HTML page at build time.
*
* Uses the `-footer` variation of the `head` and `body` tags to make sure the
* `<script>` tag are the last injection.
*
* @param {String} type The tag type.
* @param {Object} config The application config.
* @return {String} Returns the content to be injected.
*/
contentFor: function (type, config) {
if (isConfigured(config)) {
if (type === 'head-footer') {
return hydrate(templates.head, config.piwik.url, config.piwik.sid);
}
if (type === 'body-footer') {
return hydrate(templates.body, config.piwik.url, config.piwik.sid);
}
}
// Keep it consistent: don't add anything at all.
return '';
}
};