Skip to content

Instantly share code, notes, and snippets.

@jerodfritz
Created October 26, 2021 14:08
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jerodfritz/f338b583506e04a05d0938778288f121 to your computer and use it in GitHub Desktop.
Save jerodfritz/f338b583506e04a05d0938778288f121 to your computer and use it in GitHub Desktop.
Strapi isOwners.js policy
'use strict';
/**
* `isOwner` policy.
*/
var pluralize = require('pluralize')
module.exports = async (ctx, next) => {
try {
let errMsg = "You are not allowed to perform this action.";
const {
id,
role,
} = ctx.state.user;
if (typeof id === "undefined" || id === null) {
console.log(ctx);
return ctx.unauthorized(`${errMsg} [1]`);
}
if (role.type !== 'root') {
// [find, count] Only query entities that owned by the current user
if (
//GraphQL Query
ctx.request.method == "POST" && ctx.request.url.startsWith("/graphql") ||
// REST Get
ctx.request.method === 'GET'
) {
// Remove everything about owner in the query eg. owner.id_in, owner.id, owner etc.
for (let key in ctx.query) {
if (key.includes("owner")) {
delete ctx.query[key];
}
}
// Reset owner.id to current user id
ctx.query = Object.assign({
'owner.id': id
}, ctx.query);
}
// [update, delete] Check owner of an existing entity
if ((ctx.request.method === 'DELETE' || ctx.request.method === 'PUT') && typeof ctx.params !== "undefined" && ctx.params !== null && typeof ctx.params.id !== "undefined" && ctx.params.id !== null && ctx.params.id !== '') {
// Extract model name from request path eg. /messages/15
var modelName = ctx.request.path.match(/^\/(.*)\/\w*$/);
if (Array.isArray(modelName) === false || modelName.length !== 2 || modelName[1] === '') {
return ctx.unauthorized(`isOwner: Invalid request on path ${ctx.request.path}`);
}
// Get existing entity and check for ownership
let existingEntity = await strapi.query(pluralize.singular(modelName[1])).findOne({
id: ctx.params.id
});
if (typeof existingEntity === "undefined" || existingEntity === null) {
return ctx.notFound('Not Found');
}
if (typeof existingEntity.owner === "undefined" || existingEntity.owner === null || typeof existingEntity.owner.id === "undefined" || existingEntity.owner.id === null || existingEntity.owner.id.toString() !== id.toString()) {
return ctx.unauthorized(`isOwner: ${errMsg} [2]`);
}
// Set owner to current user
ctx.request.body.owner = id.toString();
}
// [create] Set owner for a new entity
if (!ctx.request.url.startsWith("/graphql") && ctx.request.method === 'POST') {
//console.log(ctx.request.url);
ctx.request.body.owner = id.toString();
}
await next();
// [find.one] Only query entities that owned by the current user
if (ctx.request.method === 'GET') {
if (Object.prototype.toString.call(ctx.response.body) === '[object Object]') {
if (typeof ctx.response.body.owner === "undefined" || ctx.response.body.owner === null || typeof ctx.response.body.owner.id === "undefined" || ctx.response.body.owner.id === null || ctx.response.body.owner.id.toString() !== id.toString()) {
return ctx.unauthorized(`isOwner: ${errMsg} [3]`);
}
}
}
}
} catch (error) {
strapi.plugins.sentry.services.sentry.sendError(error);
console.log("error", error);
return ctx.unauthorized(error);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment