-
Notifications
You must be signed in to change notification settings - Fork 0
/
DisqusPlugin.inc.php
196 lines (177 loc) · 5.03 KB
/
DisqusPlugin.inc.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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
<?php
/**
* @file plugins/generic/disqus/DisqusPlugin.inc.php
*
* Copyright (c) 2013 Simon Fraser University Library
* Copyright (c) 2003-2013 John Willinsky
* Distributed under the GNU GPL v2. For full terms see the file docs/COPYING.
*
* @class DisqusPlugin
* @ingroup plugins_generic_disqus
*
* @brief Disqus plugin class
*/
import('lib.pkp.classes.plugins.GenericPlugin');
class DisqusPlugin extends GenericPlugin {
/**
* Called as a plugin is registered to the registry
* @param $category String Name of category plugin was registered to
* @return boolean True iff plugin initialized successfully; if false,
* the plugin will not be registered.
*/
function register($category, $path) {
$success = parent::register($category, $path);
if (!Config::getVar('general', 'installed') || defined('RUNNING_UPGRADE')) return true;
if ($success && $this->getEnabled()) {
// Insert Disqus page tag to article footer
HookRegistry::register('Templates::Article::Footer::PageFooter', array($this, 'insertFooter'));
// Insert Disqus page tag to article interstitial footer
HookRegistry::register('Templates::Article::Interstitial::PageFooter', array($this, 'insertFooter'));
// Insert Disqus page tag to article pdf interstitial footer
HookRegistry::register('Templates::Article::PdfInterstitial::PageFooter', array($this, 'insertFooter'));
// Insert Disqus page tag to reading tools footer
//HookRegistry::register('Templates::Rt::Footer::PageFooter', array($this, 'insertFooter'));
}
return $success;
}
/**
* Get the name of this plugin. The name must be unique within
* its category, and should be suitable for part of a filename
* (ie short, no spaces, and no dependencies on cases being unique).
* @return String name of plugin
*/
function getName() {
return 'DisqusPlugin';
}
function getDisplayName() {
return __('plugins.generic.disqus.displayName');
}
function getDescription() {
return __('plugins.generic.disqus.description');
}
/**
* Display verbs for the management interface.
*/
function getManagementVerbs() {
$verbs = array();
if ($this->getEnabled()) {
$verbs[] = array(
'disable',
__('manager.plugins.disable')
);
$verbs[] = array(
'settings',
__('plugins.generic.disqus.manager.settings')
);
} else {
$verbs[] = array(
'enable',
__('manager.plugins.enable')
);
}
return $verbs;
}
/**
* Determine whether or not this plugin is enabled.
*/
function getEnabled() {
$journal =& Request::getJournal();
if (!$journal) return false;
return $this->getSetting($journal->getId(), 'enabled');
}
/**
* Set the enabled/disabled state of this plugin
*/
function setEnabled($enabled) {
$journal =& Request::getJournal();
if ($journal) {
$this->updateSetting($journal->getJournalId(), 'enabled', $enabled ? true : false);
return true;
}
return false;
}
/**
* Insert Disqus page tag to footer
*/
function insertFooter($hookName, $params) {
if ($this->getEnabled()) {
$journal =& Request::getJournal();
$journalId = $journal->getJournalId();
$disqusShortname = $this->getSetting($journalId, 'disqusShortname');
if (!empty($disqusShortname)) {
$templateMgr =& TemplateManager::getManager();
$templateMgr->assign('disqusShortname', $disqusShortname);
$templateMgr->display($this->getTemplatePath() . 'disqus.tpl');
}
}
return false;
}
/**
* Set the page's breadcrumbs, given the plugin's tree of items
* to append.
* @param $subclass boolean
*/
function setBreadcrumbs($isSubclass = false) {
$templateMgr =& TemplateManager::getManager();
$pageCrumbs = array(
array(
Request::url(null, 'user'),
'navigation.user'
),
array(
Request::url(null, 'manager'),
'user.role.manager'
)
);
if ($isSubclass) $pageCrumbs[] = array(
Request::url(null, 'manager', 'plugins'),
'manager.plugins'
);
$templateMgr->assign('pageHierarchy', $pageCrumbs);
}
/**
* Perform management functions
*/
function manage($verb, $args) {
$templateMgr =& TemplateManager::getManager();
$templateMgr->register_function('plugin_url', array(&$this, 'smartyPluginUrl'));
$journal =& Request::getJournal();
$returner = true;
switch ($verb) {
case 'enable':
$this->setEnabled(true);
$returner = false;
break;
case 'disable':
$this->setEnabled(false);
$returner = false;
break;
case 'settings':
if ($this->getEnabled()) {
$this->import('DisqusSettingsForm');
$form = new DisqusSettingsForm($this, $journal->getJournalId());
if (Request::getUserVar('save')) {
$form->readInputData();
if ($form->validate()) {
$form->execute();
Request::redirect(null, 'manager', 'plugin');
} else {
$this->setBreadCrumbs(true);
$form->display();
}
} else {
$this->setBreadCrumbs(true);
$form->initData();
$form->display();
}
} else {
Request::redirect(null, 'manager');
}
break;
default:
Request::redirect(null, 'manager');
}
return $returner;
}
}
?>