uoa-repository-manager-ui/src/app/pages/metrics/metrics-usagestats.componen...

51 lines
1.5 KiB
TypeScript
Executable File

import { Component, OnInit } from '@angular/core';
import { Repository } from '../../domain/typeScriptClasses';
import { RepositoryService } from '../../services/repository.service';
import { AuthenticationService } from '../../services/authentication.service';
import { ActivatedRoute, Router } from '@angular/router';
@Component({
selector: 'metrics-usagestats',
templateUrl: 'metrics-usagestats.component.html'
})
export class MetricsUsagestatsComponent implements OnInit {
errorMessage: string;
title = 'Get usage statistics report';
repo: Repository;
repoId: string;
constructor(private repoService: RepositoryService,
private authService: AuthenticationService,
private route: ActivatedRoute,
private router: Router) {}
ngOnInit() {
this.getRepo();
}
getRepo() {
this.repoId = this.route.snapshot.paramMap.get('id');
if (this.repoId) {
this.repoService.getRepositoryById(this.repoId).subscribe(
repo => this.repo = repo,
error => {
console.log(error);
this.errorMessage = 'The repository could not be retrieved';
},
() => {
this.title = this.title + ' for ' + this.repo.officialName;
console.log(this.authService.getUserEmail(), this.repo.registeredBy);
if ( this.authService.activateFrontAuthorization && (this.authService.getUserEmail() !== this.repo.registeredBy.trim()) ) {
this.router.navigateByUrl('/403-forbidden', { skipLocationChange: true });
}
}
);
}
}
}