mirror of
https://github.com/plankanban/planka.git
synced 2025-07-19 21:29:43 +02:00
100 lines
2 KiB
JavaScript
100 lines
2 KiB
JavaScript
/*!
|
|
* Copyright (c) 2024 PLANKA Software GmbH
|
|
* Licensed under the Fair Use License: https://github.com/plankanban/planka/blob/master/LICENSE.md
|
|
*/
|
|
|
|
const defaultFind = (criteria) => BoardMembership.find(criteria).sort('id');
|
|
|
|
/* Query methods */
|
|
|
|
const createOne = (values) => BoardMembership.create({ ...values }).fetch();
|
|
|
|
const getByIds = (ids) => defaultFind(ids);
|
|
|
|
const getByProjectId = (projectId) =>
|
|
defaultFind({
|
|
projectId,
|
|
});
|
|
|
|
const getByProjectIdAndUserId = (projectId, userId) =>
|
|
defaultFind({
|
|
projectId,
|
|
userId,
|
|
});
|
|
|
|
const getByProjectIds = (projectIds) =>
|
|
defaultFind({
|
|
projectId: projectIds,
|
|
});
|
|
|
|
const getByBoardId = (boardId) =>
|
|
defaultFind({
|
|
boardId,
|
|
});
|
|
|
|
const getByBoardIds = (boardIds, { exceptUserIdOrIds } = {}) => {
|
|
const criteria = {
|
|
boardId: boardIds,
|
|
};
|
|
|
|
if (exceptUserIdOrIds) {
|
|
criteria.userId = {
|
|
'!=': exceptUserIdOrIds,
|
|
};
|
|
}
|
|
|
|
return defaultFind(criteria);
|
|
};
|
|
|
|
const getByBoardIdsAndUserId = (boardIds, userId) =>
|
|
defaultFind({
|
|
userId,
|
|
boardId: boardIds,
|
|
});
|
|
|
|
const getByUserId = (userId, { exceptProjectIdOrIds } = {}) => {
|
|
const criteria = {
|
|
userId,
|
|
};
|
|
|
|
if (exceptProjectIdOrIds) {
|
|
criteria.projectId = {
|
|
'!=': exceptProjectIdOrIds,
|
|
};
|
|
}
|
|
|
|
return defaultFind(criteria);
|
|
};
|
|
|
|
const getOneById = (id) => BoardMembership.findOne(id);
|
|
|
|
const getOneByBoardIdAndUserId = (boardId, userId) =>
|
|
BoardMembership.findOne({
|
|
boardId,
|
|
userId,
|
|
});
|
|
|
|
const updateOne = async (criteria, values) =>
|
|
BoardMembership.updateOne(criteria).set({ ...values });
|
|
|
|
// eslint-disable-next-line no-underscore-dangle
|
|
const delete_ = (criteria) => BoardMembership.destroy(criteria).fetch();
|
|
|
|
const deleteOne = (criteria) => BoardMembership.destroyOne(criteria);
|
|
|
|
module.exports = {
|
|
createOne,
|
|
getByIds,
|
|
getByProjectId,
|
|
getByProjectIdAndUserId,
|
|
getByProjectIds,
|
|
getByBoardId,
|
|
getByBoardIds,
|
|
getByBoardIdsAndUserId,
|
|
getByUserId,
|
|
getOneById,
|
|
getOneByBoardIdAndUserId,
|
|
updateOne,
|
|
deleteOne,
|
|
delete: delete_,
|
|
};
|