78 lines
2.9 KiB
JavaScript
78 lines
2.9 KiB
JavaScript
import { OakInputIllegalException, } from 'oak-domain/lib/types';
|
|
import { assert } from 'oak-domain/lib/utils/assert';
|
|
import { generateNewId } from 'oak-domain/lib/utils/uuid';
|
|
import { pipeline } from 'oak-domain/lib/utils/executor';
|
|
const checkers = [
|
|
{
|
|
type: 'data',
|
|
action: 'create',
|
|
entity: 'userEntityGrant',
|
|
checker: (data) => {
|
|
if (data instanceof Array) {
|
|
data.forEach((ele) => {
|
|
if (!ele.relationIds || ele.relationIds.length === 0) {
|
|
throw new OakInputIllegalException('userEntityGrant', ['relationIds'], '至少应选择一个关系');
|
|
}
|
|
});
|
|
}
|
|
else {
|
|
if (!data.relationIds || data.relationIds.length === 0) {
|
|
throw new OakInputIllegalException('userEntityGrant', ['relationIds'], '至少应选择一个关系');
|
|
}
|
|
}
|
|
},
|
|
},
|
|
{
|
|
type: 'row',
|
|
entity: 'userEntityGrant',
|
|
action: 'claim',
|
|
filter: {
|
|
expired: false,
|
|
},
|
|
},
|
|
{
|
|
type: 'logical',
|
|
entity: 'userEntityGrant',
|
|
action: 'claim',
|
|
checker: (operation, context, option) => {
|
|
const { data, filter } = operation;
|
|
// assert(Object.keys(data).length === 1 && data.hasOwnProperty('userEntityClaim$ueg'));
|
|
assert(data.hasOwnProperty('userEntityClaim$ueg'));
|
|
const { userEntityClaim$ueg } = data;
|
|
assert(filter.id);
|
|
assert(userEntityClaim$ueg instanceof Array);
|
|
const dealInner = (userEntityGrant) => {
|
|
const { relationEntity } = userEntityGrant;
|
|
userEntityClaim$ueg.forEach((uec) => {
|
|
const { action, data } = uec;
|
|
assert(action === 'create');
|
|
const { userId, relationId, claimEntityId } = data;
|
|
Object.assign(data, {
|
|
userRelation: {
|
|
id: generateNewId(),
|
|
action: 'create',
|
|
data: {
|
|
id: generateNewId(),
|
|
userId,
|
|
relationId,
|
|
entityId: claimEntityId,
|
|
entity: relationEntity,
|
|
}
|
|
}
|
|
});
|
|
});
|
|
return userEntityClaim$ueg.length;
|
|
};
|
|
return pipeline(() => context.select('userEntityGrant', {
|
|
data: {
|
|
id: 1,
|
|
relationEntity: 1,
|
|
multiple: 1,
|
|
},
|
|
filter,
|
|
}, option), ([ueg]) => dealInner(ueg));
|
|
}
|
|
}
|
|
];
|
|
export default checkers;
|