This is the codeAbility Sharing Platform! Learn more about the codeAbility Sharing Platform.

Skip to content
Snippets Groups Projects
Commit d4fa80a4 authored by Eduard Frankford's avatar Eduard Frankford
Browse files

now working with every email before I had michaels email hard coded for testing

parent bf0a1981
2 merge requests!62created achievementService and separated some functionality out of...,!45Achievements
...@@ -75,15 +75,11 @@ public class SearchResource { ...@@ -75,15 +75,11 @@ public class SearchResource {
SearchInputDTO.PAGE_SIZE); SearchInputDTO.PAGE_SIZE);
} }
@GetMapping("/user/{login}/statistics/views") @GetMapping("/user/{email}/statistics/views")
@PreAuthorize("hasAnyRole('USER')") @PreAuthorize("hasAnyRole('USER')")
public ResponseEntity<StatisticsDTO> searchUserStatistics(@PathVariable String login) throws IOException { public ResponseEntity<StatisticsDTO> searchUserStatistics(@PathVariable String email) throws IOException {
log.debug("REST request to search statistics for user {}", login); log.debug("REST request to search statistics for user {}", email);
SearchInputDTO search = new SearchInputDTO(); SearchResultsDTO results = searchService.searchResultForAuthorEmail(email, 1000);
SearchInputMetadataDTO metadata = new SearchInputMetadataDTO();
metadata.setAuthor(login);
search.setMetadata(metadata);
SearchResultsDTO results = searchService.searchResultForAuthorEmail("michael.breu@uibk.ac.at", 1000);
int totalAmountOfViews = 0; int totalAmountOfViews = 0;
int totalAmountOfDownloads = 0; int totalAmountOfDownloads = 0;
for (SearchResultDTO result : results.getSearchResult()) { for (SearchResultDTO result : results.getSearchResult()) {
......
...@@ -29,15 +29,7 @@ export class AchievementsComponent implements OnInit { ...@@ -29,15 +29,7 @@ export class AchievementsComponent implements OnInit {
// eslint-disable-next-line no-console // eslint-disable-next-line no-console
console.log( console.log(
'Data: Number of Downloads: ' + 'Data: Number of Downloads: ' + data.downloads + ' Number of views: ' + data.views + ' for account ' + this.account.email
data.downloads +
' Number of views: ' +
data.views +
' for account ' +
this.account.firstName +
' ' +
this.account.lastName +
this.config.views[0]
); );
} }
}, },
......
...@@ -28,8 +28,8 @@ export class SearchService { ...@@ -28,8 +28,8 @@ export class SearchService {
return this.http.get<Statistics>(this.resourceSearchUrlStatisticsForExercise + exerciseID); return this.http.get<Statistics>(this.resourceSearchUrlStatisticsForExercise + exerciseID);
} }
getStatisticsForUser(login: string): Observable<Statistics> { getStatisticsForUser(email: string): Observable<Statistics> {
return this.http.get<Statistics>('api/user/' + login + '/statistics/views'); return this.http.get<Statistics>('api/user/' + email + '/statistics/views');
} }
/** /**
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment