mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Revert "Fix: fix auto-close after giving a document away"
This reverts commit d0ec06d684fd1c8a656bd6d173a7d23c33bb5b0c.
This commit is contained in:
parent
c27e3c75cd
commit
5b49832609
@ -1,9 +1,5 @@
|
|||||||
import { DatePipe } from '@angular/common'
|
import { DatePipe } from '@angular/common'
|
||||||
import {
|
import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http'
|
||||||
HttpErrorResponse,
|
|
||||||
provideHttpClient,
|
|
||||||
withInterceptorsFromDi,
|
|
||||||
} from '@angular/common/http'
|
|
||||||
import {
|
import {
|
||||||
HttpTestingController,
|
HttpTestingController,
|
||||||
provideHttpClientTesting,
|
provideHttpClientTesting,
|
||||||
@ -507,7 +503,7 @@ describe('DocumentDetailComponent', () => {
|
|||||||
const updateSpy = jest.spyOn(documentService, 'update')
|
const updateSpy = jest.spyOn(documentService, 'update')
|
||||||
const toastSpy = jest.spyOn(toastService, 'showInfo')
|
const toastSpy = jest.spyOn(toastService, 'showInfo')
|
||||||
updateSpy.mockImplementation(() =>
|
updateSpy.mockImplementation(() =>
|
||||||
throwError(() => new HttpErrorResponse({ status: 403 }))
|
throwError(() => new Error('failed to save'))
|
||||||
)
|
)
|
||||||
component.save(true)
|
component.save(true)
|
||||||
expect(updateSpy).toHaveBeenCalled()
|
expect(updateSpy).toHaveBeenCalled()
|
||||||
|
@ -824,13 +824,11 @@ export class DocumentDetailComponent
|
|||||||
},
|
},
|
||||||
error: (error) => {
|
error: (error) => {
|
||||||
this.networkActive = false
|
this.networkActive = false
|
||||||
if (error.status === 403) {
|
if (!this.userCanEdit) {
|
||||||
// e.g. document was 'given away'
|
|
||||||
this.openDocumentService.setDirty(this.document, false)
|
|
||||||
this.toastService.showInfo(
|
this.toastService.showInfo(
|
||||||
$localize`Document "${this.document.title}" saved successfully.`
|
$localize`Document "${this.document.title}" saved successfully.`
|
||||||
)
|
)
|
||||||
this.close()
|
close && this.close()
|
||||||
} else {
|
} else {
|
||||||
this.error = error.error
|
this.error = error.error
|
||||||
this.toastService.showError(
|
this.toastService.showError(
|
||||||
|
@ -262,34 +262,6 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase):
|
|||||||
response = self.client.get(f"/api/documents/{doc.pk}/thumb/")
|
response = self.client.get(f"/api/documents/{doc.pk}/thumb/")
|
||||||
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
self.assertEqual(response.status_code, status.HTTP_200_OK)
|
||||||
|
|
||||||
def test_document_given_away(self):
|
|
||||||
"""
|
|
||||||
GIVEN:
|
|
||||||
- Document with owner
|
|
||||||
WHEN:
|
|
||||||
- Document is update and given away
|
|
||||||
THEN:
|
|
||||||
- 403 Forbidden is returned
|
|
||||||
"""
|
|
||||||
non_superuser = User.objects.create_user(username="test")
|
|
||||||
non_superuser.user_permissions.add(*Permission.objects.all())
|
|
||||||
self.client.force_authenticate(user=non_superuser)
|
|
||||||
|
|
||||||
doc = Document.objects.create(
|
|
||||||
title="none",
|
|
||||||
checksum="123",
|
|
||||||
mime_type="application/pdf",
|
|
||||||
owner=non_superuser,
|
|
||||||
)
|
|
||||||
|
|
||||||
response = self.client.patch(
|
|
||||||
f"/api/documents/{doc.pk}/",
|
|
||||||
{"owner": self.user.id},
|
|
||||||
format="json",
|
|
||||||
)
|
|
||||||
|
|
||||||
self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN)
|
|
||||||
|
|
||||||
@override_settings(FILENAME_FORMAT="")
|
@override_settings(FILENAME_FORMAT="")
|
||||||
def test_download_with_archive(self):
|
def test_download_with_archive(self):
|
||||||
content = b"This is a test"
|
content = b"This is a test"
|
||||||
|
@ -580,24 +580,15 @@ class DocumentViewSet(
|
|||||||
|
|
||||||
def update(self, request, *args, **kwargs):
|
def update(self, request, *args, **kwargs):
|
||||||
response = super().update(request, *args, **kwargs)
|
response = super().update(request, *args, **kwargs)
|
||||||
try:
|
|
||||||
doc = self.get_object()
|
|
||||||
except Http404:
|
|
||||||
# if we get this far document it was probably 'given away'
|
|
||||||
doc = Document.objects.get(id=kwargs["pk"])
|
|
||||||
|
|
||||||
from documents import index
|
from documents import index
|
||||||
|
|
||||||
index.add_or_update_document(doc)
|
index.add_or_update_document(self.get_object())
|
||||||
|
|
||||||
document_updated.send(
|
document_updated.send(
|
||||||
sender=self.__class__,
|
sender=self.__class__,
|
||||||
document=doc,
|
document=self.get_object(),
|
||||||
)
|
)
|
||||||
|
|
||||||
if not has_perms_owner_aware(request.user, "change_document", doc):
|
|
||||||
return HttpResponseForbidden("Insufficient permissions")
|
|
||||||
|
|
||||||
return response
|
return response
|
||||||
|
|
||||||
def destroy(self, request, *args, **kwargs):
|
def destroy(self, request, *args, **kwargs):
|
||||||
|
Loading…
x
Reference in New Issue
Block a user