Summary: | System preference to control access to own objects without permission | ||
---|---|---|---|
Product: | Koha | Reporter: | Lari Taskula <lari.taskula> |
Component: | REST API | Assignee: | Bugs List <koha-bugs> |
Status: | In Discussion --- | QA Contact: | Marcel de Rooy <m.de.rooy> |
Severity: | enhancement | ||
Priority: | P5 - low | CC: | jonathan.druart, josef.moravec, m.de.rooy, tomascohen |
Version: | Main | ||
Hardware: | All | ||
OS: | All | ||
Change sponsored?: | --- | Patch complexity: | Small patch |
Documentation contact: | Documentation submission: | ||
Text to go in the release notes: | Version(s) released in: | ||
Circulation function: | |||
Bug Depends on: | 18137 | ||
Bug Blocks: | |||
Attachments: |
Bug 17424: REST API: Preference to control access to own objects without permission
[SIGNED-OFF] Bug 17424: REST API: Preference to control access to own objects without permission Bug 17424: REST API: Preference to control access to own objects without permission Bug 17424: [QA Follow-up] Tiny tidy |
Description
Lari Taskula
2016-10-11 11:18:43 UTC
One problem with preference-approach is that it will create a mismatch between Swagger documentation and value of the preference if disabled. If the preference is being used to disable OPAC-like API operations, Swagger spec says they should still be possible. In this case, maybe it is enough to simply return an error message? Created attachment 56257 [details] [review] Bug 17424: REST API: Preference to control access to own objects without permission This patch adds a new system preference AccessOwnObjectsInAPI which controls accessibility for OPAC-like REST API operations for patron's without otherwise required permissions. To test: 1. Apply this patch and set AccessOwnObjectsInAPI to "Enabled" 2. Test REST API operations that allow access to own objects. They should work as before. E.g. try to GET /api/v1/patrons/XXX where XXX is your borrowernumber (you need a valid CGISESSID, so login first, but make sure you don't have borrowers-permission) 3. Disable AccessOwnObjectsInAPI 4. Observe that you no longer have access. You should be given an appropriate error message for what happened. 5. Run t/db_dependent/api/v1/swagger/ownership.t and also other REST tests. Created attachment 59099 [details] [review] [SIGNED-OFF] Bug 17424: REST API: Preference to control access to own objects without permission This patch adds a new system preference AccessOwnObjectsInAPI which controls accessibility for OPAC-like REST API operations for patron's without otherwise required permissions. To test: 1. Apply this patch and set AccessOwnObjectsInAPI to "Enabled" 2. Test REST API operations that allow access to own objects. They should work as before. E.g. try to GET /api/v1/patrons/XXX where XXX is your borrowernumber (you need a valid CGISESSID, so login first, but make sure you don't have borrowers-permission) 3. Disable AccessOwnObjectsInAPI 4. Observe that you no longer have access. You should be given an appropriate error message for what happened. 5. Run t/db_dependent/api/v1/swagger/ownership.t and also other REST tests. Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Created attachment 64378 [details] [review] Bug 17424: REST API: Preference to control access to own objects without permission This patch adds a new system preference AccessOwnObjectsInAPI which controls accessibility for OPAC-like REST API operations for patron's without otherwise required permissions. To test: 1. Apply this patch and set AccessOwnObjectsInAPI to "Enabled" 2. Test REST API operations that allow access to own objects. They should work as before. E.g. try to GET /api/v1/patrons/XXX where XXX is your borrowernumber (you need a valid CGISESSID, so login first, but make sure you don't have borrowers-permission) 3. Disable AccessOwnObjectsInAPI 4. Observe that you no longer have access. You should be given an appropriate error message for what happened. 5. Run t/db_dependent/api/v1/swagger/ownership.t and also other REST tests. Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> Created attachment 64379 [details] [review] Bug 17424: [QA Follow-up] Tiny tidy The tests for $authorization keys allow_owner or allow_guarantor are in the subroutines already. Moving the owner_guarantor test result in a variable. Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl> (In reply to Lari Taskula from comment #1) > One problem with preference-approach is that it will create a mismatch > between Swagger documentation and value of the preference if disabled. If > the preference is being used to disable OPAC-like API operations, Swagger > spec says they should still be possible. In this case, maybe it is enough to > simply return an error message? Life is hard :) (In reply to Lari Taskula from comment #1) > One problem with preference-approach is that it will create a mismatch > between Swagger documentation and value of the preference if disabled. If > the preference is being used to disable OPAC-like API operations, Swagger > spec says they should still be possible. In this case, maybe it is enough to > simply return an error message? I think we need a more flexible approach: we need a configuration page in which users can select if they allow (or not) access to own (and relative's) objects, FOR EACH resource. The OpenAPI docs can be adjusted to say it will depend on local configurations. And API consumers will notice anyway. |