Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F996410
when.js
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
when.js
View Options
"use strict"
;
const
Promise
=
require
(
"bluebird"
);
const
Query
=
require
(
"../../../datastore/query.js"
);
async
function
construct_query
(
app
,
context
,
collection_name
,
special_filter_name
,
when_true_name
,
when_false_name
=
"noone"
)
{
const
collection
=
app
.
ChipManager
.
get_chip
(
"collection"
,
collection_name
);
const
special_filter
=
collection
.
get_named_filter
(
special_filter_name
);
const
when_true
=
new
app
.
Sealious
.
AccessStrategy
(
app
,
when_true_name
);
const
when_false
=
new
app
.
Sealious
.
AccessStrategy
(
app
,
when_false_name
);
const
filtering_query
=
await
special_filter
.
getFilteringQuery
(
collection
);
return
new
Query
.
Or
(
new
Query
.
And
(
filtering_query
,
await
when_true
.
getRestrictingQuery
(
context
)
),
new
Query
.
And
(
new
Query
.
Not
(
filtering_query
),
await
when_false
.
getRestrictingQuery
(
context
)
)
);
}
module
.
exports
=
app
=>
({
name
:
"when"
,
getRestrictingQuery
:
async
function
(
context
,
[
collection_name
,
special_filter_name
,
when_true_name
,
when_false_name
=
"noone"
,
]
)
{
return
construct_query
(
app
,
context
,
collection_name
,
special_filter_name
,
when_true_name
,
when_false_name
);
},
checker_function
:
async
function
(
context
,
[
collection_name
,
special_filter_name
,
when_true_name
,
when_false_name
=
"noone"
,
],
sealious_response
)
{
const
query
=
await
construct_query
(
app
,
context
,
collection_name
,
special_filter_name
,
when_true_name
,
when_false_name
);
query
.
match
({
sealious_id
:
sealious_response
.
id
});
const
results
=
await
app
.
Datastore
.
aggregate
(
sealious_response
.
_metadata
.
collection_name
,
query
.
toPipeline
()
);
if
(
!
results
.
length
)
{
return
Promise
.
reject
(
"No access"
);
}
},
item_sensitive
:
true
,
});
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Dec 24, 14:02 (17 h, 48 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
557244
Default Alt Text
when.js (1 KB)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment