| 12345678910111213141516171819202122232425262728293031 |
- const loggerFactory = require('@alias/logger');
- const logger = loggerFactory('growi:middleware:certify-shared-page');
- module.exports = (crowi) => {
- return async(req, res, next) => {
- const pageId = req.query.pageId || req.body.pageId || null;
- const shareLinkId = req.query.shareLinkId || req.body.shareLinkId || null;
- if (pageId == null || shareLinkId == null) {
- return next();
- }
- const ShareLink = crowi.model('ShareLink');
- const sharelink = await ShareLink.findOne({ _id: shareLinkId, relatedPage: pageId });
- // check sharelink enabled
- if (sharelink == null || sharelink.isExpired()) {
- return next();
- }
- logger.debug('shareLink id is', sharelink._id);
- req.isSharedPage = true;
- logger.debug('Confirmed target page id is a share page');
- next();
- };
- };
|