@hebcal/icalendar 4.15.2 → 4.15.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -1,4 +1,4 @@
1
- /*! @hebcal/icalendar v4.15.2 */
1
+ /*! @hebcal/icalendar v4.15.3 */
2
2
  'use strict';
3
3
 
4
4
  Object.defineProperty(exports, '__esModule', { value: true });
@@ -8,7 +8,7 @@ var murmurhash3 = require('murmurhash3');
8
8
  var restApi = require('@hebcal/rest-api');
9
9
  var fs = require('fs');
10
10
 
11
- var version="4.15.2";
11
+ var version="4.15.3";
12
12
 
13
13
  const VTIMEZONE = {};
14
14
  const CATEGORY = {
@@ -55,6 +55,28 @@ function appendTrackingToUrl(url, options) {
55
55
  const utmSource = options.utmSource || 'js';
56
56
  const utmMedium = options.utmMedium || 'icalendar';
57
57
  const utmCampaign = options.utmCampaign;
58
+ const u = new URL(url);
59
+
60
+ if (utmCampaign && utmCampaign.startsWith('ical-') && u.host === 'www.hebcal.com') {
61
+ u.host = 'hebcal.com';
62
+ const path = u.pathname;
63
+
64
+ if (path.startsWith('/holidays/')) {
65
+ u.pathname = '/h/' + path.substring(10);
66
+ } else if (path.startsWith('/sedrot/')) {
67
+ u.pathname = '/s/' + path.substring(8);
68
+ } else {
69
+ return restApi.appendIsraelAndTracking(url, options.il, utmSource, utmMedium, utmCampaign);
70
+ }
71
+
72
+ if (options.il) {
73
+ u.searchParams.set('i', 'on');
74
+ }
75
+
76
+ u.searchParams.set('uc', utmCampaign);
77
+ return u.toString();
78
+ }
79
+
58
80
  return restApi.appendIsraelAndTracking(url, options.il, utmSource, utmMedium, utmCampaign);
59
81
  }
60
82
 
package/dist/index.mjs CHANGED
@@ -1,10 +1,10 @@
1
- /*! @hebcal/icalendar v4.15.2 */
1
+ /*! @hebcal/icalendar v4.15.3 */
2
2
  import { flags, Locale } from '@hebcal/core';
3
3
  import { murmur32HexSync } from 'murmurhash3';
4
4
  import { shouldRenderBrief, pad2, getEventCategories, makeAnchor, pad4, getHolidayDescription, getCalendarTitle, appendIsraelAndTracking, makeTorahMemoText } from '@hebcal/rest-api';
5
5
  import { promises } from 'fs';
6
6
 
7
- var version="4.15.2";
7
+ var version="4.15.3";
8
8
 
9
9
  const VTIMEZONE = {};
10
10
  const CATEGORY = {
@@ -51,6 +51,28 @@ function appendTrackingToUrl(url, options) {
51
51
  const utmSource = options.utmSource || 'js';
52
52
  const utmMedium = options.utmMedium || 'icalendar';
53
53
  const utmCampaign = options.utmCampaign;
54
+ const u = new URL(url);
55
+
56
+ if (utmCampaign && utmCampaign.startsWith('ical-') && u.host === 'www.hebcal.com') {
57
+ u.host = 'hebcal.com';
58
+ const path = u.pathname;
59
+
60
+ if (path.startsWith('/holidays/')) {
61
+ u.pathname = '/h/' + path.substring(10);
62
+ } else if (path.startsWith('/sedrot/')) {
63
+ u.pathname = '/s/' + path.substring(8);
64
+ } else {
65
+ return appendIsraelAndTracking(url, options.il, utmSource, utmMedium, utmCampaign);
66
+ }
67
+
68
+ if (options.il) {
69
+ u.searchParams.set('i', 'on');
70
+ }
71
+
72
+ u.searchParams.set('uc', utmCampaign);
73
+ return u.toString();
74
+ }
75
+
54
76
  return appendIsraelAndTracking(url, options.il, utmSource, utmMedium, utmCampaign);
55
77
  }
56
78
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hebcal/icalendar",
3
- "version": "4.15.2",
3
+ "version": "4.15.3",
4
4
  "author": "Michael J. Radwin (https://github.com/mjradwin)",
5
5
  "keywords": [
6
6
  "ical",
@@ -24,7 +24,7 @@
24
24
  "url": "https://github.com/hebcal/hebcal-icalendar/issues"
25
25
  },
26
26
  "dependencies": {
27
- "@hebcal/core": "^3.33.2",
27
+ "@hebcal/core": "^3.33.3",
28
28
  "@hebcal/rest-api": "^3.12.0",
29
29
  "murmurhash3": "^0.5.0"
30
30
  },
@@ -48,18 +48,18 @@
48
48
  "verbose": true
49
49
  },
50
50
  "devDependencies": {
51
- "@babel/core": "^7.17.3",
51
+ "@babel/core": "^7.17.5",
52
52
  "@babel/preset-env": "^7.16.11",
53
53
  "@babel/register": "^7.17.0",
54
- "@rollup/plugin-babel": "^5.3.0",
55
- "@rollup/plugin-commonjs": "^21.0.1",
54
+ "@rollup/plugin-babel": "^5.3.1",
55
+ "@rollup/plugin-commonjs": "^21.0.2",
56
56
  "@rollup/plugin-json": "^4.1.0",
57
57
  "@rollup/plugin-node-resolve": "^13.1.3",
58
58
  "ava": "^4.0.1",
59
- "eslint": "^8.9.0",
59
+ "eslint": "^8.10.0",
60
60
  "eslint-config-google": "^0.14.0",
61
61
  "jsdoc": "^3.6.10",
62
62
  "jsdoc-to-markdown": "^7.1.1",
63
- "rollup": "^2.67.2"
63
+ "rollup": "^2.68.0"
64
64
  }
65
65
  }