-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
51 lines (42 loc) · 1.17 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
/* jshint sub: true */
var url = require('url');
/**
* Add custom campaign parameters to your URLs.
* @module utm-builder
*
* @param {String} link - Original URL
* @param {String} source
* @param {String} medium
* @param {String} campaign
* @param {String} [content]
* @param {String} [term]
*/
module.exports = function(link, source, medium, campaign, content, term) {
if (!link) {
throw new Error('link can not be empty');
}
if (!source) {
throw new Error('source can not be empty');
}
if (!medium) {
throw new Error('medium can not be empty');
}
if (!campaign) {
throw new Error('campaign can not be empty');
}
var parsedLink = url.parse(link, true);
parsedLink.query = parsedLink.query || {};
parsedLink.query['utm_source'] = source;
parsedLink.query['utm_medium'] = medium;
parsedLink.query['utm_campaign'] = campaign;
if (content != null) {
parsedLink.query['utm_content'] = content;
}
if (term != null) {
parsedLink.query['utm_term'] = term;
}
// remove 'search' property according documentation
// http://nodejs.org/api/url.html#url_url_format_urlobj
delete parsedLink.search;
return url.format(parsedLink);
};