From d67eacdd6fcf2ea40a360ea7692a976eb35b6b2c Mon Sep 17 00:00:00 2001 From: Jonas Winkler Date: Sat, 31 Oct 2020 00:56:20 +0100 Subject: [PATCH] basic statistics --- .../dashboard/dashboard.component.html | 3 ++- .../dashboard/dashboard.component.ts | 20 ++++++++++++++++--- src/documents/views.py | 11 ++++++++++ src/paperless/urls.py | 4 +++- 4 files changed, 33 insertions(+), 5 deletions(-) diff --git a/src-ui/src/app/components/dashboard/dashboard.component.html b/src-ui/src/app/components/dashboard/dashboard.component.html index d33dec9d6..f1a3ef1ed 100644 --- a/src-ui/src/app/components/dashboard/dashboard.component.html +++ b/src-ui/src/app/components/dashboard/dashboard.component.html @@ -29,7 +29,8 @@

Statistics

-

None yet.

+

Documents in inbox: {{statistics.documents_inbox}}

+

Total documents: {{statistics.documents_total}}

Upload new Document

{ @@ -24,8 +32,14 @@ export class DashboardComponent implements OnInit { this.savedDashboardViews.push({viewConfig: config, documents: result.results}) }) }) + this.getStatistics().subscribe(statistics => { + this.statistics = statistics + }) } + getStatistics(): Observable { + return this.http.get(`${environment.apiBaseUrl}statistics/`) + } public fileOver(event){ diff --git a/src/documents/views.py b/src/documents/views.py index 9bec12555..2ef76cb7a 100755 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -194,3 +194,14 @@ class SearchAutoCompleteView(APIView): return Response(index.autocomplete(self.ix, term, limit)) else: return Response([]) + + +class StatisticsView(APIView): + + permission_classes = (IsAuthenticated,) + + def get(self, request, format=None): + return Response({ + 'documents_total': Document.objects.all().count(), + 'documents_inbox': Document.objects.filter(tags__is_inbox_tag=True).distinct().count() + }) diff --git a/src/paperless/urls.py b/src/paperless/urls.py index b78cdc1ff..16169309b 100755 --- a/src/paperless/urls.py +++ b/src/paperless/urls.py @@ -14,7 +14,8 @@ from documents.views import ( DocumentTypeViewSet, SearchView, IndexView, - SearchAutoCompleteView + SearchAutoCompleteView, + StatisticsView ) api_router = DefaultRouter() @@ -31,6 +32,7 @@ urlpatterns = [ url(r"^api/auth/",include(('rest_framework.urls', 'rest_framework'), namespace="rest_framework")), url(r"^api/search/autocomplete/", SearchAutoCompleteView.as_view(), name="autocomplete"), url(r"^api/search/", SearchView.as_view(), name="search"), + url(r"^api/statistics/", StatisticsView.as_view(), name="statistics"), url(r"^api/token/", views.obtain_auth_token), url(r"^api/", include((api_router.urls, 'drf'), namespace="drf")), # Favicon