This repository was archived by the owner on Sep 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata-permission.js
More file actions
837 lines (821 loc) · 32.5 KB
/
data-permission.js
File metadata and controls
837 lines (821 loc) · 32.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
/**
* MOST Web Framework
* A JavaScript Web Framework
* http://themost.io
* Created by Kyriakos Barbounakis<k.barbounakis@gmail.com> on 2014-06-19.
*
* Copyright (c) 2014, Kyriakos Barbounakis k.barbounakis@gmail.com
Anthi Oikonomou anthioikonomou@gmail.com
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
* Neither the name of MOST Web Framework nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
/**
* @private
*/
var util=require('util'),
qry = require('most-query'),
async = require('async'),
types = require('./types'),
_ = require("lodash"),
dataCache = require('./data-cache'),
common = require('./data-common');
/**
* @class
* @constructor
* @private
* @ignore
*/
function EachSeriesCancelled() {
//
}
/**
* @class
* @constructor
*/
function DataPermissionEventArgs() {
/**
* The target data model
* @type {DataModel}
*/
this.model = null;
/**
* The underlying query expression
* @type {QueryExpression}
*/
this.query = null;
/**
* The permission mask
* @type {Number}
*/
this.mask = null;
/**
* The query type
* @type {String}
*/
this.type = null;
/**
* The query type
* @type {String}
*/
this.privilege = null;
/**
* The data queryable object that emits the event.
* @type {DataQueryable|*}
*/
this.emitter = null;
}
/**
* An enumeration of the available permission masks
* @enum {number}
*/
var PermissionMask = {
/**
* Read Access Mask (1)
*/
Read:1,
/**
* Create Access Mask (2)
*/
Create:2,
/**
* Update Access Mask (4)
*/
Update:4,
/**
* Delete Access Mask (8)
*/
Delete:8,
/**
* Execute Access Mask (16)
*/
Execute:16,
/**
* Full Access Mask (31)
*/
Owner:31
};
/**
* @class
* @constructor
*/
function DataPermissionEventListener() {
//
}
/**
* Occurs before creating or updating a data object.
* @param {DataEventArgs} e - An object that represents the event arguments passed to this operation.
* @param {Function} callback - A callback function that should be called at the end of this operation. The first argument may be an error if any occured.
*/
DataPermissionEventListener.prototype.beforeSave = function(e, callback)
{
DataPermissionEventListener.prototype.validate(e, callback);
};
/**
* Occurs before removing a data object.
* @param {DataEventArgs} e - An object that represents the event arguments passed to this operation.
* @param {Function} callback - A callback function that should be called at the end of this operation. The first argument may be an error if any occured.
* @returns {DataEventListener}
*/
DataPermissionEventListener.prototype.beforeRemove = function(e, callback)
{
DataPermissionEventListener.prototype.validate(e, callback);
};
/**
* Validates permissions against the event arguments provided.
* @param {DataEventArgs} e - An object that represents the event arguments passed to this operation.
* @param {Function} callback - A callback function that should be called at the end of this operation. The first argument may be an error if any occured.
*/
DataPermissionEventListener.prototype.validate = function(e, callback) {
var model = e.model,
context = e.model.context,
requestMask = 1,
workspace = 1;
//ensure silent operation
if (e.model && e.model.$silent) {
callback();
return;
}
if (e.state == 0)
requestMask = PermissionMask.Read;
else if (e.state==1)
requestMask = PermissionMask.Create;
else if (e.state==2)
requestMask = PermissionMask.Update;
else if (e.state==4)
requestMask = PermissionMask.Delete;
else if (e.state==16)
requestMask = PermissionMask.Execute;
else {
callback(new Error('Target object has an invalid state.'));
return;
}
//validate throwError
if (typeof e.throwError === 'undefined')
e.throwError = true;
context.user = context.user || { name:'anonymous',authenticationType:'None' };
//change: 2-May 2015
//description: Use unattended execution account as an escape permission check account
var authSettings = context.getConfiguration().getAuthSettings();
if (authSettings)
{
var unattendedExecutionAccount=authSettings.unattendedExecutionAccount;
if ((typeof unattendedExecutionAccount !== 'undefined'
|| unattendedExecutionAccount != null)
&& (unattendedExecutionAccount===context.user.name))
{
e.result = true;
callback();
return;
}
}
//get user key
var users = context.model('User'), permissions = context.model('Permission');
if (_.isNil(users)) {
//do nothing
callback();
return;
}
if (_.isNil(permissions)) {
//do nothing
callback();
return;
}
effectiveAccounts(context, function(err, accounts) {
if (err) { callback(err); return; }
var permEnabled = model.privileges.filter(function(x) { return !x.disabled; }, model.privileges).length>0;
//get all enabled privileges
var privileges = model.privileges.filter(function(x) { return !x.disabled && ((x.mask & requestMask) == requestMask) });
if (privileges.length==0) {
if (e.throwError) {
//if the target model has privileges but it has no privileges with the requested mask
if (permEnabled) {
//throw error
var error = new Error('Access denied.');
error.status = 401;
callback(error);
}
else {
//do nothing
callback(null);
}
}
else {
//set result to false (or true if model has no privileges at all)
e.result = !permEnabled;
//and exit
callback(null);
}
}
else {
var cancel = false;
e.result = false;
//enumerate privileges
async.eachSeries(privileges, function(item, cb) {
if (cancel) {
cb(null);
return;
}
//global
if (item.type=='global') {
if (typeof item.account !== 'undefined') {
//check if a privilege is assigned by the model
if (item.account==='*') {
//get permission and exit
cancel=true;
e.result = true;
return cb();
}
else if (item.hasOwnProperty("account")) {
if (accounts.findIndex(function(x) { return x.name === item.account })>=0) {
cancel=true;
e.result = true;
return cb();
}
}
}
//try to find user has global permissions assigned
permissions.where('privilege').equal(model.name).
and('parentPrivilege').equal(null).
and('target').equal('0').
and('workspace').equal(workspace).
and('account').in(accounts.map(function(x) { return x.id; })).
and('mask').bit(requestMask).silent().count(function(err, count) {
if (err) {
cb(err);
}
else {
if (count>=1) {
cancel=true;
e.result = true;
}
cb(null);
}
});
}
else if (item.type=='parent') {
var mapping = model.inferMapping(item.property);
if (!mapping) {
cb(null);
return;
}
if (requestMask==PermissionMask.Create) {
permissions.where('privilege').equal(mapping.childModel).
and('parentPrivilege').equal(mapping.parentModel).
and('target').equal(e.target[mapping.childField]).
and('workspace').equal(workspace).
and('account').in(accounts.map(function(x) { return x.id; })).
and('mask').bit(requestMask).silent().count(function(err, count) {
if (err) {
cb(err);
}
else {
if (count>=1) {
cancel=true;
e.result = true;
}
cb(null);
}
});
}
else {
//get original value
model.where(model.primaryKey).equal(e.target[model.primaryKey]).select(mapping.childField).first(function(err, result) {
if (err) {
cb(err);
}
else if (result) {
permissions.where('privilege').equal(mapping.childModel).
and('parentPrivilege').equal(mapping.parentModel).
and('target').equal(result[mapping.childField]).
and('workspace').equal(workspace).
and('account').in(accounts.map(function(x) { return x.id; })).
and('mask').bit(requestMask).silent().count(function(err, count) {
if (err) {
cb(err);
}
else {
if (count>=1) {
cancel=true;
e.result = true;
}
cb(null);
}
});
}
else {
cb(null);
}
});
}
}
else if (item.type=='item') {
//if target object is a new object
if (requestMask==PermissionMask.Create) {
//do nothing
cb(null); return;
}
permissions.where('privilege').equal(model.name).
and('parentPrivilege').equal(null).
and('target').equal(e.target[model.primaryKey]).
and('workspace').equal(workspace).
and('account').in(accounts.map(function(x) { return x.id; })).
and('mask').bit(requestMask).silent().count(function(err, count) {
if (err) {
cb(err);
}
else {
if (count>=1) {
cancel=true;
e.result = true;
}
cb(null);
}
});
}
else if (item.type=='self') {
if (requestMask==PermissionMask.Create) {
var query = qry.query(model.viewAdapter);
var fields=[], field;
//cast target
var name, obj = e.target;
model.attributes.forEach(function(x) {
name = obj.hasOwnProperty(x.property) ? x.property : x.name;
if (obj.hasOwnProperty(name))
{
var mapping = model.inferMapping(name);
if (_.isNil(mapping)) {
field = {};
field[x.name] = { $value: obj[name] };
fields.push(field);
}
else if ((mapping.associationType==='association') && (mapping.childModel===model.name)) {
if (typeof obj[name] === 'object') {
//set associated key value (e.g. primary key value)
field = {};
field[x.name] = { $value: obj[name][mapping.parentField] };
fields.push(field);
}
else {
//set raw value
field = {};
field[x.name] = { $value: obj[name] };
fields.push(field);
}
}
}
});
//add fields
query.select(fields);
//set fixed query
query.$fixed = true;
model.filter(item.filter, function(err, q) {
if (err) {
cb(err);
}
else {
//set where from DataQueryable.query
query.$where = q.query.$prepared;
model.context.db.execute(query,null, function(err, result) {
if (err) {
cb(err);
}
else {
if (result.length==1) {
cancel=true;
e.result = true;
}
cb(null);
}
});
}
});
}
else {
//get privilege filter
model.filter(item.filter, function(err, q) {
if (err) {
cb(err);
}
else {
//prepare query and append primary key expression
q.where(model.primaryKey).equal(e.target[model.primaryKey]).silent().count(function(err, count) {
if (err) { cb(err); return; }
if (count>=1) {
cancel=true;
e.result = true;
}
cb(null);
})
}
});
}
}
else {
//do nothing (unknown permission)
cb(null);
}
}, function(err) {
if (err) {
callback(err);
}
else {
if (e.throwError && !e.result) {
var error = new types.AccessDeniedException();
error.model = model.name;
callback(error);
}
else {
callback(null);
}
}
});
}
});
};
/**
* @private
* @type {string}
*/
var ANONYMOUS_USER_CACHE_PATH = '/User/anonymous';
/**
* @param {DataContext} context
* @param {function(Error=,*=)} callback
* @private
*/
function anonymousUser(context, callback) {
queryUser(context, 'anonymous', function(err, result) {
if (err) {
callback(err);
}
else {
callback(null, result || { id:null, name:'anonymous', groups:[], enabled:false});
}
});
};
/**
*
* @param {DataContext} context
* @param {string} username
* @param {function(Error=,*=)} callback
* @private
*/
function queryUser(context, username, callback) {
try {
if (_.isNil(context)) {
return callback();
}
var users = context.model('User');
if (_.isNil(users)) {
return callback();
}
users.where('name').equal(username).silent().select('id','name').expand("groups").getTypedItem().then(function(result) {
return callback(null, result);
}).catch(function(err) {
return callback(err);
});
}
catch (err) {
callback(err);
}
}
/**
* @param {DataContext} context
* @param {function(Error=,Array=)} callback
* @private
*/
function effectiveAccounts(context, callback) {
if (_.isNil(context)) {
//push no account
return callback(null, [ { id: null } ]);
}
/**
* Gets or sets an object that represents the user of the current data context.
* @property {*|{name: string, authenticationType: string}}
* @name DataContext#user
* @memberof DataContext
*/
context.user = context.user || { name:'anonymous',authenticationType:'None' };
context.user.name = context.user.name || 'anonymous';
//if the current user is anonymous
if (context.user.name === 'anonymous') {
//get anonymous user data
dataCache.current.ensure(ANONYMOUS_USER_CACHE_PATH, function(cb) {
anonymousUser(context, function(err, result) {
cb(err, result);
});
}, function(err, result) {
if (err) {
callback(err);
}
else {
var arr = [];
if (result) {
arr.push({ "id": result.id, "name": result.name });
result.groups = result.groups || [];
result.groups.forEach(function(x) { arr.push({ "id": x.id, "name": x.name }); });
}
if (arr.length===0)
arr.push({ id: null });
callback(null, arr);
}
});
}
else {
//try to get data from cache
var USER_CACHE_PATH = '/User/' + context.user.name;
dataCache.current.ensure(USER_CACHE_PATH, function(cb) {
queryUser(context, context.user.name, cb);
}, function(err, user) {
if (err) { callback(err); return; }
dataCache.current.ensure(ANONYMOUS_USER_CACHE_PATH, function(cb) {
anonymousUser(context, cb);
}, function(err, anonymous) {
if (err) { callback(err); return; }
var arr = [ ];
if (user) {
arr.push({ "id": user.id, "name": user.name });
if (_.isArray(user.groups))
user.groups.forEach(function(x) { arr.push({ "id": x.id, "name": x.name }); });
}
if (anonymous) {
arr.push({ "id": anonymous.id, "name": "anonymous" });
if (_.isArray(anonymous.groups))
anonymous.groups.forEach(function(x) { arr.push({ "id": x.id, "name": x.name }); });
}
if (arr.length==0)
arr.push({ id: null });
callback(null, arr);
});
});
}
}
/**
* Occurs before executing a data operation.
* @param {DataEventArgs} e - An object that represents the event arguments passed to this operation.
* @param {Function} callback - A callback function that should be called at the end of this operation. The first argument may be an error if any occured.
*/
DataPermissionEventListener.prototype.beforeExecute = function(e, callback)
{
if (_.isNil(e.model)) {
return callback();
}
//ensure silent query operation
if (e.emitter && e.emitter.$silent) {
callback();
return;
}
var model= e.model, context = e.model.context, requestMask = 1, workspace = 1, privilege = model.name, parentPrivilege=null;
//get privilege from event arguments if it's defined (e.g. the operation requests execute permission User.ChangePassword where
// privilege=ChangePassword and parentPrivilege=User)
if (e.privilege) {
//event argument is the privilege
privilege = e.privilege;
//and model is the parent privilege
parentPrivilege = model.name;
}
//do not check permissions if the target model has no privileges defined
if (model.privileges.filter(function(x) { return !x.disabled; }, model.privileges).length==0) {
callback(null);
return;
}
//infer permission mask
if (typeof e.mask !== 'undefined') {
requestMask = e.mask;
}
else {
if (e.query) {
//infer mask from query type
if (e.query.$select)
//read permissions
requestMask=1;
else if (e.query.$insert)
//create permissions
requestMask=2;
else if (e.query.$update)
//update permissions
requestMask=4;
else if (e.query.$delete)
//delete permissions
requestMask=8;
}
}
//ensure context user
context.user = context.user || { name:'anonymous',authenticationType:'None' };
//change: 2-May 2015
//description: Use unattended execution account as an escape permission check account
var authSettings = context.getConfiguration().getAuthSettings();
if (authSettings)
{
var unattendedExecutionAccount=authSettings.unattendedExecutionAccount;
if ((typeof unattendedExecutionAccount !== 'undefined'
|| unattendedExecutionAccount !== null)
&& (unattendedExecutionAccount===context.user.name))
{
callback();
return;
}
}
if (e.query) {
//get user key
var users = context.model('User'), permissions = context.model('Permission');
if (_.isNil(users)) {
//do nothing
callback(null);
return;
}
if (_.isNil(permissions)) {
//do nothing
callback(null);
return;
}
//get model privileges
var modelPrivileges = model.privileges || [];
//if model has no privileges defined
if (modelPrivileges.length===0) {
//do nothing
callback(null);
//and exit
return;
}
//tuning up operation
//validate request mask permissions against all users privilege { mask:<requestMask>,disabled:false,account:"*" }
var allUsersPrivilege = modelPrivileges.find(function(x) {
return (((x.mask & requestMask)===requestMask) && !x.disabled && (x.account==='*'));
});
if (typeof allUsersPrivilege !== 'undefined') {
//do nothing
callback(null);
//and exit
return;
}
effectiveAccounts(context, function(err, accounts) {
if (err) { callback(err); return; }
//get all enabled privileges
var privileges = modelPrivileges.filter(function(x) {
return !x.disabled && ((x.mask & requestMask) === requestMask);
});
var cancel = false, assigned = false, entity = qry.entity(model.viewAdapter), expand = null,
perms1 = qry.entity(permissions.viewAdapter).as('p0'), expr = null;
async.eachSeries(privileges, function(item, cb) {
if (cancel) {
return cb();
}
try {
if (item.type==='global') {
//check if a privilege is assigned by the model
if (item.account==='*') {
//get permission and exit
assigned=true;
return cb(new EachSeriesCancelled());
}
else if (item.hasOwnProperty("account")) {
if (accounts.findIndex(function(x) { return x.name === item.account })>=0) {
assigned=true;
return cb(new EachSeriesCancelled());
}
}
//try to find user has global permissions assigned
permissions.where('privilege').equal(model.name).
and('parentPrivilege').equal(null).
and('target').equal('0').
and('workspace').equal(1).
and('account').in(accounts.map(function(x) { return x.id; })).
and('mask').bit(requestMask).silent().count(function(err, count) {
if (err) {
cb(err);
}
else {
if (count>=1) {
assigned=true;
return cb(new EachSeriesCancelled());
}
cb();
}
});
}
else if (item.type=='parent') {
//get field mapping
var mapping = model.inferMapping(item.property);
if (!mapping) {
return cb();
}
if (expr==null)
expr = qry.query();
expr.where(entity.select(mapping.childField)).equal(perms1.select('target')).
and(perms1.select('privilege')).equal(mapping.childModel).
and(perms1.select('parentPrivilege')).equal(mapping.parentModel).
and(perms1.select('workspace')).equal(workspace).
and(perms1.select('mask')).bit(requestMask).
and(perms1.select('account')).in(accounts.map(function(x) { return x.id; })).prepare(true);
assigned=true;
cb();
}
else if (item.type=='item') {
if (expr==null)
expr = qry.query();
expr.where(entity.select(model.primaryKey)).equal(perms1.select('target')).
and(perms1.select('privilege')).equal(model.name).
and(perms1.select('parentPrivilege')).equal(null).
and(perms1.select('workspace')).equal(workspace).
and(perms1.select('mask')).bit(requestMask).
and(perms1.select('account')).in(accounts.map(function(x) { return x.id; })).prepare(true);
assigned=true;
cb();
}
else if (item.type=='self') {
if (typeof item.filter === 'string' ) {
model.filter(item.filter, function(err, q) {
if (err) {
cb(err);
}
else {
if (q.query.$prepared) {
if (expr==null)
expr = qry.query();
expr.$where = q.query.$prepared;
if (q.query.$expand) { expand = q.query.$expand; }
expr.prepare(true);
assigned=true;
cb();
}
else
cb();
}
});
}
else {
cb();
}
}
else {
cb();
}
}
catch (e) {
cb(e);
}
}, function(err) {
if (err) {
cancel = (err instanceof EachSeriesCancelled);
if (!cancel) {
return callback(err);
}
}
if (!assigned) {
//prepare no access query
e.query.prepare();
//add no record parameter
e.query.where(e.model.fieldOf(e.model.primaryKey)).equal(null).prepare();
return callback();
}
else if (expr) {
return context.model("Permission").migrate(function(err) {
if (err) { return callback(err); }
var q = qry.query(model.viewAdapter).select([model.primaryKey]).distinct();
if (expand) {
var arrExpand=[].concat(expand);
_.forEach(arrExpand, function(x){
q.join(x.$entity).with(x.$with);
});
}
q.join(perms1).with(expr);
var pqAlias = 'pq' + common.randomInt(100000,999999).toString();
e.query.join(q.as(pqAlias)).with(qry.where(entity.select(model.primaryKey)).equal(qry.entity(pqAlias).select(model.primaryKey)));
return callback();
});
}
return callback();
});
});
}
else {
callback();
}
};
var perms = {
DataPermissionEventArgs:DataPermissionEventArgs,
DataPermissionEventListener:DataPermissionEventListener,
PermissionMask:PermissionMask
};
if (typeof exports !== 'undefined') {
module.exports = perms;
}