diff --git a/src/main/java/at/ac/uibk/gitsearch/web/rest/SearchResource.java b/src/main/java/at/ac/uibk/gitsearch/web/rest/SearchResource.java index 42aa1c99dd008c9498eeecb39cf192cfb117e14d..c2cc5ae048a10468dd7f75f0111ea859a03c71cf 100644 --- a/src/main/java/at/ac/uibk/gitsearch/web/rest/SearchResource.java +++ b/src/main/java/at/ac/uibk/gitsearch/web/rest/SearchResource.java @@ -75,15 +75,11 @@ public class SearchResource { SearchInputDTO.PAGE_SIZE); } - @GetMapping("/user/{login}/statistics/views") + @GetMapping("/user/{email}/statistics/views") @PreAuthorize("hasAnyRole('USER')") - public ResponseEntity<StatisticsDTO> searchUserStatistics(@PathVariable String login) throws IOException { - log.debug("REST request to search statistics for user {}", login); - SearchInputDTO search = new SearchInputDTO(); - SearchInputMetadataDTO metadata = new SearchInputMetadataDTO(); - metadata.setAuthor(login); - search.setMetadata(metadata); - SearchResultsDTO results = searchService.searchResultForAuthorEmail("michael.breu@uibk.ac.at", 1000); + public ResponseEntity<StatisticsDTO> searchUserStatistics(@PathVariable String email) throws IOException { + log.debug("REST request to search statistics for user {}", email); + SearchResultsDTO results = searchService.searchResultForAuthorEmail(email, 1000); int totalAmountOfViews = 0; int totalAmountOfDownloads = 0; for (SearchResultDTO result : results.getSearchResult()) { diff --git a/src/main/webapp/app/account/achievements.component.ts b/src/main/webapp/app/account/achievements.component.ts index 79902b90b074df6882244cb0258e11f3e00fe8e9..5d050ed28af2fb83b057508f503d086c5916bdbc 100644 --- a/src/main/webapp/app/account/achievements.component.ts +++ b/src/main/webapp/app/account/achievements.component.ts @@ -29,15 +29,7 @@ export class AchievementsComponent implements OnInit { // eslint-disable-next-line no-console console.log( - 'Data: Number of Downloads: ' + - data.downloads + - ' Number of views: ' + - data.views + - ' for account ' + - this.account.firstName + - ' ' + - this.account.lastName + - this.config.views[0] + 'Data: Number of Downloads: ' + data.downloads + ' Number of views: ' + data.views + ' for account ' + this.account.email ); } }, diff --git a/src/main/webapp/app/search/service/search-service.ts b/src/main/webapp/app/search/service/search-service.ts index 6579bd09aa6063881e91d373be341f6cae56611a..67747d3e08dcf7b6bbf0450c74ec3e25586d8cbb 100644 --- a/src/main/webapp/app/search/service/search-service.ts +++ b/src/main/webapp/app/search/service/search-service.ts @@ -28,8 +28,8 @@ export class SearchService { return this.http.get<Statistics>(this.resourceSearchUrlStatisticsForExercise + exerciseID); } - getStatisticsForUser(login: string): Observable<Statistics> { - return this.http.get<Statistics>('api/user/' + login + '/statistics/views'); + getStatisticsForUser(email: string): Observable<Statistics> { + return this.http.get<Statistics>('api/user/' + email + '/statistics/views'); } /**