changin query for the grants and organizations associated
This commit is contained in:
@@ -1,8 +1,8 @@
|
|||||||
const db = require('../../models'),
|
const db = require("../../models"),
|
||||||
errorMaker = require('../helpers/error.maker');
|
errorMaker = require("../helpers/error.maker");
|
||||||
|
|
||||||
const stripe = require('./stripe.controller');
|
const stripe = require("./stripe.controller");
|
||||||
const sendgrid = require('./sendgrid.controller');
|
const sendgrid = require("./sendgrid.controller");
|
||||||
|
|
||||||
const {
|
const {
|
||||||
Grant,
|
Grant,
|
||||||
@@ -25,7 +25,7 @@ exports.createGrant = async (req, res, next) => {
|
|||||||
actual_total = Math.round(amount * 100) / 100;
|
actual_total = Math.round(amount * 100) / 100;
|
||||||
|
|
||||||
if (!stripeToken) {
|
if (!stripeToken) {
|
||||||
throw errorMaker(400, 'No stripe token given');
|
throw errorMaker(400, "No stripe token given");
|
||||||
}
|
}
|
||||||
|
|
||||||
let transaction;
|
let transaction;
|
||||||
@@ -83,7 +83,7 @@ exports.createGrant = async (req, res, next) => {
|
|||||||
await transaction.commit();
|
await transaction.commit();
|
||||||
|
|
||||||
return res.status(200).json({
|
return res.status(200).json({
|
||||||
message: 'Successfully charged or subscribed',
|
message: "Successfully charged or subscribed",
|
||||||
grant
|
grant
|
||||||
});
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
@@ -97,7 +97,8 @@ exports.findGrantsByDonorId = async (req, res, next) => {
|
|||||||
const donor_id = req.user.id;
|
const donor_id = req.user.id;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const grants = await db.sequelize.query(`
|
const grants = await db.sequelize.query(
|
||||||
|
`
|
||||||
Select
|
Select
|
||||||
g.id,
|
g.id,
|
||||||
g.name,
|
g.name,
|
||||||
@@ -106,22 +107,34 @@ exports.findGrantsByDonorId = async (req, res, next) => {
|
|||||||
g.num_causes,
|
g.num_causes,
|
||||||
g.num_regions,
|
g.num_regions,
|
||||||
g.donor_id,
|
g.donor_id,
|
||||||
g.created_at,
|
GROUP_CONCAT(DISTINCT o.id SEPARATOR ',') AS organization_ids,
|
||||||
g.updated_at,
|
GROUP_CONCAT(DISTINCT o.name SEPARATOR ',') AS organization_names
|
||||||
o.id as organization_id,
|
|
||||||
o.primary_cause,
|
|
||||||
o.primary_region
|
|
||||||
from grants as g
|
from grants as g
|
||||||
left join GrantOrganizations as go on go.grant_id = g.id
|
inner join GrantOrganizations as go on go.grant_id = g.id
|
||||||
left join organizations as o on go.organization_id = o.id
|
left join organizations as o on o.id = go.organization_id
|
||||||
where donor_id = "0568eef6-f3cb-480b-933c-d32d540bface";
|
where donor_id = :donor_id
|
||||||
`, {
|
group by g.id, g.name, g.amount, g.monthly, g.num_causes, g.num_regions, g.donor_id;
|
||||||
type: db.sequelize.QueryTypes.SELECT
|
`,
|
||||||
|
{ type: db.sequelize.QueryTypes.SELECT, replacements: { donor_id } }
|
||||||
|
);
|
||||||
|
|
||||||
|
grants.map(grant => {
|
||||||
|
grant.organizations = [];
|
||||||
|
|
||||||
|
org_ids = grant.organization_ids.toString().split(",");
|
||||||
|
org_names = grant.organization_names.toString().split(",");
|
||||||
|
|
||||||
|
for (var i = 0; i < org_names.length; i++) {
|
||||||
|
grant.organizations.push({
|
||||||
|
id: org_ids[i],
|
||||||
|
name: org_names[i]
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
return res.status(200).json({
|
return res.status(200).json({
|
||||||
grants
|
grants
|
||||||
})
|
});
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
next(error);
|
next(error);
|
||||||
}
|
}
|
||||||
@@ -133,9 +146,9 @@ exports.deleteGrant = (req, res, next) => {
|
|||||||
|
|
||||||
Grant.destroy({ where: { id: grant_id, donor_id: user.id } })
|
Grant.destroy({ where: { id: grant_id, donor_id: user.id } })
|
||||||
.then(result => {
|
.then(result => {
|
||||||
var message = 'Already Deleted';
|
var message = "Already Deleted";
|
||||||
if (result) {
|
if (result) {
|
||||||
message = 'Grant Deleted';
|
message = "Grant Deleted";
|
||||||
}
|
}
|
||||||
|
|
||||||
res.status(201).json({
|
res.status(201).json({
|
||||||
|
|||||||
Reference in New Issue
Block a user