spee.ch/server/routes/api/channelAvailability.js

24 lines
736 B
JavaScript
Raw Normal View History

2018-03-29 18:26:55 +02:00
const { checkChannelAvailability } = require('controllers/publishController.js');
const { sendGATimingEvent } = require('helpers/googleAnalytics.js');
2018-03-29 02:35:41 +02:00
const { handleErrorResponse } = require('helpers/errorHandlers.js');
/*
route to check whether site has published to a channel
*/
2018-03-29 20:24:52 +02:00
const channelAvailability = ({ ip, originalUrl, params: { name } }, res) => {
const gaStartTime = Date.now();
checkChannelAvailability(name)
.then(availableName => {
res.status(200).json(availableName);
sendGATimingEvent('end-to-end', 'claim name availability', name, gaStartTime, Date.now());
})
.catch(error => {
handleErrorResponse(originalUrl, ip, error, res);
});
2018-03-29 02:35:41 +02:00
};
module.exports = channelAvailability;