-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathOpenGraphPlugin.php
181 lines (161 loc) · 7.57 KB
/
OpenGraphPlugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?php
/**
* @file OpenGraphPlugin.php
*
* Copyright (c) 2014-2024 Simon Fraser University
* Copyright (c) 2003-2024 John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file LICENSE.
*
* @class OpenGraphPlugin
* @ingroup plugins_generic_openGraph
*
* @brief Inject Open Graph meta tags into submission views in OJS, OMP and OPS and issue view in OJS.
*/
namespace APP\plugins\generic\openGraph;
use APP\core\Application;
use APP\template\TemplateManager;
use PKP\core\PKPString;
use PKP\db\DAORegistry;
use PKP\facades\Locale;
use PKP\plugins\GenericPlugin;
use PKP\plugins\Hook;
class OpenGraphPlugin extends GenericPlugin {
/**
* @copydoc Plugin::register()
*/
function register($category, $path, $mainContextId = null) {
if (parent::register($category, $path, $mainContextId)) {
if ($this->getEnabled($mainContextId)) {
Hook::add('ArticleHandler::view', $this->submissionView(...));
Hook::add('PreprintHandler::view', $this->submissionView(...));
Hook::add('CatalogBookHandler::book', $this->submissionView(...));
Hook::add('TemplateManager::display', $this->issueView(...));
}
return true;
}
return false;
}
/**
* Get the name of the settings file to be installed on new context
* creation.
* @return string
*/
function getContextSpecificPluginSettingsFile() {
return $this->getPluginPath() . '/settings.xml';
}
/**
* Inject Open Graph metadata into issue landing page view
* @param $hookName string
* @param $args array
* @return boolean
*/
function issueView($hookName, $args) {
$template = $args[1];
if ($template == 'frontend/pages/issue.tpl') {
$templateMgr = $args[0];
$request = $this->getRequest();
$context = $request->getContext();
$issue = $templateMgr->getTemplateVars('issue');
if ($issue){
$templateMgr = TemplateManager::getManager($request);
$templateMgr->addHeader('openGraphSiteName', '<meta property="og:site_name" content="' . htmlspecialchars($context->getName($context->getPrimaryLocale())) . '"/>');
$templateMgr->addHeader('openGraphObjectType', '<meta property="og:type" content="website"/>');
$templateMgr->addHeader('openGraphTitle', '<meta property="og:title" content="' . htmlspecialchars($context->getName($context->getPrimaryLocale())) . " " . htmlspecialchars($issue->getIssueIdentification()) . '"/>');
$templateMgr->addHeader('openGraphUrl', '<meta property="og:url" content="' . $request->url(null, 'issue', 'view', array($issue->getBestIssueId())) . '"/>');
$templateMgr->addHeader('openGraphLocale', '<meta property="og:locale" content="' . htmlspecialchars($context->getPrimaryLocale()) . '"/>');
if ($issue && $issueCoverImage = $issue->getLocalizedCoverImageUrl()){
$templateMgr->addHeader('openGraphImage', '<meta name="image" property="og:image" content="' . htmlspecialchars($issueCoverImage) . '"/>');
$templateMgr->addHeader('twitterCard', '<meta name="twitter:card" content="summary_large_image" />');
$templateMgr->addHeader('twitterSiteName', '<meta name="twitter:site" content="' . htmlspecialchars($context->getName($context->getPrimaryLocale())) . '"/>');
$templateMgr->addHeader('twitterTitle', '<meta name="twitter:title" content="' . htmlspecialchars($context->getName($context->getPrimaryLocale())) . " " . htmlspecialchars($issue->getIssueIdentification()) . '"/>');
$templateMgr->addHeader('twitterImage', '<meta name="twitter:image" content="' . htmlspecialchars($issueCoverImage) . '"/>');
}
}
}
return false;
}
/**
* Inject Open Graph metadata into submission landing page view
* @param $hookName string
* @param $args array
* @return boolean
*/
function submissionView($hookName, $args) {
$application = Application::get();
$applicationName = $application->getName();
$request = $args[0];
$context = $request->getContext();
if ($applicationName == "ops"){
$submission = $args[1];
$submissionPath = array('preprint', 'view');
$objectType = "article";
}
elseif ($applicationName == "omp"){
$submission = $args[1];
$submissionPath = array('catalog', 'book');
$objectType = "book";
}
else {
$issue = $args[1];
$submission = $args[2];
$submissionPath = array('article', 'view');
$objectType = "article";
}
$templateMgr = TemplateManager::getManager($request);
$templateMgr->addHeader('openGraphSiteName', '<meta property="og:site_name" content="' . htmlspecialchars($context->getName($context->getPrimaryLocale())) . '"/>');
$templateMgr->addHeader('openGraphObjectType', '<meta property="og:type" content="' . htmlspecialchars($objectType) . '"/>');
$templateMgr->addHeader('openGraphTitle', '<meta property="og:title" content="' . htmlspecialchars($submission->getFullTitle($submission->getLocale())) . '"/>');
if ($abstract = PKPString::html2text($submission->getAbstract($submission->getLocale()))) $templateMgr->addHeader('openGraphDescription', '<meta name="description" property="og:description" content="' . htmlspecialchars($abstract) . '"/>');
$templateMgr->addHeader('openGraphUrl', '<meta property="og:url" content="' . $request->url(null, $submissionPath[0], $submissionPath[1], array($submission->getBestId())) . '"/>');
if ($locale = $submission->getLocale()) $templateMgr->addHeader('openGraphLocale', '<meta name="og:locale" content="' . htmlspecialchars($locale) . '"/>');
$openGraphImage = "";
if ($contextPageHeaderLogo = $context->getLocalizedData('pageHeaderLogoImage')){
$openGraphImage = $templateMgr->getTemplateVars('publicFilesDir') . "/" . $contextPageHeaderLogo['uploadName'];
}
if (isset($issue) && $issueCoverImage = $issue->getLocalizedCoverImageUrl()){
$openGraphImage = $issueCoverImage;
}
if ($submissionCoverImage = $submission->getCurrentPublication()->getLocalizedCoverImageUrl($submission->getData('contextId'))){
$openGraphImage = $submissionCoverImage;
}
$templateMgr->addHeader('openGraphImage', '<meta name="image" property="og:image" content="' . htmlspecialchars($openGraphImage) . '"/>');
if ($datePublished = $submission->getDatePublished()) {
$openGraphDateName = $applicationName == "omp" ? "book:release_date" : "article:published_time";
$templateMgr->addHeader('openGraphDate', '<meta name="' . $openGraphDateName . '" content="' . strftime('%Y-%m-%d', strtotime($datePublished)) . '"/>');
}
if ($applicationName == "omp") {
$publicationFormats = $submission->getCurrentPublication()->getData('publicationFormats');
foreach ($publicationFormats as $publicationFormat) {
$identificationCodes = $publicationFormat->getIdentificationCodes();
while ($identificationCode = $identificationCodes->next()) {
if ($identificationCode->getCode() == "02" || $identificationCode->getCode() == "15") {
$templateMgr->addHeader('openGraphBookIsbn', '<meta name="book:isbn" content="' . htmlspecialchars($identificationCode->getValue()) . '"/>');
}
}
}
}
$i=0;
$dao = DAORegistry::getDAO('SubmissionKeywordDAO');
$keywords = $dao->getKeywords($submission->getCurrentPublication()->getId(), array(Locale::getLocale()));
foreach ($keywords as $locale => $localeKeywords) {
foreach ($localeKeywords as $keyword) {
$templateMgr->addHeader('openGraphArticleTag' . $i++, '<meta name="' . $objectType . ':tag" content="' . htmlspecialchars($keyword) . '"/>');
}
}
return false;
}
/**
* Get the display name of this plugin
* @return string
*/
function getDisplayName() {
return __('plugins.generic.openGraph.name');
}
/**
* Get the description of this plugin
* @return string
*/
function getDescription() {
return __('plugins.generic.openGraph.description');
}
}