Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F995626
themselves.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
662 B
Referenced Files
None
Subscribers
None
themselves.ts
View Options
import
{
CollectionItem
,
Context
,
Policy
,
Query
}
from
"../../main"
;
export
default
class
Themselves
extends
Policy
{
static
type_name
=
"themselves"
;
isItemSensitive
=
async
(
_
:
Context
)
=>
true
;
async
_getRestrictingQuery
(
context
:
Context
)
{
return
Query
.
fromSingleMatch
({
id
:
{
$eq
:
context
.
user_id
},
});
}
async
checkerFunction
(
context
:
Context
,
item_getter
:
()
=>
Promise
<
CollectionItem
>
)
{
const
user_id
=
(
await
item_getter
()).
id
;
if
(
context
.
user_id
!==
user_id
)
{
return
Policy
.
deny
(
context
.
app
.
i18n
(
"policy_themselves_deny"
,
[
user_id
])
);
}
return
Policy
.
allow
(
context
.
app
.
i18n
(
"policy_themselves_allow"
));
}
}
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Mon, Dec 23, 10:22 (1 d, 16 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
556433
Default Alt Text
themselves.ts (662 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment