Skip to content

Commit 01210c2

Browse files
authored
#10158 Move categoryids out of of publication_settings (#10265)
* #10158 Move categoryids out of of publication_settings * #10158 Improve publication category handling and optimize query structure * #10158 Updated copyright and queries
1 parent 9ca4c44 commit 01210c2

File tree

7 files changed

+89
-40
lines changed

7 files changed

+89
-40
lines changed

classes/category/Collector.php

+6-3
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
use Illuminate\Support\LazyCollection;
2020
use PKP\core\interfaces\CollectorInterface;
2121
use PKP\plugins\Hook;
22+
use PKP\publication\PublicationCategory;
23+
2224

2325
/**
2426
* @template T of Category
@@ -136,9 +138,10 @@ public function getQueryBuilder(): Builder
136138
});
137139

138140
$qb->when($this->publicationIds !== null, function ($query) {
139-
$query->whereIn('c.category_id', function ($query) {
140-
$query->select('category_id')->from('publication_categories')->whereIn('publication_id', $this->publicationIds);
141-
});
141+
$query->whereIn('c.category_id', PublicationCategory::select('category_id')
142+
->whereIn('publication_id', $this->publicationIds)
143+
->toBase()
144+
);
142145
});
143146

144147
$qb->when($this->parentIds !== null, function ($query) {

classes/category/DAO.php

-18
Original file line numberDiff line numberDiff line change
@@ -155,22 +155,4 @@ public function resequenceCategories(int $contextId, ?int $parentCategoryId = nu
155155
}
156156
}
157157

158-
/**
159-
* Assign a publication to a category
160-
*/
161-
public function insertPublicationAssignment(int $categoryId, int $publicationId)
162-
{
163-
DB::table('publication_categories')->insert([
164-
'category_id' => $categoryId,
165-
'publication_id' => $publicationId,
166-
]);
167-
}
168-
169-
/**
170-
* Delete the assignment of a category to a publication
171-
*/
172-
public function deletePublicationAssignments(int $publicationId)
173-
{
174-
DB::table('publication_categories')->where('publication_id', '=', $publicationId)->delete();
175-
}
176158
}

classes/publication/DAO.php

+8-17
Original file line numberDiff line numberDiff line change
@@ -441,36 +441,27 @@ protected function deleteControlledVocab(int $publicationId)
441441
/**
442442
* Set a publication's category property
443443
*/
444-
protected function setCategories(Publication $publication)
444+
protected function setCategories(Publication $publication): void
445445
{
446-
$publication->setData(
447-
'categoryIds',
448-
Repo::category()->getCollector()
449-
->filterByPublicationIds([$publication->getId()])
450-
->getIds()
451-
->toArray()
452-
);
446+
$categoryIds = PublicationCategory::withPublicationId($publication->getId())->pluck('category_id');
447+
$publication->setData('categoryIds', $categoryIds);
453448
}
454449

455450
/**
456451
* Save the assigned categories
457452
*/
458-
protected function saveCategories(Publication $publication)
453+
protected function saveCategories(Publication $publication): void
459454
{
460-
Repo::category()->dao->deletePublicationAssignments($publication->getId());
461-
if (!empty($publication->getData('categoryIds'))) {
462-
foreach ($publication->getData('categoryIds') as $categoryId) {
463-
Repo::category()->dao->insertPublicationAssignment($categoryId, $publication->getId());
464-
}
465-
}
455+
$categoryIds = (array) $publication->getData('categoryIds');
456+
Repo::publication()->assignCategoriesToPublication($publication->getId(), $categoryIds);
466457
}
467458

468459
/**
469460
* Delete the category assignments
470461
*/
471-
protected function deleteCategories(int $publicationId)
462+
protected function deleteCategories(int $publicationId): void
472463
{
473-
Repo::category()->dao->deletePublicationAssignments($publicationId);
464+
PublicationCategory::where('publication_id', $publicationId)->delete();
474465
}
475466

476467
/**
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?php
2+
/**
3+
* @file classes/publication/PublicationCategory.php
4+
*
5+
* Copyright (c) 2024 Simon Fraser University
6+
* Copyright (c) 2024 John Willinsky
7+
* Distributed under the GNU GPL v3. For full terms see the file docs/COPYING.
8+
*
9+
* @class PublicationCategory
10+
*
11+
* @brief Handles operations related to publication categories
12+
*/
13+
14+
namespace PKP\publication;
15+
16+
use Eloquence\Behaviours\HasCamelCasing;
17+
use Illuminate\Database\Eloquent\Model;
18+
use Illuminate\Database\Eloquent\Builder;
19+
20+
class PublicationCategory extends Model
21+
{
22+
use HasCamelCasing;
23+
24+
protected $table = 'publication_categories';
25+
protected $primaryKey = 'publication_category_id';
26+
public $timestamps = false;
27+
28+
protected $fillable = [
29+
'publication_id', 'category_id'
30+
];
31+
32+
/**
33+
* Scope a query to only include records with a specific publicationId
34+
*/
35+
public function scopeWithPublicationId(Builder $query, int $publicationId): Builder
36+
{
37+
return $query->where('publication_id', $publicationId);
38+
}
39+
40+
/**
41+
* Scope a query to only include records with specific categoryIds
42+
*
43+
* @param int[] $categoryIds Array of category IDs
44+
*/
45+
public function scopeWithCategoryIds(Builder $query, array $categoryIds): Builder
46+
{
47+
return $query->whereIn('category_id', $categoryIds);
48+
}
49+
50+
}

classes/publication/Repository.php

+17
Original file line numberDiff line numberDiff line change
@@ -766,6 +766,23 @@ protected function getErrorMessageOverrides(): array
766766
];
767767
}
768768

769+
/**
770+
* Assign categories to a publication.
771+
*
772+
* @param int[] $categoryIds
773+
*/
774+
public function assignCategoriesToPublication(int $publicationId, array $categoryIds): void
775+
{
776+
$records = array_map(fn ($categoryId) => ['publication_id' => $publicationId, 'category_id' => $categoryId], $categoryIds);
777+
778+
PublicationCategory::upsert($records, ['publication_id', 'category_id']);
779+
780+
// delete categories that are no longer assigned
781+
PublicationCategory::where('publication_id', $publicationId)
782+
->whereNotIn('category_id', $categoryIds)
783+
->delete();
784+
}
785+
769786
/**
770787
* Create all DOIs associated with the publication.
771788
*/

classes/submission/Collector.php

+7-2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@
3131
use PKP\search\SubmissionSearch;
3232
use PKP\security\Role;
3333
use PKP\submission\reviewRound\ReviewRound;
34+
use PKP\publication\PublicationCategory;
35+
3436

3537
/**
3638
* @template T of Submission
@@ -623,8 +625,11 @@ public function getQueryBuilder(): Builder
623625
}
624626

625627
if (isset($this->categoryIds)) {
626-
$q->join('publication_categories as pc', 's.current_publication_id', '=', 'pc.publication_id')
627-
->whereIn('pc.category_id', $this->categoryIds);
628+
$publicationIds = PublicationCategory::withCategoryIds($this->categoryIds)
629+
->select('publication_id')
630+
->toBase();
631+
632+
$q->whereIn('s.current_publication_id', $publicationIds);
628633
}
629634

630635
$q = $this->buildReviewStageQueries($q);

schemas/publication.json

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
"categoryIds": {
5050
"type": "array",
5151
"apiSummary": true,
52+
"readOnly": true,
5253
"items": {
5354
"type": "integer"
5455
}

0 commit comments

Comments
 (0)