mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-21 18:01:36 +03:00
640290c31b
refs #9866 - the api call must be dynamic based on the api version information
31 lines
810 B
JavaScript
31 lines
810 B
JavaScript
const labs = require('../../../services/labs');
|
|
const common = require('../../../lib/common');
|
|
|
|
module.exports = function getFrontendClient(req, res, next) {
|
|
if (labs.isSet('publicAPI') !== true) {
|
|
return next();
|
|
}
|
|
|
|
const api = require('../../../api')['v0.1'];
|
|
|
|
return api.clients
|
|
.read({slug: 'ghost-frontend'})
|
|
.then((client) => {
|
|
client = client.clients[0];
|
|
|
|
if (client.status === 'enabled') {
|
|
res.locals.client = {
|
|
id: client.slug,
|
|
secret: client.secret
|
|
};
|
|
}
|
|
|
|
next();
|
|
})
|
|
.catch((err) => {
|
|
// Log the error, but carry on as this is non-critical
|
|
common.logging.error(err);
|
|
next();
|
|
});
|
|
};
|