Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F7889757
object.ex
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
object.ex
View Options
defmodule
Pleroma.Object
do
use
Ecto.Schema
alias
Pleroma
.
{
Repo
,
Object
,
Activity
}
import
Ecto
.
{
Query
,
Changeset
}
schema
"objects"
do
field
(
:data
,
:map
)
timestamps
()
end
def
create
(
data
)
do
Object
.
change
(%
Object
{},
%{
data
:
data
})
|>
Repo
.
insert
()
end
def
change
(
struct
,
params
\\
%{})
do
struct
|>
cast
(
params
,
[
:data
])
|>
validate_required
([
:data
])
|>
unique_constraint
(
:ap_id
,
name
:
:objects_unique_apid_index
)
end
def
get_by_ap_id
(
nil
),
do
:
nil
def
get_by_ap_id
(
ap_id
)
do
Repo
.
one
(
from
(
object
in
Object
,
where
:
fragment
(
"(?)->>'id' = ?"
,
object
.
data
,
^
ap_id
)))
end
def
normalize
(
obj
)
when
is_map
(
obj
),
do
:
Object
.
get_by_ap_id
(
obj
[
"id"
])
def
normalize
(
ap_id
)
when
is_binary
(
ap_id
),
do
:
Object
.
get_by_ap_id
(
ap_id
)
def
normalize
(
_
),
do
:
nil
def
get_cached_by_ap_id
(
ap_id
)
do
if
Mix
.
env
()
==
:test
do
get_by_ap_id
(
ap_id
)
else
key
=
"object:
#{
ap_id
}
"
Cachex
.
fetch!
(
:object_cache
,
key
,
fn
_
->
object
=
get_by_ap_id
(
ap_id
)
if
object
do
{
:commit
,
object
}
else
{
:ignore
,
object
}
end
end
)
end
end
def
context_mapping
(
context
)
do
Object
.
change
(%
Object
{},
%{
data
:
%{
"id"
=>
context
}})
end
def
delete
(%
Object
{
data
:
%{
"id"
=>
id
}}
=
object
)
do
with
Repo
.
delete
(
object
),
Repo
.
delete_all
(
Activity
.
all_non_create_by_object_ap_id_q
(
id
)),
{
:ok
,
true
}
<-
Cachex
.
del
(
:object_cache
,
"object:
#{
id
}
"
)
do
{
:ok
,
object
}
end
end
end
File Metadata
Details
Attached
Mime Type
text/x-ruby
Expires
Thu, Oct 2, 2:42 AM (16 h, 10 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
480979
Default Alt Text
object.ex (1 KB)
Attached To
Mode
rPUBE pleroma-upstream
Attached
Detach File
Event Timeline
Log In to Comment