Skip to content

Commit

Permalink
Add GET .../account/:username/permissions endpoint
Browse files Browse the repository at this point in the history
  • Loading branch information
nchaloult committed May 8, 2022
1 parent 0eb1be9 commit c6304d4
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 4 deletions.
17 changes: 16 additions & 1 deletion backend/api/account/accountController.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,21 @@ const getAccountBalance = async (req, res) => {
}
};

const getAccountPermissions = async (req, res) => {
try {
// TODO: Input verification logic?
const accountName = req.params.username;
const response = await accountService.getAccountPermissions(accountName);
debug.info(`Response for getting an account's permissions: ${JSON.stringify(response)}`);

if (!response.success) res.status(500).json(response);
else res.status(200).json(response);
} catch (error) {
debug.error(error.stack);
res.status(500).json({ message: error.message, error: error.stack });
}
};

const createInvoice = async (req, res) => {
try {
const amountMillisats = req.body.amountMillisats;
Expand All @@ -58,4 +73,4 @@ const createInvoice = async (req, res) => {
}
};

module.exports = { getAccountAllowance, payInvoice, createInvoice, getAccountBalance };
module.exports = { getAccountAllowance, payInvoice, createInvoice, getAccountBalance, getAccountPermissions };
21 changes: 19 additions & 2 deletions backend/api/account/accountService.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
const debug = require('../../utils/debug');
const senseiNodes = require('../../sensei/nodes');
const accounts = require('../../db/collection');
const collection = require('../../db/collection');

const DOC_NAME = 'nicks-family';
const MEMBERS_SUBCOLLECTION_NAME = 'members';

const getAccountAllowance = async (username) => {
try {
Expand All @@ -22,6 +25,20 @@ const getAccountBalance = async () => {
}
};

const getAccountPermissions = async (accountName) => {
const docRef = await collection.doc(DOC_NAME).collection(MEMBERS_SUBCOLLECTION_NAME).doc(accountName);
const doc = await docRef.get();
if (!doc.exists) {
const errMsg = `Firestore document "${docName}/${subcollectionName}/${accountName}" does not exist in the families collection`;
debug.error(errMsg);
throw new Error(errMsg);
}

// TODO: Error handling?
const permissions = doc.data().permissions;
return { success: true, permissions };
};

const payInvoice = async (invoice) => {
try {
const response = await senseiNodes.payInvoice(invoice);
Expand All @@ -42,4 +59,4 @@ const createInvoice = async (amountMillisats, description) => {
}
};

module.exports = { getAccountAllowance, payInvoice, createInvoice, getAccountBalance };
module.exports = { getAccountAllowance, payInvoice, createInvoice, getAccountBalance, getAccountPermissions };
3 changes: 2 additions & 1 deletion backend/api/account/index.js
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
const express = require('express');
const router = express();

const { getAccountAllowance, payInvoice, createInvoice, getAccountBalance } = require('./accountController');
const { getAccountAllowance, payInvoice, createInvoice, getAccountBalance, getAccountPermissions } = require('./accountController');

router.get('/account/balance', getAccountBalance);
router.get('/:username/permissions', getAccountPermissions);
router.get('/allowance', getAccountAllowance);
router.get('/payment/send', payInvoice);
router.get('/payment/receive', createInvoice);
Expand Down

0 comments on commit c6304d4

Please sign in to comment.