Page Menu
Home
Sealhub
Search
Configure Global Search
Log In
Files
F6241356
owner.ts
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
900 B
Referenced Files
None
Subscribers
None
owner.ts
View Options
import
{
Policy
,
Context
,
Query
,
CollectionItem
}
from
"../../main"
;
import
DenyAll
from
"../../datastore/deny-all"
;
export
default
class
Owner
extends
Policy
{
static
type_name
=
"owner"
;
async
_getRestrictingQuery
(
context
:
Context
)
{
if
(
context
.
user_id
)
{
return
Query
.
fromSingleMatch
({
"_metadata.created_context.user_id"
:
{
$eq
:
context
.
user_id
},
});
}
return
new
DenyAll
();
}
async
checkerFunction
(
context
:
Context
,
item_getter
:
()
=>
Promise
<
CollectionItem
>
)
{
const
response
=
await
item_getter
();
if
(
context
.
user_id
&&
context
.
user_id
===
((
response
as
unknown
)
as
{
_metadata
:
{
created_context
:
{
user_id
:
string
}
};
}).
_metadata
.
created_context
.
user_id
)
{
return
Policy
.
allow
(
"you are who created this item"
);
}
else
{
return
Policy
.
deny
(
"you are not who created this item"
);
}
}
isItemSensitive
=
async
()
=>
true
;
}
File Metadata
Details
Attached
Mime Type
text/x-java
Expires
Tue, Jun 17, 03:30 (1 d, 9 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
742416
Default Alt Text
owner.ts (900 B)
Attached To
Mode
rS Sealious
Attached
Detach File
Event Timeline
Log In to Comment