2019-05-07 16:46:20 +03:00
|
|
|
const {Router} = require('express');
|
2018-12-11 09:47:44 +03:00
|
|
|
const body = require('body-parser');
|
2019-09-03 07:32:00 +03:00
|
|
|
const MagicLink = require('@tryghost/magic-link');
|
2019-09-06 08:14:56 +03:00
|
|
|
const StripePaymentProcessor = require('./lib/stripe');
|
2018-12-11 09:47:44 +03:00
|
|
|
|
2019-05-07 17:34:41 +03:00
|
|
|
const Tokens = require('./lib/tokens');
|
|
|
|
const Users = require('./lib/users');
|
2019-07-17 13:20:13 +03:00
|
|
|
const common = require('./lib/common');
|
2018-12-11 09:47:44 +03:00
|
|
|
|
|
|
|
module.exports = function MembersApi({
|
2019-09-03 07:32:00 +03:00
|
|
|
tokenConfig: {
|
2018-12-11 09:47:44 +03:00
|
|
|
issuer,
|
|
|
|
privateKey,
|
2019-09-03 07:32:00 +03:00
|
|
|
publicKey
|
|
|
|
},
|
|
|
|
auth: {
|
|
|
|
getSigninURL
|
|
|
|
},
|
2019-09-06 08:14:56 +03:00
|
|
|
paymentConfig,
|
2019-09-03 07:32:00 +03:00
|
|
|
mail: {
|
|
|
|
transporter
|
2018-12-11 09:47:44 +03:00
|
|
|
},
|
2019-09-25 06:15:31 +03:00
|
|
|
setMemberMetadata,
|
|
|
|
getMemberMetadata,
|
2018-12-11 09:47:44 +03:00
|
|
|
createMember,
|
|
|
|
getMember,
|
2019-09-24 08:48:56 +03:00
|
|
|
updateMember,
|
2019-04-13 08:08:56 +03:00
|
|
|
deleteMember,
|
2019-09-03 07:32:00 +03:00
|
|
|
listMembers
|
2018-12-11 09:47:44 +03:00
|
|
|
}) {
|
2019-09-06 08:14:56 +03:00
|
|
|
const {encodeIdentityToken, decodeToken} = Tokens({privateKey, publicKey, issuer});
|
|
|
|
|
2019-09-25 06:15:31 +03:00
|
|
|
const stripeStorage = {
|
|
|
|
async get(member) {
|
|
|
|
return getMemberMetadata(member, 'stripe');
|
|
|
|
},
|
|
|
|
async set(member, metadata) {
|
|
|
|
return setMemberMetadata(member, 'stripe', metadata);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
const stripe = paymentConfig.stripe ? new StripePaymentProcessor(paymentConfig.stripe, stripeStorage) : null;
|
2019-09-06 08:14:56 +03:00
|
|
|
|
|
|
|
async function ensureStripe(_req, res, next) {
|
|
|
|
if (!stripe) {
|
|
|
|
res.writeHead(400);
|
|
|
|
return res.end('Stripe not configured');
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
await stripe.ready();
|
|
|
|
next();
|
|
|
|
} catch (err) {
|
|
|
|
res.writeHead(500);
|
|
|
|
return res.end('There was an error configuring stripe');
|
|
|
|
}
|
|
|
|
}
|
2019-02-07 12:41:39 +03:00
|
|
|
|
2019-02-26 06:09:16 +03:00
|
|
|
let users = Users({
|
2019-09-06 08:16:35 +03:00
|
|
|
stripe,
|
2019-01-22 17:29:44 +03:00
|
|
|
createMember,
|
|
|
|
getMember,
|
2019-09-24 08:48:56 +03:00
|
|
|
updateMember,
|
2019-04-13 08:08:56 +03:00
|
|
|
deleteMember,
|
2019-09-03 07:32:00 +03:00
|
|
|
listMembers
|
2019-01-22 17:29:44 +03:00
|
|
|
});
|
2018-12-11 09:47:44 +03:00
|
|
|
|
2019-09-03 07:32:00 +03:00
|
|
|
const magicLinkService = new MagicLink({
|
|
|
|
transporter,
|
|
|
|
publicKey,
|
|
|
|
privateKey,
|
|
|
|
getSigninURL
|
|
|
|
});
|
Updated theme layer to use members-ssr (#10676)
* Removed support for cookies in members auth middleware
no-issue
The members middleware will no longer be supporting cookies, the cookie
will be handled by a new middleware specific for serverside rendering,
more informations can be found here:
https://paper.dropbox.com/doc/Members-Auth-II-4WP4vF6coMqDYbSMIajo5
* Removed members auth middleware from site app
no-issue
The site app no longer needs the members auth middleware as it doesn't
support cookies, and will be replaced by ssr specific middleware.
https://paper.dropbox.com/doc/Members-Auth-II-4WP4vF6coMqDYbSMIajo5
* Added comment for session_secret setting
no-issue
We are going to have multiple concepts of sessions, so adding a comment
here to be specific that this is for the Ghost Admin client
* Added theme_session_secret setting dynamic default
no-issue
Sessions for the theme layer will be signed, so we generate a random hex
string to use as a signing key
* Added getPublicConfig method
* Replaced export of httpHandler with POJO apiInstance
no-issue
This is mainly to reduce the public api, so it's easier to document.
* Renamed memberUserObject -> members
no-issue
Simplifies the interface, and is more inline with what we would want to export as an api library.
* Removed use of require options inside members
no-issue
This was too tight of a coupling between Ghost and Members
* Simplified apiInstance definition
no-issue
* Added getMember method to members api
* Added MembersSSR instance to members service
* Wired up routes for members ssr
* Updated members auth middleware to use getPublicConfig
* Removed publicKey static export from members service
* Used real session secret
no-issue
* Added DELETE /members/ssr handler
no-issue
This allows users to log out of the theme layer
* Fixed missing code property
no-issue
Ignition uses the statusCode property to forward status codes to call sites
* Removed superfluous error middleware
no-issue
Before we used generic JWT middleware which would reject, now the
middleware catches it's own error and doesn't error, thus this
middleware is unecessary.
* Removed console.logs
no-issue
* Updated token expirty to hardcoded 20 minutes
no-issue
This returns to our previous state of using short lived tokens, both for
security and simplicity.
* Removed hardcoded default member settings
no-issue
This is no longer needed, as defaults are in default-settings.json
* Removed stripe from default payment processor
no-issue
* Exported `getSiteUrl` method from url utils
no-issue
This keeps inline with newer naming conventions
* Updated how audience access control works
no-issue
Rather than being passed a function, members api now receives an object
which describes which origins have access to which audiences, and how
long those tokens should be allowed to work for. It also allows syntax
for default tokens where audience === origin requesting it. This can be
set to undefined or null to disable this functionality.
{
"http://site.com": {
"http://site.com": {
tokenLength: '5m'
},
"http://othersite.com": {
tokenLength: '1h'
}
},
"*": {
tokenLength: '30m'
}
}
* Updated members service to use access control feature
no-issue
This also cleans up a lot of unecessary variable definitions, and some
other minor cleanups.
* Added status code to auth pages html response
no-issue
This was missing, probably default but better to be explicit
* Updated gateway to have membersApiUrl from config
no-issue
Previously we were parsing the url, this was not very safe as we can
have Ghost hosted on a subdomain, and this would have failed.
* Added issuer to public config for members
no-issue
This can be used to request SSR tokens in the client
* Fixed path for gateway bundle
no-issue
* Updated settings model tests
no-issue
* Revert "Removed stripe from default payment processor"
This reverts commit 1d88d9b6d73a10091070bcc1b7f5779d071c7845.
* Revert "Removed hardcoded default member settings"
This reverts commit 9d899048ba7d4b272b9ac65a95a52af66b30914a.
* Installed @tryghost/members-ssr
* Fixed tests for settings model
2019-04-16 17:50:25 +03:00
|
|
|
|
2019-09-03 07:32:00 +03:00
|
|
|
async function sendEmailWithMagicLink(email){
|
|
|
|
return magicLinkService.sendMagicLink({email, user: {email}});
|
Updated theme layer to use members-ssr (#10676)
* Removed support for cookies in members auth middleware
no-issue
The members middleware will no longer be supporting cookies, the cookie
will be handled by a new middleware specific for serverside rendering,
more informations can be found here:
https://paper.dropbox.com/doc/Members-Auth-II-4WP4vF6coMqDYbSMIajo5
* Removed members auth middleware from site app
no-issue
The site app no longer needs the members auth middleware as it doesn't
support cookies, and will be replaced by ssr specific middleware.
https://paper.dropbox.com/doc/Members-Auth-II-4WP4vF6coMqDYbSMIajo5
* Added comment for session_secret setting
no-issue
We are going to have multiple concepts of sessions, so adding a comment
here to be specific that this is for the Ghost Admin client
* Added theme_session_secret setting dynamic default
no-issue
Sessions for the theme layer will be signed, so we generate a random hex
string to use as a signing key
* Added getPublicConfig method
* Replaced export of httpHandler with POJO apiInstance
no-issue
This is mainly to reduce the public api, so it's easier to document.
* Renamed memberUserObject -> members
no-issue
Simplifies the interface, and is more inline with what we would want to export as an api library.
* Removed use of require options inside members
no-issue
This was too tight of a coupling between Ghost and Members
* Simplified apiInstance definition
no-issue
* Added getMember method to members api
* Added MembersSSR instance to members service
* Wired up routes for members ssr
* Updated members auth middleware to use getPublicConfig
* Removed publicKey static export from members service
* Used real session secret
no-issue
* Added DELETE /members/ssr handler
no-issue
This allows users to log out of the theme layer
* Fixed missing code property
no-issue
Ignition uses the statusCode property to forward status codes to call sites
* Removed superfluous error middleware
no-issue
Before we used generic JWT middleware which would reject, now the
middleware catches it's own error and doesn't error, thus this
middleware is unecessary.
* Removed console.logs
no-issue
* Updated token expirty to hardcoded 20 minutes
no-issue
This returns to our previous state of using short lived tokens, both for
security and simplicity.
* Removed hardcoded default member settings
no-issue
This is no longer needed, as defaults are in default-settings.json
* Removed stripe from default payment processor
no-issue
* Exported `getSiteUrl` method from url utils
no-issue
This keeps inline with newer naming conventions
* Updated how audience access control works
no-issue
Rather than being passed a function, members api now receives an object
which describes which origins have access to which audiences, and how
long those tokens should be allowed to work for. It also allows syntax
for default tokens where audience === origin requesting it. This can be
set to undefined or null to disable this functionality.
{
"http://site.com": {
"http://site.com": {
tokenLength: '5m'
},
"http://othersite.com": {
tokenLength: '1h'
}
},
"*": {
tokenLength: '30m'
}
}
* Updated members service to use access control feature
no-issue
This also cleans up a lot of unecessary variable definitions, and some
other minor cleanups.
* Added status code to auth pages html response
no-issue
This was missing, probably default but better to be explicit
* Updated gateway to have membersApiUrl from config
no-issue
Previously we were parsing the url, this was not very safe as we can
have Ghost hosted on a subdomain, and this would have failed.
* Added issuer to public config for members
no-issue
This can be used to request SSR tokens in the client
* Fixed path for gateway bundle
no-issue
* Updated settings model tests
no-issue
* Revert "Removed stripe from default payment processor"
This reverts commit 1d88d9b6d73a10091070bcc1b7f5779d071c7845.
* Revert "Removed hardcoded default member settings"
This reverts commit 9d899048ba7d4b272b9ac65a95a52af66b30914a.
* Installed @tryghost/members-ssr
* Fixed tests for settings model
2019-04-16 17:50:25 +03:00
|
|
|
}
|
2019-09-03 07:32:00 +03:00
|
|
|
async function getMemberDataFromMagicLinkToken(token){
|
|
|
|
const user = await magicLinkService.getUserFromToken(token);
|
|
|
|
const email = user && user.email;
|
|
|
|
if (!email) {
|
|
|
|
return null;
|
2018-12-11 09:47:44 +03:00
|
|
|
}
|
2019-09-03 07:32:00 +03:00
|
|
|
const member = await getMemberIdentityData(email);
|
|
|
|
if (member) {
|
|
|
|
return member;
|
2018-12-11 09:47:44 +03:00
|
|
|
}
|
2019-09-09 08:44:50 +03:00
|
|
|
await users.create({email});
|
|
|
|
return getMemberIdentityData(email);
|
2019-09-03 07:32:00 +03:00
|
|
|
}
|
|
|
|
async function getMemberIdentityData(email){
|
2019-09-03 13:20:09 +03:00
|
|
|
return users.get({email});
|
2019-09-03 07:32:00 +03:00
|
|
|
}
|
|
|
|
async function getMemberIdentityToken(email){
|
|
|
|
const member = await getMemberIdentityData(email);
|
|
|
|
return encodeIdentityToken({sub: member.email});
|
2018-12-11 09:47:44 +03:00
|
|
|
}
|
|
|
|
|
2019-07-09 10:23:09 +03:00
|
|
|
const apiInstance = new Router();
|
2019-07-17 13:20:13 +03:00
|
|
|
|
2019-09-24 08:20:33 +03:00
|
|
|
apiInstance.post('/send-magic-link', body.json(), async function (req, res) {
|
2019-09-03 07:32:00 +03:00
|
|
|
const email = req.body.email;
|
|
|
|
if (!email) {
|
|
|
|
res.writeHead(400);
|
|
|
|
return res.end('Bad Request.');
|
|
|
|
}
|
|
|
|
try {
|
|
|
|
await sendEmailWithMagicLink(email);
|
|
|
|
res.writeHead(201);
|
|
|
|
return res.end('Created.');
|
|
|
|
} catch (err) {
|
2019-09-15 06:48:11 +03:00
|
|
|
common.logging.error(err);
|
2019-09-03 07:32:00 +03:00
|
|
|
res.writeHead(500);
|
|
|
|
return res.end('Internal Server Error.');
|
|
|
|
}
|
2019-07-17 13:20:13 +03:00
|
|
|
});
|
|
|
|
|
2019-09-24 08:20:33 +03:00
|
|
|
apiInstance.post('/create-stripe-checkout-session', ensureStripe, body.json(), async function (req, res) {
|
2019-09-06 08:14:56 +03:00
|
|
|
const plan = req.body.plan;
|
|
|
|
const identity = req.body.identity;
|
|
|
|
|
2019-09-25 06:51:45 +03:00
|
|
|
if (!plan) {
|
2019-09-06 08:14:56 +03:00
|
|
|
res.writeHead(400);
|
|
|
|
return res.end('Bad Request.');
|
|
|
|
}
|
|
|
|
|
|
|
|
let email;
|
|
|
|
try {
|
2019-09-25 06:51:45 +03:00
|
|
|
if (!identity) {
|
|
|
|
email = null;
|
|
|
|
} else {
|
|
|
|
const claims = await decodeToken(identity);
|
|
|
|
email = claims.sub;
|
|
|
|
}
|
2019-09-06 08:14:56 +03:00
|
|
|
} catch (err) {
|
|
|
|
res.writeHead(401);
|
|
|
|
return res.end('Unauthorized');
|
|
|
|
}
|
|
|
|
|
2019-09-25 06:51:45 +03:00
|
|
|
const member = email ? await users.get({email}) : null;
|
2019-09-06 08:14:56 +03:00
|
|
|
|
2019-09-25 06:51:45 +03:00
|
|
|
// Do not allow members already with a subscription to initiate a new checkout session
|
|
|
|
if (member && member.stripe.subscriptions.length > 0) {
|
2019-09-06 08:14:56 +03:00
|
|
|
res.writeHead(403);
|
|
|
|
return res.end('No permission');
|
|
|
|
}
|
|
|
|
|
2019-09-25 06:51:45 +03:00
|
|
|
const sessionInfo = await stripe.createCheckoutSession(member, plan);
|
2019-09-06 08:14:56 +03:00
|
|
|
|
|
|
|
res.writeHead(200, {
|
|
|
|
'Content-Type': 'application/json'
|
|
|
|
});
|
|
|
|
|
2019-09-25 06:51:45 +03:00
|
|
|
res.end(JSON.stringify(sessionInfo));
|
2019-09-06 08:14:56 +03:00
|
|
|
});
|
|
|
|
|
2019-09-25 06:27:57 +03:00
|
|
|
apiInstance.post('/handle-stripe-webhook', ensureStripe, body.raw({type: 'application/json'}), async function (req, res) {
|
|
|
|
try {
|
|
|
|
const event = await stripe.parseWebhook(req.body, req.headers['stripe-signature']);
|
|
|
|
if (event.type !== 'checkout.session.completed') {
|
|
|
|
res.writeHead(200);
|
|
|
|
return res.end();
|
|
|
|
}
|
|
|
|
|
|
|
|
const customer = await stripe.getCustomer(event.data.object.customer);
|
|
|
|
const member = await users.get({email: customer.email}) || await users.create({email: customer.email});
|
|
|
|
|
|
|
|
await stripe.addCustomerToMember(member, customer);
|
|
|
|
|
|
|
|
await sendEmailWithMagicLink(customer.email);
|
|
|
|
res.writeHead(200);
|
|
|
|
res.end();
|
|
|
|
} catch (err) {
|
|
|
|
res.writeHead(400);
|
|
|
|
res.end();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2019-09-03 07:32:00 +03:00
|
|
|
apiInstance.getMemberDataFromMagicLinkToken = getMemberDataFromMagicLinkToken;
|
|
|
|
apiInstance.getMemberIdentityData = getMemberIdentityData;
|
|
|
|
apiInstance.getMemberIdentityToken = getMemberIdentityToken;
|
2019-07-09 10:23:09 +03:00
|
|
|
|
2019-09-03 07:32:00 +03:00
|
|
|
apiInstance.setLogger = common.logging.setLogger;
|
2019-07-09 10:23:09 +03:00
|
|
|
|
Updated theme layer to use members-ssr (#10676)
* Removed support for cookies in members auth middleware
no-issue
The members middleware will no longer be supporting cookies, the cookie
will be handled by a new middleware specific for serverside rendering,
more informations can be found here:
https://paper.dropbox.com/doc/Members-Auth-II-4WP4vF6coMqDYbSMIajo5
* Removed members auth middleware from site app
no-issue
The site app no longer needs the members auth middleware as it doesn't
support cookies, and will be replaced by ssr specific middleware.
https://paper.dropbox.com/doc/Members-Auth-II-4WP4vF6coMqDYbSMIajo5
* Added comment for session_secret setting
no-issue
We are going to have multiple concepts of sessions, so adding a comment
here to be specific that this is for the Ghost Admin client
* Added theme_session_secret setting dynamic default
no-issue
Sessions for the theme layer will be signed, so we generate a random hex
string to use as a signing key
* Added getPublicConfig method
* Replaced export of httpHandler with POJO apiInstance
no-issue
This is mainly to reduce the public api, so it's easier to document.
* Renamed memberUserObject -> members
no-issue
Simplifies the interface, and is more inline with what we would want to export as an api library.
* Removed use of require options inside members
no-issue
This was too tight of a coupling between Ghost and Members
* Simplified apiInstance definition
no-issue
* Added getMember method to members api
* Added MembersSSR instance to members service
* Wired up routes for members ssr
* Updated members auth middleware to use getPublicConfig
* Removed publicKey static export from members service
* Used real session secret
no-issue
* Added DELETE /members/ssr handler
no-issue
This allows users to log out of the theme layer
* Fixed missing code property
no-issue
Ignition uses the statusCode property to forward status codes to call sites
* Removed superfluous error middleware
no-issue
Before we used generic JWT middleware which would reject, now the
middleware catches it's own error and doesn't error, thus this
middleware is unecessary.
* Removed console.logs
no-issue
* Updated token expirty to hardcoded 20 minutes
no-issue
This returns to our previous state of using short lived tokens, both for
security and simplicity.
* Removed hardcoded default member settings
no-issue
This is no longer needed, as defaults are in default-settings.json
* Removed stripe from default payment processor
no-issue
* Exported `getSiteUrl` method from url utils
no-issue
This keeps inline with newer naming conventions
* Updated how audience access control works
no-issue
Rather than being passed a function, members api now receives an object
which describes which origins have access to which audiences, and how
long those tokens should be allowed to work for. It also allows syntax
for default tokens where audience === origin requesting it. This can be
set to undefined or null to disable this functionality.
{
"http://site.com": {
"http://site.com": {
tokenLength: '5m'
},
"http://othersite.com": {
tokenLength: '1h'
}
},
"*": {
tokenLength: '30m'
}
}
* Updated members service to use access control feature
no-issue
This also cleans up a lot of unecessary variable definitions, and some
other minor cleanups.
* Added status code to auth pages html response
no-issue
This was missing, probably default but better to be explicit
* Updated gateway to have membersApiUrl from config
no-issue
Previously we were parsing the url, this was not very safe as we can
have Ghost hosted on a subdomain, and this would have failed.
* Added issuer to public config for members
no-issue
This can be used to request SSR tokens in the client
* Fixed path for gateway bundle
no-issue
* Updated settings model tests
no-issue
* Revert "Removed stripe from default payment processor"
This reverts commit 1d88d9b6d73a10091070bcc1b7f5779d071c7845.
* Revert "Removed hardcoded default member settings"
This reverts commit 9d899048ba7d4b272b9ac65a95a52af66b30914a.
* Installed @tryghost/members-ssr
* Fixed tests for settings model
2019-04-16 17:50:25 +03:00
|
|
|
apiInstance.getPublicConfig = function () {
|
|
|
|
return Promise.resolve({
|
|
|
|
publicKey,
|
|
|
|
issuer
|
|
|
|
});
|
|
|
|
};
|
2019-07-17 13:20:13 +03:00
|
|
|
|
2019-09-05 06:00:46 +03:00
|
|
|
apiInstance.members = users;
|
2019-09-03 07:32:00 +03:00
|
|
|
apiInstance.bus = new (require('events').EventEmitter)();
|
2019-09-06 08:14:56 +03:00
|
|
|
|
|
|
|
if (stripe) {
|
|
|
|
stripe.ready().then(() => {
|
|
|
|
apiInstance.bus.emit('ready');
|
|
|
|
}).catch((err) => {
|
|
|
|
apiInstance.bus.emit('error', err);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
process.nextTick(() => apiInstance.bus.emit('ready'));
|
|
|
|
}
|
2018-12-11 09:47:44 +03:00
|
|
|
|
Updated theme layer to use members-ssr (#10676)
* Removed support for cookies in members auth middleware
no-issue
The members middleware will no longer be supporting cookies, the cookie
will be handled by a new middleware specific for serverside rendering,
more informations can be found here:
https://paper.dropbox.com/doc/Members-Auth-II-4WP4vF6coMqDYbSMIajo5
* Removed members auth middleware from site app
no-issue
The site app no longer needs the members auth middleware as it doesn't
support cookies, and will be replaced by ssr specific middleware.
https://paper.dropbox.com/doc/Members-Auth-II-4WP4vF6coMqDYbSMIajo5
* Added comment for session_secret setting
no-issue
We are going to have multiple concepts of sessions, so adding a comment
here to be specific that this is for the Ghost Admin client
* Added theme_session_secret setting dynamic default
no-issue
Sessions for the theme layer will be signed, so we generate a random hex
string to use as a signing key
* Added getPublicConfig method
* Replaced export of httpHandler with POJO apiInstance
no-issue
This is mainly to reduce the public api, so it's easier to document.
* Renamed memberUserObject -> members
no-issue
Simplifies the interface, and is more inline with what we would want to export as an api library.
* Removed use of require options inside members
no-issue
This was too tight of a coupling between Ghost and Members
* Simplified apiInstance definition
no-issue
* Added getMember method to members api
* Added MembersSSR instance to members service
* Wired up routes for members ssr
* Updated members auth middleware to use getPublicConfig
* Removed publicKey static export from members service
* Used real session secret
no-issue
* Added DELETE /members/ssr handler
no-issue
This allows users to log out of the theme layer
* Fixed missing code property
no-issue
Ignition uses the statusCode property to forward status codes to call sites
* Removed superfluous error middleware
no-issue
Before we used generic JWT middleware which would reject, now the
middleware catches it's own error and doesn't error, thus this
middleware is unecessary.
* Removed console.logs
no-issue
* Updated token expirty to hardcoded 20 minutes
no-issue
This returns to our previous state of using short lived tokens, both for
security and simplicity.
* Removed hardcoded default member settings
no-issue
This is no longer needed, as defaults are in default-settings.json
* Removed stripe from default payment processor
no-issue
* Exported `getSiteUrl` method from url utils
no-issue
This keeps inline with newer naming conventions
* Updated how audience access control works
no-issue
Rather than being passed a function, members api now receives an object
which describes which origins have access to which audiences, and how
long those tokens should be allowed to work for. It also allows syntax
for default tokens where audience === origin requesting it. This can be
set to undefined or null to disable this functionality.
{
"http://site.com": {
"http://site.com": {
tokenLength: '5m'
},
"http://othersite.com": {
tokenLength: '1h'
}
},
"*": {
tokenLength: '30m'
}
}
* Updated members service to use access control feature
no-issue
This also cleans up a lot of unecessary variable definitions, and some
other minor cleanups.
* Added status code to auth pages html response
no-issue
This was missing, probably default but better to be explicit
* Updated gateway to have membersApiUrl from config
no-issue
Previously we were parsing the url, this was not very safe as we can
have Ghost hosted on a subdomain, and this would have failed.
* Added issuer to public config for members
no-issue
This can be used to request SSR tokens in the client
* Fixed path for gateway bundle
no-issue
* Updated settings model tests
no-issue
* Revert "Removed stripe from default payment processor"
This reverts commit 1d88d9b6d73a10091070bcc1b7f5779d071c7845.
* Revert "Removed hardcoded default member settings"
This reverts commit 9d899048ba7d4b272b9ac65a95a52af66b30914a.
* Installed @tryghost/members-ssr
* Fixed tests for settings model
2019-04-16 17:50:25 +03:00
|
|
|
return apiInstance;
|
2018-12-11 09:47:44 +03:00
|
|
|
};
|