mirror of
https://github.com/naturalcrit/homebrewery.git
synced 2025-12-24 14:12:40 +00:00
* Fix for box-shadow/border-image issues on blockquotes in new columns (#1179) * Fix for issues with box-shadow and border-images on blockquotes when they appear at the top of columns other than the first. * Update phb.style.less Change to `-webkit-transform` IAW Github PR discussion * Add comment Co-authored-by: Sean Robertson <srobertson@fqnz.co.nz> Co-authored-by: Trevor Buckner <calculuschild@gmail.com> * Title will always return *something*, and not CSS (#1214) * Bump codemirror from 5.59.1 to 5.59.2 (#1200) Bumps [codemirror](https://github.com/codemirror/CodeMirror) from 5.59.1 to 5.59.2. - [Release notes](https://github.com/codemirror/CodeMirror/releases) - [Changelog](https://github.com/codemirror/CodeMirror/blob/master/CHANGELOG.md) - [Commits](https://github.com/codemirror/CodeMirror/compare/5.59.1...5.59.2) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> * Bump mongoose from 5.11.9 to 5.11.13 (#1199) Bumps [mongoose](https://github.com/Automattic/mongoose) from 5.11.9 to 5.11.13. - [Release notes](https://github.com/Automattic/mongoose/releases) - [Changelog](https://github.com/Automattic/mongoose/blob/master/History.md) - [Commits](https://github.com/Automattic/mongoose/compare/5.11.9...5.11.13) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> * Bump fs-extra from 9.0.1 to 9.1.0 (#1197) Bumps [fs-extra](https://github.com/jprichardson/node-fs-extra) from 9.0.1 to 9.1.0. - [Release notes](https://github.com/jprichardson/node-fs-extra/releases) - [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md) - [Commits](https://github.com/jprichardson/node-fs-extra/compare/9.0.1...9.1.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> * Bump eslint from 7.17.0 to 7.18.0 (#1195) Bumps [eslint](https://github.com/eslint/eslint) from 7.17.0 to 7.18.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v7.17.0...v7.18.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> * Bump nconf from 0.11.0 to 0.11.1 (#1190) Bumps [nconf](https://github.com/flatiron/nconf) from 0.11.0 to 0.11.1. - [Release notes](https://github.com/flatiron/nconf/releases) - [Changelog](https://github.com/indexzero/nconf/blob/master/CHANGELOG.md) - [Commits](https://github.com/flatiron/nconf/compare/v0.11.0...v0.11.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> * Bump googleapis from 66.0.0 to 67.0.0 (#1189) Bumps [googleapis](https://github.com/googleapis/google-api-nodejs-client) from 66.0.0 to 67.0.0. - [Release notes](https://github.com/googleapis/google-api-nodejs-client/releases) - [Changelog](https://github.com/googleapis/google-api-nodejs-client/blob/master/CHANGELOG.md) - [Commits](https://github.com/googleapis/google-api-nodejs-client/compare/v66.0.0...v67.0.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Trevor Buckner <calculuschild@gmail.com> * Bump express-static-gzip from 2.1.0 to 2.1.1 (#1180) Bumps [express-static-gzip](https://github.com/tkoenig89/express-static-gzip) from 2.1.0 to 2.1.1. - [Release notes](https://github.com/tkoenig89/express-static-gzip/releases) - [Commits](https://github.com/tkoenig89/express-static-gzip/compare/v2.1.0...v2.1.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: Trevor Buckner <calculuschild@gmail.com> * use fa-info-circle instead of fa-bars (#1109) * use fa-info-circle instead of fa-bars * Change Metadata button to Info Icon with Text Co-authored-by: Trevor Buckner <calculuschild@gmail.com> * Up Version Co-authored-by: G.Ambatte <sean@robertson-family.nz> Co-authored-by: Sean Robertson <srobertson@fqnz.co.nz> Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com> Co-authored-by: ericscheid <ericscheid@users.noreply.github.com>
152 lines
4.2 KiB
JavaScript
152 lines
4.2 KiB
JavaScript
const _ = require('lodash');
|
|
const HomebrewModel = require('./homebrew.model.js').model;
|
|
const router = require('express').Router();
|
|
const zlib = require('zlib');
|
|
const GoogleActions = require('./googleActions.js');
|
|
const Markdown = require('../shared/naturalcrit/markdown.js');
|
|
|
|
// const getTopBrews = (cb) => {
|
|
// HomebrewModel.find().sort({ views: -1 }).limit(5).exec(function(err, brews) {
|
|
// cb(brews);
|
|
// });
|
|
// };
|
|
|
|
const getGoodBrewTitle = (text)=>{
|
|
const tokens = Markdown.marked.lexer(text);
|
|
return title = (tokens.find((token)=>token.type == 'heading' || token.type == 'paragraph') || { text: 'No Title' }).text;
|
|
};
|
|
|
|
const newBrew = (req, res)=>{
|
|
const brew = req.body;
|
|
brew.authors = (req.account) ? [req.account.username] : [];
|
|
|
|
if(!brew.title) {
|
|
brew.title = getGoodBrewTitle(brew.text);
|
|
}
|
|
|
|
delete brew.editId;
|
|
delete brew.shareId;
|
|
delete brew.googleId;
|
|
|
|
const newHomebrew = new HomebrewModel(brew);
|
|
// Compress brew text to binary before saving
|
|
newHomebrew.textBin = zlib.deflateRawSync(newHomebrew.text);
|
|
// Delete the non-binary text field since it's not needed anymore
|
|
newHomebrew.text = undefined;
|
|
|
|
newHomebrew.save((err, obj)=>{
|
|
if(err) {
|
|
console.error(err, err.toString(), err.stack);
|
|
return res.status(500).send(`Error while creating new brew, ${err.toString()}`);
|
|
}
|
|
|
|
obj = obj.toObject();
|
|
obj.gDrive = false;
|
|
return res.status(200).send(obj);
|
|
});
|
|
};
|
|
|
|
const updateBrew = (req, res)=>{
|
|
HomebrewModel.get({ editId: req.params.id })
|
|
.then((brew)=>{
|
|
brew = _.merge(brew, req.body);
|
|
// Compress brew text to binary before saving
|
|
brew.textBin = zlib.deflateRawSync(req.body.text);
|
|
// Delete the non-binary text field since it's not needed anymore
|
|
brew.text = undefined;
|
|
brew.updatedAt = new Date();
|
|
|
|
if(req.account) {
|
|
brew.authors = _.uniq(_.concat(brew.authors, req.account.username));
|
|
}
|
|
|
|
brew.markModified('authors');
|
|
brew.markModified('systems');
|
|
|
|
brew.save((err, obj)=>{
|
|
if(err) throw err;
|
|
return res.status(200).send(obj);
|
|
});
|
|
})
|
|
.catch((err)=>{
|
|
console.error(err);
|
|
return res.status(500).send('Error while saving');
|
|
});
|
|
};
|
|
|
|
const deleteBrew = (req, res)=>{
|
|
HomebrewModel.find({ editId: req.params.id }, (err, objs)=>{
|
|
if(!objs.length || err) {
|
|
return res.status(404).send('Can not find homebrew with that id');
|
|
}
|
|
|
|
const brew = objs[0];
|
|
|
|
if(req.account) {
|
|
// Remove current user as author
|
|
brew.authors = _.pull(brew.authors, req.account.username);
|
|
brew.markModified('authors');
|
|
}
|
|
|
|
if(brew.authors.length === 0) {
|
|
// Delete brew if there are no authors left
|
|
brew.remove((err)=>{
|
|
if(err) return res.status(500).send('Error while removing');
|
|
return res.status(200).send();
|
|
});
|
|
} else {
|
|
// Otherwise, save the brew with updated author list
|
|
brew.save((err, savedBrew)=>{
|
|
if(err) throw err;
|
|
return res.status(200).send(savedBrew);
|
|
});
|
|
}
|
|
});
|
|
};
|
|
|
|
const newGoogleBrew = async (req, res, next)=>{
|
|
let oAuth2Client;
|
|
|
|
try { oAuth2Client = GoogleActions.authCheck(req.account, res); } catch (err) { return res.status(err.status).send(err.message); }
|
|
|
|
const brew = req.body;
|
|
brew.authors = (req.account) ? [req.account.username] : [];
|
|
|
|
if(!brew.title) {
|
|
brew.title = getGoodBrewTitle(brew.text);
|
|
}
|
|
|
|
delete brew.editId;
|
|
delete brew.shareId;
|
|
delete brew.googleId;
|
|
|
|
req.body = brew;
|
|
|
|
console.log(oAuth2Client);
|
|
|
|
const newBrew = await GoogleActions.newGoogleBrew(oAuth2Client, brew);
|
|
|
|
return res.status(200).send(newBrew);
|
|
};
|
|
|
|
const updateGoogleBrew = async (req, res, next)=>{
|
|
let oAuth2Client;
|
|
|
|
try { oAuth2Client = GoogleActions.authCheck(req.account, res); } catch (err) { return res.status(err.status).send(err.message); }
|
|
|
|
const updatedBrew = await GoogleActions.updateGoogleBrew(oAuth2Client, req.body);
|
|
|
|
return res.status(200).send(updatedBrew);
|
|
};
|
|
|
|
router.post('/api', newBrew);
|
|
router.post('/api/newGoogle/', newGoogleBrew);
|
|
router.put('/api/:id', updateBrew);
|
|
router.put('/api/update/:id', updateBrew);
|
|
router.put('/api/updateGoogle/:id', updateGoogleBrew);
|
|
router.delete('/api/:id', deleteBrew);
|
|
router.get('/api/remove/:id', deleteBrew);
|
|
router.get('/api/removeGoogle/:id', (req, res)=>{GoogleActions.deleteGoogleBrew(req, res, req.params.id);});
|
|
|
|
module.exports = router;
|