Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
26 lines
677 B
Plaintext
26 lines
677 B
Plaintext
import { Forbidden } from '../errors/index.js';
|
|
export const executeAccess = async ({ id, data, disableErrors, isReadingStaticFile = false, req }, access)=>{
|
|
if (access) {
|
|
const resolvedConstraint = await access({
|
|
id,
|
|
data,
|
|
isReadingStaticFile,
|
|
req
|
|
});
|
|
if (!resolvedConstraint) {
|
|
if (!disableErrors) {
|
|
throw new Forbidden(req.t);
|
|
}
|
|
}
|
|
return resolvedConstraint;
|
|
}
|
|
if (req.user) {
|
|
return true;
|
|
}
|
|
if (!disableErrors) {
|
|
throw new Forbidden(req.t);
|
|
}
|
|
return false;
|
|
};
|
|
|
|
//# sourceMappingURL=executeAccess.js.map |