mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-04 04:10:33 +03:00
da24d13601
refs https://github.com/TryGhost/Team/issues/1808 refs https://github.com/TryGhost/Team/issues/1809 refs https://github.com/TryGhost/Team/issues/1820 refs https://github.com/TryGhost/Team/issues/1814 ### Changes in `member-events` package - Added MemberCreatedEvent (event, not model) - Added SubscriptionCreatedEvent (event, not model) ### Added `member-attribution` package (new) - Added the AttributionBuilder class which is able to convert a url history to an attribution object (exposed as getAttribution on the service itself, which handles the dependencies) ``` [{ "path": "/", "time": 123 }] ``` to ``` { "url": "/", "id": null, "type": "url" } ``` - event handler listens for MemberCreatedEvent and SubscriptionCreatedEvent and creates the corresponding models in the database. ### Changes in `members-api` package - Added urlHistory to `sendMagicLink` endpoint body + convert the urlHistory to an attribution object that is stored in the tokenData of the magic link (sent by Portal in this PR: https://github.com/TryGhost/Portal/pull/256). - Added urlHistory to `createCheckoutSession` endpoint + convert the urlHistory to attribution keys that are saved in the Stripe Session metadata (sent by Portal in this PR: https://github.com/TryGhost/Portal/pull/256). - Added attribution data property to member repository's create method (when a member is created) - Dispatch MemberCreatedEvent with attribution ### Changes in `members-stripe-service` package (`ghost/stripe`) - Dispatch SubscriptionCreatedEvent in WebhookController on subscription checkout (with attribution from session metadata)
75 lines
2.2 KiB
JavaScript
75 lines
2.2 KiB
JavaScript
// Switch these lines once there are useful utils
|
|
// const testUtils = require('./utils');
|
|
require('./utils');
|
|
const UrlTranslator = require('../lib/url-translator');
|
|
|
|
describe('UrlTranslator', function () {
|
|
describe('Constructor', function () {
|
|
it('doesn\'t throw', function () {
|
|
new UrlTranslator({});
|
|
});
|
|
});
|
|
|
|
describe('getTypeAndId', function () {
|
|
let translator;
|
|
before(function () {
|
|
translator = new UrlTranslator({
|
|
urlService: {
|
|
getResource: (path) => {
|
|
switch (path) {
|
|
case '/post': return {
|
|
config: {type: 'posts'},
|
|
data: {id: 'post'}
|
|
};
|
|
case '/tag': return {
|
|
config: {type: 'tags'},
|
|
data: {id: 'tag'}
|
|
};
|
|
case '/page': return {
|
|
config: {type: 'pages'},
|
|
data: {id: 'page'}
|
|
};
|
|
case '/author': return {
|
|
config: {type: 'authors'},
|
|
data: {id: 'author'}
|
|
};
|
|
}
|
|
}
|
|
}
|
|
});
|
|
});
|
|
|
|
it('returns posts', function () {
|
|
should(translator.getTypeAndId('/post')).eql({
|
|
type: 'post',
|
|
id: 'post'
|
|
});
|
|
});
|
|
|
|
it('returns pages', function () {
|
|
should(translator.getTypeAndId('/page')).eql({
|
|
type: 'page',
|
|
id: 'page'
|
|
});
|
|
});
|
|
|
|
it('returns authors', function () {
|
|
should(translator.getTypeAndId('/author')).eql({
|
|
type: 'author',
|
|
id: 'author'
|
|
});
|
|
});
|
|
|
|
it('returns tags', function () {
|
|
should(translator.getTypeAndId('/tag')).eql({
|
|
type: 'tag',
|
|
id: 'tag'
|
|
});
|
|
});
|
|
|
|
it('returns undefined', function () {
|
|
should(translator.getTypeAndId('/other')).eql(undefined);
|
|
});
|
|
});
|
|
});
|