-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathNavigationBlockPlugin.php
More file actions
465 lines (409 loc) · 13.8 KB
/
NavigationBlockPlugin.php
File metadata and controls
465 lines (409 loc) · 13.8 KB
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
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
<?php
/**
* @file plugins/blocks/navigation/NavigationBlockPlugin.php
*
* Copyright (c) 2025- Simon Fraser University
* Copyright (c) 2025- John Willinsky
* Distributed under the GNU GPL v3. For full terms see the file LICENSE.
*
* Author: Martin Brändle, Swiss Chemical Society
*
* @class NavigationBlockPlugin
* @brief Class for navigation block plugin
*/
namespace APP\plugins\blocks\navigation;
use APP\facades\Repo;
use APP\issue\Collector;
use APP\issue\Issue;
use APP\template\TemplateManager;
use Illuminate\Support\Facades\Cache;
use PKP\context\Context;
use PKP\plugins\BlockPlugin;
use PKP\submission\PKPSubmission;
class NavigationBlockPlugin extends BlockPlugin
{
private const NAVIGATION_BLOCK_CACHE_DAYS = 1;
private const ONE_DAY_SECONDS = 60 * 60 * 24;
private const DAYS_SECONDS = self::ONE_DAY_SECONDS * self::NAVIGATION_BLOCK_CACHE_DAYS;
/**
* Register the plugin.
*
* @return string
*/
public function register($category, $path, $mainContextId = NULL)
{
// Register the plugin even when it is not enabled
$success = parent::register($category, $path);
if ($success && $this->getEnabled()) {
// Do something when the plugin is enabled
}
return $success;
}
/**
* Get the display name of this plugin.
*
* @return string
*/
public function getDisplayName()
{
return __('plugins.block.navigation.displayName');
}
/**
* Get a description of the plugin.
*/
public function getDescription()
{
return __('plugins.block.navigation.description');
}
/**
* Get the HTML contents of the navigation block.
*
* @param PKPTemplateManager $templateMgr
* @param null|mixed $request
*
* @return string
*/
public function getContents($templateMgr, $request = null)
{
$blockTemplateFilename = '';
$context = $request->getContext();
if (!$context) {
return '';
}
$router = $request->getRouter();
$contextUrl = $request->getRouter()->url($request, $context->getPath());
$pageop = $router->getRequestedPage($request) . '/' . $router->getRequestedOp($request);
if ($pageop != 'issue/view' && $pageop != 'article/view' && $pageop != 'index/index' && $pageop != '/index') {
return '';
}
$args = $router->getRequestedArgs($request);
if (is_null($args[0]))
{
$args[0] = '';
}
$issue_ids = $this->getCachedIssues($context);
$displayedIssue = $this->getDisplayedIssue($context, $pageop, $args[0]);
$displayedIssueSeq = $this->getSequence($issue_ids, $displayedIssue->getId());
$firstIssue = $this->getFirstIssue($context, $issue_ids);
$previousIssue = $this->getPreviousIssue($context, $issue_ids, $displayedIssueSeq);
$nextIssue = $this->getNextIssue($context, $issue_ids, $displayedIssueSeq);
$lastIssue = Repo::issue()->getCurrent($context->getId());
if ($lastIssue->getId() == $displayedIssue->getId()) {
$lastIssue = null;
}
if ($pageop == 'article/view') {
$submission_ids = $this->getCachedSubmissions($context, $displayedIssue);
if (!is_null($previousIssue)) {
$previousIssueSubmissionIds = $this->getCachedSubmissions($context, $previousIssue);
$previousIssueFirstArticle = $this->getFirstArticle($context, $previousIssueSubmissionIds, -1);
}
if (!is_null($nextIssue)) {
$nextIssueSubmissionIds = $this->getCachedSubmissions($context, $nextIssue);
$nextIssueFirstArticle = $this->getFirstArticle($context, $nextIssueSubmissionIds, -1);
}
$displayedSubmission = $this->getDisplayedSubmission($context, $pageop, $args[0]);
$displayedSubmissionSeq = $this->getSequence($submission_ids, $displayedSubmission->getId());
$firstArticle = $this->getFirstArticle($context, $submission_ids, $displayedSubmissionSeq);
$previousArticle = $this->getPreviousArticle($context, $submission_ids, $displayedSubmissionSeq);
$nextArticle = $this->getNextArticle($context, $submission_ids, $displayedSubmissionSeq);
$lastArticle = $this->getLastArticle($context, $submission_ids, $displayedSubmissionSeq);
$tocPath = $contextUrl . "/issue/view/" . $displayedIssue->getBestIssueId();
$blockTemplateFilename = 'block_articlenavig.tpl';
$templateMgr->assign([
'contextUrl' => $contextUrl,
'previousIssueArticle' => $previousIssueFirstArticle,
'nextIssueArticle' => $nextIssueFirstArticle,
'firstArticle' => $firstArticle,
'previousArticle' => $previousArticle,
'nextArticle' => $nextArticle,
'lastArticle' => $lastArticle,
'tocPath' => $tocPath,
]);
}
if ($pageop == 'issue/view' || $pageop == 'index/index' || $pageop == '/index') {
$blockTemplateFilename = 'block_issuenavig.tpl';
$templateMgr->assign([
'contextUrl' => $contextUrl,
'firstIssue' => $firstIssue,
'previousIssue' => $previousIssue,
'nextIssue' => $nextIssue,
'lastIssue' => $lastIssue,
]);
}
return $templateMgr->fetch($this->getTemplateResource($blockTemplateFilename));
}
/**
* Dismiss the cache
*
* @return null
*/
public function cacheDismiss()
{
return null;
}
/**
* Get the ids of the sorted issues from the cache
*
* @param Context $context
*
* @return array $issue_ids
*/
private function getCachedIssues(Context $context): array
{
return Cache::remember('navigation-issues-' . $context->getId(), $this->DAYS_SECONDS, function() use ($context) {
return $this->getJournalIssues($context->getId());
});
}
/**
* Get the ids of the sorted issues of a journal
*
* @param int $journalId
*
* @return array
*/
private function getJournalIssues(int $journalId): array
{
$count = 1000;
$offset = 0;
$issue_ids = Repo::issue()->getCollector()
->limit($count)
->offset($offset)
->filterByContextIds([$journalId])
->orderBy(Collector::ORDERBY_SEQUENCE)
->filterByPublished(true)
->getIds()
->toArray();
return $issue_ids;
}
/**
* Get the cached ids of the sorted submissions for a given issue
*
* @param Context $context
* @param Issue $issue
*
* @return array
*/
private function getCachedSubmissions(Context $context, Issue $issue): array
{
return Cache::remember('navigation-submissions-' . $context->getId() . "-" . $issue->getId(), $this->DAYS_SECONDS, function() use ($issue) {
return $this->getIssueSubmissions($issue);
});
}
/**
* Get the ids of the sorted submissions for a given issue
*
* @param Issue $issue
*
* @return array
*/
private function getIssueSubmissions(Issue $issue): array
{
$allowedStatuses = [PKPSubmission::STATUS_PUBLISHED];
if (!$issue->getPublished()) {
$allowedStatuses[] = PKPSubmission::STATUS_SCHEDULED;
}
$submissions = Repo::submission()->getCollector()
->filterByContextIds([$issue->getJournalId()])
->filterByIssueIds([$issue->getId()])
->filterByStatus($allowedStatuses)
->orderBy(\APP\submission\Collector::ORDERBY_SEQUENCE, \APP\submission\Collector::ORDER_DIR_ASC)
->getMany();
$sections = Repo::section()->getByIssueId($issue->getId());
$issueSubmissionsInSection = [];
foreach ($sections as $section) {
$issueSubmissionsInSection[$section->getId()] = [
'articles' => [],
];
}
foreach ($submissions as $submission) {
if (!$sectionId = $submission->getCurrentPublication()->getData('sectionId')) {
continue;
}
$issueSubmissionsInSection[$sectionId]['articles'][] = $submission;
}
$submission_ids = [];
foreach ($sections as $section) {
$sectionId = $section->getId();
foreach ($issueSubmissionsInSection[$sectionId]['articles'] as $submission) {
array_push($submission_ids, $submission->getId());
}
}
return $submission_ids;
}
/**
* Get the currently displayed issue
*
* @param Context $context
* @param string $pageOp
* @param string $arg
*
* @return Issue
*/
private function getDisplayedIssue(Context $context, string $pageOp, string $arg)
{
if ($pageOp == 'index/index' || $pageOp == '/index') {
$issue = Repo::issue()->getCurrent($context->getId());
}
if ($pageOp == 'issue/view') {
$issue = Repo::issue()->getByBestId($arg, $context->getId());
}
if ($pageOp == 'article/view') {
$submission = Repo::submission()->getByBestId($arg, $context->getId());
$issue = Repo::issue()->getBySubmissionId($submission->getId());
}
return $issue;
}
/**
* Get the first issue of the journal
*
* @param Context $context
* @param array $issues
*
* @return Issue
*/
private function getFirstIssue(Context $context, array $issues)
{
$issue = null;
$issueId = $issues[count($issues) - 1];
$issue = Repo::issue()->get($issueId, $context->getId());
return $issue;
}
/**
* Get the previous issue of the journal given the sequence index of the currently displayed issue
*
* @param Context $context
* @param array $issues
* @param int $seq
*
* @return Issue
*/
private function getPreviousIssue(Context $context, array $issues, int $seq)
{
$issue = null;
if ($seq < count($issues) - 1) {
$issueId = $issues[$seq + 1];
$issue = Repo::issue()->get($issueId, $context->getId());
}
return $issue;
}
/**
* Get the next issue of the journal given the sequence index of the currently displayed issue
*
* @param Context $context
* @param array $issues
* @param int $seq
*
* @return Issue
*/
private function getNextIssue(Context $context, array $issues, int $seq)
{
$issue = null;
if ($seq > 0) {
$issueId = $issues[$seq - 1];
$issue = Repo::issue()->get($issueId, $context->getId());
}
return $issue;
}
/**
* Get the currently displayed article
*
* @param Context $context
* @param string $pageOp
* @param string $arg
*
* @return Submission
*/
private function getDisplayedSubmission(Context $context, string $pageOp, string $arg)
{
if ($pageOp == 'article/view') {
$submission = Repo::submission()->getByBestId($arg, $context->getId());
}
return $submission;
}
/**
* Get the first article
*
* @param Context $context
* @param array $submission_ids
* @param int $seq
*
* @return Submission
*/
private function getFirstArticle(Context $context, array $submission_ids, int $seq)
{
$submission = null;
if ($seq != 0) {
$submission = Repo::submission()->getByBestId($submission_ids[0], $context->getId());
}
return $submission;
}
/**
* Get the previous article given the sequence index of the currently displayed article
*
* @param Context $context
* @param array $submission_ids
* @param int $seq
*
* @return Submission
*/
private function getPreviousArticle(Context $context, array $submission_ids, int $seq)
{
$submission = null;
if ($seq != 0) {
$submission = Repo::submission()->getByBestId($submission_ids[$seq-1], $context->getId());
}
return $submission;
}
/**
* Get the next article given the sequence index of the currently displayed article
*
* @param Context $context
* @param array $submission_ids
* @param int $seq
*
* @return Submission
*/
private function getNextArticle(Context $context, array $submission_ids, int $seq)
{
$submission = null;
$last = count($submission_ids) - 1;
if ($seq < $last) {
$submission = Repo::submission()->getByBestId($submission_ids[$seq+1], $context->getId());
}
return $submission;
}
/**
* Get the last article
*
* @param Context $context
* @param array $submission_ids
* @param int $seq
*
* @return Submission
*/
private function getLastArticle(Context $context, array $submission_ids, int $seq)
{
$submission = null;
$last = count($submission_ids) - 1;
if ($seq < $last) {
$submission = Repo::submission()->getByBestId($submission_ids[$last], $context->getId());
}
return $submission;
}
/**
* Get the sequence from a given submission or issue id
*
* @param array $seqToId
* @param int $id
*
* @return int
*/
private function getSequence(array $seqToId, int $id): int
{
$seq = array_search($id, $seqToId);
return $seq;
}
}
if (!PKP_STRICT_MODE) {
class_alias('\APP\plugins\blocks\navigation\NavigationBlockPlugin', '\NavigationBlockPlugin');
}