Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
a2009432
Commit
a2009432
authored
Jun 18, 2018
by
kaniini
Browse files
object: add helper functions to handle various forms of a given object and return a normalized one
parent
d386e8a8
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/pleroma/object.ex
View file @
a2009432
...
...
@@ -27,6 +27,10 @@ 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
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment