Skip to content

Commit 7f87e3b

Browse files
authored
Merge pull request #3078 from metacpan/haarg/opengraph
provide opengraph metadata in addition to twitter card data
2 parents 5ef6423 + 3793308 commit 7f87e3b

File tree

14 files changed

+47
-25
lines changed

14 files changed

+47
-25
lines changed

lib/MetaCPAN/Web/View/Xslate.pm

+8
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ has '+expose_methods' => (
5454
default =>
5555
sub
5656
{ [ qw(
57+
abs_url
5758
page_url
5859
) ] },
5960
);
@@ -65,6 +66,13 @@ sub page_url {
6566
$uri->as_string;
6667
}
6768

69+
sub abs_url {
70+
my ( $self, $c, $url, $base ) = @_;
71+
$base ||= $c->request->uri;
72+
my $uri = URI->new_abs( $url, $base );
73+
$uri->as_string;
74+
}
75+
6876
around render => sub {
6977
my ( $orig, $self, $c, $template, $args ) = @_;
7078

root/author.tx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
%% rss => $rss || '/author/' ~ $author.pauseid ~ '/activity.rss',
55
%% rss_title => $rss_title || 'Recent CPAN Activity of ' ~ $author.pauseid ~ ' - MetaCPAN',
66
%% }
7-
%% override meta_card -> { include inc::twitter::author }
7+
%% override opengraph -> { include inc::opengraph::author }
88
%% override left_nav_content -> {
99
<li>
1010
[% include inc::author_pic %]

root/base.tx

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
gtag('js', new Date());
3030
gtag('config', 'G-E82Q2V8LVD');
3131
</script>
32-
%% block meta_card -> {}
32+
%% block opengraph -> { }
3333
</head>
3434
<body>
3535
<nav class="navbar navbar-default" role="navigation">

root/base/release.tx

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
%% canonical => $canonical || '/dist/' ~ $release.distribution,
66
%% meta_description => $meta_description || $release.abstract,
77
%% }
8-
%% override meta_card -> { include inc::twitter::release }
8+
%% override opengraph -> { include inc::opengraph::release }
99
%% override breadcrumbs -> {
1010
<div class="breadcrumbs">
1111
<span>

root/home.tx

+3
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
%% override search_bar -> { }
77
%% override header_nav_menu -> { }
88
%% after content_classes -> { ' home' }
9+
%% override opengraph -> {
10+
%% include inc::opengraph;
11+
%% }
912
%% override content -> {
1013
<script type="application/ld+json">
1114
[

root/inc/opengraph.tx

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
%% block opengraph -> {
2+
<meta property="og:site_name" content="MetaCPAN" />
3+
<meta name="twitter:site" content="@metacpan" />
4+
<meta property="og:type" content="article" />
5+
<meta name="twitter:card" content="summary" />
6+
<meta property="og:url" content="[% $abs_url( $canonical || $page_url(), "https://metacpan.org/" ) %]" />
7+
<meta property="og:title" content="[% $opengraph_title || $release.name %]" />
8+
%% if $opengraph_description {
9+
<meta property="og:description" content="[% $opengraph_description %]" />
10+
%% }
11+
<meta property="og:image" content="[% $abs_url( $opengraph_image || "/static/images/dots.png", "https://metacpan.org/") %]" />
12+
%% }

root/inc/opengraph/author.tx

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
%% cascade inc::opengraph {
2+
%% opengraph_title => $author.display_name,
3+
%% opengraph_description => "CPAN Author - " ~ $author.display_name,
4+
%% opengraph_image => gravatar_image($author, 400),
5+
%% }
6+
%% after opengraph -> {
7+
%% for $author.profile -> $profile {
8+
%% if $profile.name == "twitter" {
9+
<meta name="twitter:creator" content="@[% $profile.id %]" />
10+
%% }
11+
%% }
12+
%% }

root/inc/opengraph/module.tx

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
%% cascade inc::opengraph {
2+
%% opengraph_title => $file.documentation,
3+
%% opengraph_description => $file.abstract,
4+
%% }

root/inc/opengraph/release.tx

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
%% cascade inc::opengraph {
2+
%% opengraph_title => $release.name,
3+
%% opengraph_description => $release.abstract,
4+
%% }

root/inc/twitter/author.tx

-11
This file was deleted.

root/inc/twitter/module.tx

-5
This file was deleted.

root/inc/twitter/release.tx

-5
This file was deleted.

root/pod.tx

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
%% ($file.documentation || $file.module.0.name ) ~
55
%% ($file.abstract ? ' - ' ~ $file.abstract : ''),
66
%% }
7-
%% override meta_card -> { include inc::twitter::module }
7+
%% override opengraph -> { include inc::opengraph::module }
88
%% override left_nav_lead -> {
99
%% my $release_base = $permalinks || $release.status != 'latest'
1010
%% ? '/release/' ~ $release.author ~ '/' ~ $release.name

root/static/images/dots.png

1.39 KB
Loading

0 commit comments

Comments
 (0)