mirror of
https://github.com/jambonz/jambonz-api-server.git
synced 2026-07-04 19:21:53 +00:00
bff9314622
- Add precondition support to decorate.js retrieve function - Fix google-custom-voices.js typo and add delete precondition - Check ownership via speech_credential for google-custom-voices - Add retrieve/delete preconditions to lcr-carrier-set-entries.js - Add retrieve precondition to sip-gateways.js and smpp-gateways.js - Add scope check to lcr-routes.js custom GET handler - Add full authorization to tenants.js for all CRUD operations - Add scoped query methods to tenant model Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
85 lines
2.4 KiB
JavaScript
85 lines
2.4 KiB
JavaScript
const router = require('express').Router();
|
|
const Tenant = require('../../models/tenant');
|
|
const Account = require('../../models/account');
|
|
const decorate = require('./decorate');
|
|
const {DbErrorBadRequest, DbErrorForbidden} = require('../../utils/errors');
|
|
const sysError = require('../error');
|
|
|
|
const checkTenantScope = async(req, tenant) => {
|
|
if (req.user.hasAdminAuth) return;
|
|
|
|
if (req.user.hasAccountAuth) {
|
|
if (tenant.account_sid !== req.user.account_sid) {
|
|
throw new DbErrorForbidden('insufficient privileges');
|
|
}
|
|
}
|
|
|
|
if (req.user.hasServiceProviderAuth) {
|
|
if (tenant.service_provider_sid !== req.user.service_provider_sid) {
|
|
throw new DbErrorForbidden('insufficient privileges');
|
|
}
|
|
}
|
|
};
|
|
|
|
const validateAdd = async(req) => {
|
|
if (req.user.hasAdminAuth) return;
|
|
|
|
const account_sid = req.body.account_sid;
|
|
if (!account_sid) {
|
|
throw new DbErrorBadRequest('missing account_sid');
|
|
}
|
|
|
|
if (req.user.hasAccountAuth) {
|
|
if (account_sid !== req.user.account_sid) {
|
|
throw new DbErrorForbidden('insufficient privileges');
|
|
}
|
|
}
|
|
|
|
if (req.user.hasServiceProviderAuth) {
|
|
const accounts = await Account.retrieve(account_sid, req.user.service_provider_sid);
|
|
if (accounts.length === 0) {
|
|
throw new DbErrorForbidden('insufficient privileges');
|
|
}
|
|
}
|
|
};
|
|
|
|
const validateRetrieveOrUpdateOrDelete = async(req, sid) => {
|
|
const tenants = await Tenant.retrieve(sid);
|
|
if (!tenants || tenants.length === 0) {
|
|
throw new DbErrorBadRequest('not found');
|
|
}
|
|
const tenant = tenants[0];
|
|
await checkTenantScope(req, tenant);
|
|
};
|
|
|
|
const preconditions = {
|
|
add: validateAdd,
|
|
retrieve: validateRetrieveOrUpdateOrDelete,
|
|
update: validateRetrieveOrUpdateOrDelete,
|
|
delete: validateRetrieveOrUpdateOrDelete,
|
|
};
|
|
|
|
decorate(router, Tenant, ['add', 'retrieve', 'update', 'delete'], preconditions);
|
|
|
|
/* list - custom handler with proper scoping */
|
|
router.get('/', async(req, res) => {
|
|
const logger = req.app.locals.logger;
|
|
try {
|
|
let results;
|
|
if (req.user.hasAdminAuth) {
|
|
results = await Tenant.retrieveAll();
|
|
} else if (req.user.hasAccountAuth) {
|
|
results = await Tenant.retrieveAll(req.user.account_sid);
|
|
} else if (req.user.hasServiceProviderAuth) {
|
|
results = await Tenant.retrieveAllByServiceProviderSid(req.user.service_provider_sid);
|
|
} else {
|
|
results = [];
|
|
}
|
|
res.status(200).json(results);
|
|
} catch (err) {
|
|
sysError(logger, res, err);
|
|
}
|
|
});
|
|
|
|
module.exports = router;
|