diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index c23fd635b..d87bd243b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -58,6 +58,13 @@ Our community review process for `non-trivial` PRs is the following: This process might be slow as community members have different schedules and time to dedicate to the Paperless project. However it ensures community code reviews are as brilliantly thorough as they once were with @jonaswinkler. +# AI-Generated Code + +This project does not specifically prohibit the use of AI-generated code _during the process_ of creating a PR, however: + +1. Any code present in the final PR that was generated using AI sources should be clearly attributed as such and must not violate copyright protections. +2. We will not accept PRs that are entirely or mostly AI-derived. + # Translating Paperless-ngx Some notes about translation: diff --git a/docs/administration.md b/docs/administration.md index 0fbbe577e..29f4fb60a 100644 --- a/docs/administration.md +++ b/docs/administration.md @@ -10,8 +10,8 @@ Before making backups, make sure that paperless is not running. Options available to any installation of paperless: - Use the [document exporter](#exporter). The document exporter exports all your documents, - thumbnails and metadata to a specific folder. You may import your - documents into a fresh instance of paperless again or store your + thumbnails, metadata, and database contents to a specific folder. You may import your + documents and settings into a fresh instance of paperless again or store your documents in another DMS with this export. - The document exporter is also able to update an already existing export. Therefore, incremental backups with `rsync` are entirely @@ -239,8 +239,9 @@ with the argument `--help`. ### Document exporter {#exporter} -The document exporter exports all your data from paperless into a folder -for backup or migration to another DMS. +The document exporter exports all your data (including your settings +and database contents) from paperless into a folder for backup or +migration to another DMS. If you use the document exporter within a cronjob to backup your data you might use the `-T` flag behind exec to suppress "The input device diff --git a/docs/api.md b/docs/api.md index 0c310d821..0eacd7913 100644 --- a/docs/api.md +++ b/docs/api.md @@ -282,19 +282,20 @@ consumption including the ID of a created document if consumption succeeded. ## Permissions All objects (documents, tags, etc.) allow setting object-level permissions -with an optional `set_permissions` parameter which is of the form: +with optional `owner` and / or a `set_permissions` parameters which are of +the form: ``` -{ - "owner": user_id, - "view": { - "users": [...], - "groups": [...], - }, - "change": { - "users": [...], - "groups": [...], - }, +"owner": ..., +"set_permissions": { + "view": { + "users": [...], + "groups": [...], + }, + "change": { + "users": [...], + "groups": [...], + }, } ``` @@ -302,7 +303,7 @@ with an optional `set_permissions` parameter which is of the form: Arrays should contain user or group ID numbers. -If this parameter is supplied the object's permissions will be overwritten, +If these parameters are supplied the object's permissions will be overwritten, assuming the authenticated user has permission to do so (the user must be the object owner or a superuser). diff --git a/mkdocs.yml b/mkdocs.yml index f99b45ab3..55cd3ca94 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -28,6 +28,7 @@ theme: repo: fontawesome/brands/github favicon: assets/favicon.png repo_url: https://github.com/paperless-ngx/paperless-ngx +repo_name: paperless-ngx/paperless-ngx edit_uri: blob/main/docs/ extra_css: - assets/extra.css diff --git a/src/documents/tests/test_api.py b/src/documents/tests/test_api.py index 5dda30a8e..9000c3c21 100644 --- a/src/documents/tests/test_api.py +++ b/src/documents/tests/test_api.py @@ -4459,6 +4459,51 @@ class TestApiAuth(DirectoriesMixin, APITestCase): self.assertEqual(checker.has_perm("view_tag", tag1), True) self.assertIn("view_tag", get_perms(group1, tag1)) + def test_api_set_other_owner_w_permissions(self): + """ + GIVEN: + - API request to create an object (Tag) + WHEN: + - a different owner than is logged in is set + - view > groups is set + THEN: + - Object permissions are set appropriately + """ + user1 = User.objects.create_superuser(username="user1") + user2 = User.objects.create(username="user2") + group1 = Group.objects.create(name="group1") + + self.client.force_authenticate(user1) + + response = self.client.post( + "/api/tags/", + json.dumps( + { + "name": "test1", + "matching_algorithm": MatchingModel.MATCH_AUTO, + "owner": user2.id, + "set_permissions": { + "view": { + "users": None, + "groups": [group1.id], + }, + "change": { + "users": None, + "groups": None, + }, + }, + }, + ), + content_type="application/json", + ) + + self.assertEqual(response.status_code, status.HTTP_201_CREATED) + + tag1 = Tag.objects.filter(name="test1").first() + + self.assertEqual(tag1.owner, user2) + self.assertIn("view_tag", get_perms(group1, tag1)) + def test_api_set_doc_permissions(self): """ GIVEN: