I couldn't verify on master yet, but tested on 20.11.05: When a record is suppressed in the catalog using 942$n=1 and OpacSuppression a direct link to the MARCdetail page will still work: /cgi-bin/koha/opac-MARCdetail.pl?biblionumber=x This is problematic as some search bots could still index the records and someone clever would also be able to guess it. I think we need to add checks for suppression on these pages and redirect according to OpacSuppressionRedirect.
Arf indeed, code in only in opac-detail.pl : https://git.koha-community.org/Koha-community/Koha/src/commit/3ba74940ee730e92ad7061f27f18390cc6308364/opac/opac-detail.pl#L147 This needs to be in a module, and if possible with a Koha to MARC mapping instead of hardcoded 942$n.
(In reply to Fridolin Somers from comment #1) > Arf indeed, code in only in opac-detail.pl : > > https://git.koha-community.org/Koha-community/Koha/src/commit/ > 3ba74940ee730e92ad7061f27f18390cc6308364/opac/opac-detail.pl#L147 > > This needs to be in a module, and if possible with a Koha to MARC mapping > instead of hardcoded 942$n. I think adding a Koha to MARC mapping could be a different bug, also to keep this as easy as possible for backporting. Possibly the code for the check should also be in a routine somewhere? For MARC21 942$n has been established as standard and has a matching index. I am not sure if UNIMARC has a standard mapping at the moment?
(In reply to Katrin Fischer from comment #2) > (In reply to Fridolin Somers from comment #1) > > Arf indeed, code in only in opac-detail.pl : > > > > https://git.koha-community.org/Koha-community/Koha/src/commit/ > > 3ba74940ee730e92ad7061f27f18390cc6308364/opac/opac-detail.pl#L147 > > > > This needs to be in a module, and if possible with a Koha to MARC mapping > > instead of hardcoded 942$n. > > I think adding a Koha to MARC mapping could be a different bug, also to keep > this as easy as possible for backporting. > Sure.
Should we add to Koha::Biblio hidden_in_opac() ? Maybe with a param 'context' = 'search' or 'details' ?
I reckon this is actually a security bug.
Maybe it is time to fix this : FIXME hardcoded; the suppression flag ought to be materialized as a column on biblio or the like
(In reply to Fridolin Somers from comment #6) > Maybe it is time to fix this : > > FIXME hardcoded; the suppression flag ought to be materialized > as a column on biblio or the like No better time than the start of a cycle. Let's do it! If you write the code, I'm sure someone can test it, and I can QA it.
Created attachment 175654 [details] [review] Bug 28478: Add get_opac_suppression extractor This patch adds an extractor method for the historically hardcoded field 942$n. This way we have a single place in which we code the extraction and sanitization of its value. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t => SUCCESS: Tests pass! All use cases are covered! 3. Sign off :-D
Created attachment 175655 [details] [review] Bug 28478: Add Koha::Biblio->opac_suppressed() This patch adds a convenient method at the Koha::Biblio level, as a wrapper for the extrator added on this bug. Following the established pattern we adopted a while back. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Biblio.t => SUCCESS: Tests pass! All use cases covered! 3. Sign off :-D
Created attachment 175656 [details] [review] Bug 28478: Make opac-*detail.pl scripts use Koha::Biblio->opac_suppressed() This patch makes the following scripts use the new method for checking suppression: * opac/opac-ISBDdetail.pl * opac/opac-MARCdetail.pl * opac/opac-detail.pl In the `opac-detail.pl` case, it is a simple change by removing MARC data traversal in favor of the new method. The code checking suppression gets moved up so we don't process or make any other calculations if the record is suppressed. The other two scripts where completely missing the check and thus leaking suppressed records. To test: 1. Pick two records, one marked as suppressed, and the other not suppressed. 2. Try acessing them in the OPAC detail page. => SUCCESS: Suppressed records are suppressed, and not suppressed ones are not. 3. Try the same records on the ISBD and MARC view => FAIL: They are not suppressed! 4. Apply this patch 5. Repeat 2 => SUCCESS: Suppression is still respected 6. Repeat 3 => SUCCESS: Suppression is respected on the ISBD and MARC views 7. Sign off :-D
Created attachment 176490 [details] [review] Bug 28478: Add get_opac_suppression extractor This patch adds an extractor method for the historically hardcoded field 942$n. This way we have a single place in which we code the extraction and sanitization of its value. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t => SUCCESS: Tests pass! All use cases are covered! 3. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Tests pass
Created attachment 176491 [details] [review] Bug 28478: Add Koha::Biblio->opac_suppressed() This patch adds a convenient method at the Koha::Biblio level, as a wrapper for the extrator added on this bug. Following the established pattern we adopted a while back. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Biblio.t => SUCCESS: Tests pass! All use cases covered! 3. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Tests pass
Created attachment 176492 [details] [review] Bug 28478: Make opac-*detail.pl scripts use Koha::Biblio->opac_suppressed() This patch makes the following scripts use the new method for checking suppression: * opac/opac-ISBDdetail.pl * opac/opac-MARCdetail.pl * opac/opac-detail.pl In the `opac-detail.pl` case, it is a simple change by removing MARC data traversal in favor of the new method. The code checking suppression gets moved up so we don't process or make any other calculations if the record is suppressed. The other two scripts where completely missing the check and thus leaking suppressed records. To test: 1. Pick two records, one marked as suppressed, and the other not suppressed. 2. Try acessing them in the OPAC detail page. => SUCCESS: Suppressed records are suppressed, and not suppressed ones are not. 3. Try the same records on the ISBD and MARC view => FAIL: They are not suppressed! 4. Apply this patch 5. Repeat 2 => SUCCESS: Suppression is still respected 6. Repeat 3 => SUCCESS: Suppression is respected on the ISBD and MARC views 7. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Works as advertised. Remember to activate OPAC suppression with OpacSuppression.
The code is duplicated in 3 different places. We need to move it to a module. C4::Output::redirect_if_opac_suppressed or something? It's ugly but better than duplication of code.
(In reply to Jonathan Druart from comment #14) > The code is duplicated in 3 different places. We need to move it to a module. > > C4::Output::redirect_if_opac_suppressed or something? > It's ugly but better than duplication of code. I like your idea, but can we do it on a separate report? This patch actually introduces a high-level method that encapsulates some logic and solves a long standing issue.
(In reply to Jonathan Druart from comment #14) > The code is duplicated in 3 different places. We need to move it to a module. > > C4::Output::redirect_if_opac_suppressed or something? > It's ugly but better than duplication of code. Done on bug 38926!
Created attachment 176861 [details] [review] Bug 28478: Add get_opac_suppression extractor This patch adds an extractor method for the historically hardcoded field 942$n. This way we have a single place in which we code the extraction and sanitization of its value. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t => SUCCESS: Tests pass! All use cases are covered! 3. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Created attachment 176862 [details] [review] Bug 28478: Add Koha::Biblio->opac_suppressed() This patch adds a convenient method at the Koha::Biblio level, as a wrapper for the extrator added on this bug. Following the established pattern we adopted a while back. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Biblio.t => SUCCESS: Tests pass! All use cases covered! 3. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Created attachment 176863 [details] [review] Bug 28478: Make opac-*detail.pl scripts use Koha::Biblio->opac_suppressed() This patch makes the following scripts use the new method for checking suppression: * opac/opac-ISBDdetail.pl * opac/opac-MARCdetail.pl * opac/opac-detail.pl In the `opac-detail.pl` case, it is a simple change by removing MARC data traversal in favor of the new method. The code checking suppression gets moved up so we don't process or make any other calculations if the record is suppressed. The other two scripts where completely missing the check and thus leaking suppressed records. To test: 1. Pick two records, one marked as suppressed, and the other not suppressed. 2. Try acessing them in the OPAC detail page. => SUCCESS: Suppressed records are suppressed, and not suppressed ones are not. 3. Try the same records on the ISBD and MARC view => FAIL: They are not suppressed! 4. Apply this patch 5. Repeat 2 => SUCCESS: Suppression is still respected 6. Repeat 3 => SUCCESS: Suppression is respected on the ISBD and MARC views 7. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Works as advertised. Remember to activate OPAC suppression with OpacSuppression. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Was just looking at this and spotted Joubu commenting, so attached my signoff but leaving the final QA to him.. In my opinion, this is a pragmatic approach and is good to go and the follow-up bug is a great further enhancement on top to dry out code in the next bug.
Created attachment 176898 [details] [review] Bug 28478: Add get_opac_suppression extractor This patch adds an extractor method for the historically hardcoded field 942$n. This way we have a single place in which we code the extraction and sanitization of its value. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t => SUCCESS: Tests pass! All use cases are covered! 3. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Created attachment 176899 [details] [review] Bug 28478: Add Koha::Biblio->opac_suppressed() This patch adds a convenient method at the Koha::Biblio level, as a wrapper for the extrator added on this bug. Following the established pattern we adopted a while back. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Biblio.t => SUCCESS: Tests pass! All use cases covered! 3. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Created attachment 176900 [details] [review] Bug 28478: Make opac-*detail.pl scripts use Koha::Biblio->opac_suppressed() This patch makes the following scripts use the new method for checking suppression: * opac/opac-ISBDdetail.pl * opac/opac-MARCdetail.pl * opac/opac-detail.pl In the `opac-detail.pl` case, it is a simple change by removing MARC data traversal in favor of the new method. The code checking suppression gets moved up so we don't process or make any other calculations if the record is suppressed. The other two scripts where completely missing the check and thus leaking suppressed records. To test: 1. Pick two records, one marked as suppressed, and the other not suppressed. 2. Try acessing them in the OPAC detail page. => SUCCESS: Suppressed records are suppressed, and not suppressed ones are not. 3. Try the same records on the ISBD and MARC view => FAIL: They are not suppressed! 4. Apply this patch 5. Repeat 2 => SUCCESS: Suppression is still respected 6. Repeat 3 => SUCCESS: Suppression is respected on the ISBD and MARC views 7. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Works as advertised. Remember to activate OPAC suppression with OpacSuppression. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Hi there, This patchset doesn't apply cleanly on 24.05.x-security branch. This is because it is built on top of Bug 37380 which is only on 24.11 Can you please let us know if bug 28478 is needed in 24.05?
Applied to 24.11.x-security
(In reply to Alex Buckley from comment #24) > Hi there, > > This patchset doesn't apply cleanly on 24.05.x-security branch. > > This is because it is built on top of Bug 37380 which is only on 24.11 > > Can you please let us know if bug 28478 is needed in 24.05? Following up on this. Can we please have a rebase for 24.05? Because it does not apply cleanly when we apply it on that branch.
Created attachment 178572 [details] [review] [24.05.x] Bug 28478: Add get_opac_suppression extractor This patch adds an extractor method for the historically hardcoded field 942$n. This way we have a single place in which we code the extraction and sanitization of its value. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Biblio/Metadata/Extractor/MARC.t => SUCCESS: Tests pass! All use cases are covered! 3. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Created attachment 178573 [details] [review] [24.05.x] Bug 28478: Add Koha::Biblio->opac_suppressed() This patch adds a convenient method at the Koha::Biblio level, as a wrapper for the extrator added on this bug. Following the established pattern we adopted a while back. To test: 1. Apply this patch 2. Run: $ ktd --shell k$ prove t/db_dependent/Koha/Biblio.t => SUCCESS: Tests pass! All use cases covered! 3. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Created attachment 178574 [details] [review] [24.05.x] Bug 28478: Make opac-*detail.pl scripts use Koha::Biblio->opac_suppressed() This patch makes the following scripts use the new method for checking suppression: * opac/opac-ISBDdetail.pl * opac/opac-MARCdetail.pl * opac/opac-detail.pl In the `opac-detail.pl` case, it is a simple change by removing MARC data traversal in favor of the new method. The code checking suppression gets moved up so we don't process or make any other calculations if the record is suppressed. The other two scripts where completely missing the check and thus leaking suppressed records. To test: 1. Pick two records, one marked as suppressed, and the other not suppressed. 2. Try acessing them in the OPAC detail page. => SUCCESS: Suppressed records are suppressed, and not suppressed ones are not. 3. Try the same records on the ISBD and MARC view => FAIL: They are not suppressed! 4. Apply this patch 5. Repeat 2 => SUCCESS: Suppression is still respected 6. Repeat 3 => SUCCESS: Suppression is respected on the ISBD and MARC views 7. Sign off :-D Signed-off-by: Magnus Enger <magnus@libriotech.no> Works as advertised. Remember to activate OPAC suppression with OpacSuppression. Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
(In reply to Alex Buckley from comment #26) ¡> Following up on this. > > Can we please have a rebase for 24.05? Done! I've tested it myself. Works as advertised on the original patchset. (amended) tests pass too.
(In reply to Tomás Cohen Arazi (tcohen) from comment #30) > (In reply to Alex Buckley from comment #26) > ¡> Following up on this. > > > > Can we please have a rebase for 24.05? > > Done! I've tested it myself. Works as advertised on the original patchset. > (amended) tests pass too. Thank you very much Tomás!
Applied to 24.05.x-security branch. Test plans in 24.05 patches all worked as expected.
Applied to 23.11.x-security
Pushed for 25.05! Well done everyone, thank you!