Added initial link-tracking package
refs https://github.com/TryGhost/Team/issues/1888
This commit is contained in:
parent
8fe200ff45
commit
160a0f881e
6
ghost/link-tracking/.eslintrc.js
Normal file
6
ghost/link-tracking/.eslintrc.js
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
module.exports = {
|
||||||
|
plugins: ['ghost'],
|
||||||
|
extends: [
|
||||||
|
'plugin:ghost/node'
|
||||||
|
]
|
||||||
|
};
|
21
ghost/link-tracking/README.md
Normal file
21
ghost/link-tracking/README.md
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# Link Tracking
|
||||||
|
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
|
||||||
|
## Develop
|
||||||
|
|
||||||
|
This is a monorepo package.
|
||||||
|
|
||||||
|
Follow the instructions for the top-level repo.
|
||||||
|
1. `git clone` this repo & `cd` into it as usual
|
||||||
|
2. Run `yarn` to install top-level dependencies.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
## Test
|
||||||
|
|
||||||
|
- `yarn lint` run just eslint
|
||||||
|
- `yarn test` run lint and tests
|
||||||
|
|
1
ghost/link-tracking/index.js
Normal file
1
ghost/link-tracking/index.js
Normal file
@ -0,0 +1 @@
|
|||||||
|
module.exports = require('./lib/link-tracking');
|
43
ghost/link-tracking/lib/link-tracking.js
Normal file
43
ghost/link-tracking/lib/link-tracking.js
Normal file
@ -0,0 +1,43 @@
|
|||||||
|
const DomainEvents = require('@tryghost/domain-events');
|
||||||
|
const {RedirectEvent} = require('@tryghost/link-redirects');
|
||||||
|
|
||||||
|
class LinkClickTrackingService {
|
||||||
|
#initialised = false;
|
||||||
|
|
||||||
|
async init() {
|
||||||
|
if (this.#initialised) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.subscribe();
|
||||||
|
this.#initialised = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param {import('@tryghost/link-redirects/LinkRedirect')} redirect
|
||||||
|
* @param {string} id
|
||||||
|
* @return {Promise<URL>}
|
||||||
|
*/
|
||||||
|
async addTrackingToRedirect(redirect, id){
|
||||||
|
const trackingUrl = new URL(redirect.from);
|
||||||
|
trackingUrl.searchParams.set('m', id);
|
||||||
|
return trackingUrl;
|
||||||
|
}
|
||||||
|
|
||||||
|
subscribe() {
|
||||||
|
DomainEvents.subscribe(RedirectEvent, (event) => {
|
||||||
|
const id = event.data.url.searchParams.get('m');
|
||||||
|
if (typeof id !== 'string') {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
const clickEvent = {
|
||||||
|
member_id: id,
|
||||||
|
link_id: event.data.link.link_id
|
||||||
|
};
|
||||||
|
// eslint-disable-next-line no-console
|
||||||
|
console.log('Finna store a click event', clickEvent);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
module.exports = LinkClickTrackingService;
|
30
ghost/link-tracking/package.json
Normal file
30
ghost/link-tracking/package.json
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{
|
||||||
|
"name": "@tryghost/link-tracking",
|
||||||
|
"version": "0.0.0",
|
||||||
|
"repository": "https://github.com/TryGhost/Ghost/tree/main/packages/link-tracking",
|
||||||
|
"author": "Ghost Foundation",
|
||||||
|
"private": true,
|
||||||
|
"main": "index.js",
|
||||||
|
"scripts": {
|
||||||
|
"dev": "echo \"Implement me!\"",
|
||||||
|
"test:unit": "NODE_ENV=testing c8 --all --reporter text --reporter cobertura mocha './test/**/*.test.js'",
|
||||||
|
"test": "yarn test:unit",
|
||||||
|
"lint:code": "eslint *.js lib/ --ext .js --cache",
|
||||||
|
"lint": "yarn lint:code && yarn lint:test",
|
||||||
|
"lint:test": "eslint -c test/.eslintrc.js test/ --ext .js --cache"
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
|
"index.js",
|
||||||
|
"lib"
|
||||||
|
],
|
||||||
|
"devDependencies": {
|
||||||
|
"c8": "7.12.0",
|
||||||
|
"mocha": "10.0.0",
|
||||||
|
"should": "13.2.3",
|
||||||
|
"sinon": "14.0.0"
|
||||||
|
},
|
||||||
|
"dependencies": {
|
||||||
|
"@tryghost/domain-events": "^0.1.14",
|
||||||
|
"@tryghost/link-redirects": "0.0.0"
|
||||||
|
}
|
||||||
|
}
|
6
ghost/link-tracking/test/.eslintrc.js
Normal file
6
ghost/link-tracking/test/.eslintrc.js
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
module.exports = {
|
||||||
|
plugins: ['ghost'],
|
||||||
|
extends: [
|
||||||
|
'plugin:ghost/test'
|
||||||
|
]
|
||||||
|
};
|
5
ghost/link-tracking/test/LinkTrackingService.test.js
Normal file
5
ghost/link-tracking/test/LinkTrackingService.test.js
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
describe('LinkTrackingService', function () {
|
||||||
|
it('exists', function () {
|
||||||
|
require('../');
|
||||||
|
});
|
||||||
|
});
|
@ -3325,6 +3325,11 @@
|
|||||||
"@tryghost/root-utils" "^0.3.16"
|
"@tryghost/root-utils" "^0.3.16"
|
||||||
debug "^4.3.1"
|
debug "^4.3.1"
|
||||||
|
|
||||||
|
"@tryghost/domain-events@^0.1.14":
|
||||||
|
version "0.1.14"
|
||||||
|
resolved "https://registry.yarnpkg.com/@tryghost/domain-events/-/domain-events-0.1.14.tgz#a0206b21981d8e3337dfc0ed56df182d6e7188b3"
|
||||||
|
integrity sha512-SoJMvrwBXFDciQwjobpuZae0AQ/pVB+RgSj+QEuKNqg6V6CAhNlLrI1rAhkHtXkuKaLDDzH8tKWQEeeApXdBng==
|
||||||
|
|
||||||
"@tryghost/elasticsearch@^3.0.3":
|
"@tryghost/elasticsearch@^3.0.3":
|
||||||
version "3.0.3"
|
version "3.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/@tryghost/elasticsearch/-/elasticsearch-3.0.3.tgz#6651298989f38bbe30777ab122d56a43f719d2c2"
|
resolved "https://registry.yarnpkg.com/@tryghost/elasticsearch/-/elasticsearch-3.0.3.tgz#6651298989f38bbe30777ab122d56a43f719d2c2"
|
||||||
|
Loading…
Reference in New Issue
Block a user