Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
pleroma
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
jeff
pleroma
Commits
fd3a5582
Commit
fd3a5582
authored
6 years ago
by
rinpatch
Browse files
Options
Downloads
Patches
Plain Diff
Apply feld's patch
parent
5fa508cc
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
lib/pleroma/web/metadata/opengraph.ex
+56
-17
56 additions, 17 deletions
lib/pleroma/web/metadata/opengraph.ex
with
56 additions
and
17 deletions
lib/pleroma/web/metadata/opengraph.ex
+
56
−
17
View file @
fd3a5582
...
...
@@ -3,7 +3,7 @@
# SPDX-License-Identifier: AGPL-3.0-only
defmodule
Pleroma
.
Web
.
Metadata
.
Providers
.
OpenGraph
do
alias
Pleroma
.
Web
.
Metadata
.
Providers
.
Provider
alias
Pleroma
.
{
HTML
,
Formatter
,
User
}
alias
Pleroma
.
{
HTML
,
Formatter
,
User
,
Web
}
alias
Pleroma
.
Web
.
MediaProxy
@behaviour
Provider
...
...
@@ -12,21 +12,39 @@ defmodule Pleroma.Web.Metadata.Providers.OpenGraph do
def
build_tags
(%{
activity:
activity
,
user:
user
})
do
attachments
=
build_attachments
(
activity
)
# Most previews only show og:title which is inconvenient. Instagram
# hacks this by putting the description in the title and making the
# description longer prefixed by how many likes and shares the post
# has. Here we use the descriptive nickname in the title, and expand
# the full account & nickname in the description. We also use the cute^Wevil
# smart quotes around the status text like Instagram, too.
[
{
:meta
,
[
property:
"og:title"
,
content:
user_name_string
(
user
)
content:
"
#{
user
.
name
}
: "
<>
"“"
<>
scrub_html_and_truncate
(
activity
)
<>
"”"
],
[]},
{
:meta
,
[
property:
"og:url"
,
content:
activity
.
data
[
"id"
]],
[]},
{
:meta
,
[
property:
"og:description"
,
content:
scrub_html_and_truncate
(
activity
)],
[]}
{
:meta
,
[
property:
"og:url"
,
content:
"
#{
Web
.
base_url
()
}
/notice/
#{
activity
.
id
}
"
],
[]},
{
:meta
,
[
property:
"og:description"
,
content:
"
#{
user_name_string
(
user
)
}
: "
<>
"“"
<>
scrub_html_and_truncate
(
activity
)
<>
"”"
],
[]},
{
:meta
,
[
property:
"og:type"
,
content:
"website"
],
[]}
]
++
if
attachments
==
[]
or
Enum
.
any?
(
activity
.
data
[
"object"
][
"tag"
],
fn
tag
->
tag
==
"nsfw"
end
)
do
if
attachments
==
[]
do
[
{
:meta
,
[
property:
"og:image"
,
content:
attachment_url
(
User
.
avatar_url
(
user
))],
[]},
{
:meta
,
[
property:
"og:image:width"
,
content:
1
2
0
],
[]},
{
:meta
,
[
property:
"og:image:height"
,
content:
1
2
0
],
[]}
{
:meta
,
[
property:
"og:image:width"
,
content:
1
5
0
],
[]},
{
:meta
,
[
property:
"og:image:height"
,
content:
1
5
0
],
[]}
]
else
attachments
...
...
@@ -44,9 +62,10 @@ defmodule Pleroma.Web.Metadata.Providers.OpenGraph do
],
[]},
{
:meta
,
[
property:
"og:url"
,
content:
User
.
profile_url
(
user
)],
[]},
{
:meta
,
[
property:
"og:description"
,
content:
truncated_bio
],
[]},
{
:meta
,
[
property:
"og:type"
,
content:
"website"
],
[]},
{
:meta
,
[
property:
"og:image"
,
content:
attachment_url
(
User
.
avatar_url
(
user
))],
[]},
{
:meta
,
[
property:
"og:image:width"
,
content:
1
2
0
],
[]},
{
:meta
,
[
property:
"og:image:height"
,
content:
1
2
0
],
[]}
{
:meta
,
[
property:
"og:image:width"
,
content:
1
5
0
],
[]},
{
:meta
,
[
property:
"og:image:height"
,
content:
1
5
0
],
[]}
]
end
end
...
...
@@ -60,13 +79,33 @@ defmodule Pleroma.Web.Metadata.Providers.OpenGraph do
String
.
starts_with?
(
url
[
"mediaType"
],
media_type
)
end
)
if
media_type
do
[
{
:meta
,
[
property:
"og:"
<>
media_type
,
content:
attachment_url
(
url
[
"href"
])],
[]}
|
acc
]
else
acc
# TODO: Add additional properties to objects when we have the data available.
# Also, Whatsapp only wants JPEG or PNGs. It seems that if we add a second og:image
# object when a Video or GIF is attached it will display that in the Whatsapp Rich Preview.
case
media_type
do
"audio"
->
[
{
:meta
,
[
property:
"og:"
<>
media_type
,
content:
attachment_url
(
url
[
"href"
])],
[]}
|
acc
]
"image"
->
[
{
:meta
,
[
property:
"og:"
<>
media_type
,
content:
attachment_url
(
url
[
"href"
])],
[]},
{
:meta
,
[
property:
"og:image:width"
,
content:
150
],
[]},
{
:meta
,
[
property:
"og:image:height"
,
content:
150
],
[]}
|
acc
]
"video"
->
[
{
:meta
,
[
property:
"og:"
<>
media_type
,
content:
attachment_url
(
url
[
"href"
])],
[]}
|
acc
]
_
->
acc
end
end
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment