Replace meta service import and use with meta and title from angular/platform-browser for user, publication, claimAdmin,claimsByToken, directLinking, linkingGeneric, myClaims, depositBySubject, depositBySubjectResult, deposit, depositResult, dataProvider, htmlProjectReport, organization, project, software, search, advancedSearchPage, searchPage and searchPageTableView component
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@51835 d315682c-612b-4755-9ff5-7f18f6832af3
2018-04-17 15:00:23 +02:00
|
|
|
import {Component, ElementRef} from '@angular/core';
|
|
|
|
import {ActivatedRoute, Router} from '@angular/router';
|
|
|
|
import {Title, Meta} from '@angular/platform-browser';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
Replace meta service import and use with meta and title from angular/platform-browser for user, publication, claimAdmin,claimsByToken, directLinking, linkingGeneric, myClaims, depositBySubject, depositBySubjectResult, deposit, depositResult, dataProvider, htmlProjectReport, organization, project, software, search, advancedSearchPage, searchPage and searchPageTableView component
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@51835 d315682c-612b-4755-9ff5-7f18f6832af3
2018-04-17 15:00:23 +02:00
|
|
|
import {Observable} from 'rxjs/Observable';
|
|
|
|
|
|
|
|
// import {LoginService} from './login.service';
|
|
|
|
import {User,Session} from './utils/helper.class';
|
|
|
|
import {RouterHelper} from '../utils/routerHelper.class';
|
|
|
|
|
|
|
|
import {EnvProperties} from '../utils/properties/env-properties';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'user',
|
|
|
|
templateUrl: 'user.component.html'
|
|
|
|
})
|
|
|
|
|
|
|
|
export class UserComponent {
|
|
|
|
public user: User;
|
|
|
|
public loggedIn: boolean = false;
|
|
|
|
public server: boolean = true;
|
|
|
|
public errorMessage: string;
|
|
|
|
public username: string = "";
|
|
|
|
public password: string = "";
|
|
|
|
private sub:any;private sublogin:any;
|
|
|
|
public errorCode: string = "";
|
|
|
|
public redirectUrl: string = "";
|
|
|
|
public routerHelper:RouterHelper = new RouterHelper();
|
2018-02-05 14:14:59 +01:00
|
|
|
public loginUrl;
|
|
|
|
properties:EnvProperties;
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
constructor( private router: Router,
|
Replace meta service import and use with meta and title from angular/platform-browser for user, publication, claimAdmin,claimsByToken, directLinking, linkingGeneric, myClaims, depositBySubject, depositBySubjectResult, deposit, depositResult, dataProvider, htmlProjectReport, organization, project, software, search, advancedSearchPage, searchPage and searchPageTableView component
git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-library/trunk/ng-openaire-library/src/app@51835 d315682c-612b-4755-9ff5-7f18f6832af3
2018-04-17 15:00:23 +02:00
|
|
|
private route: ActivatedRoute,
|
|
|
|
private _meta: Meta,
|
|
|
|
private _title: Title) {
|
|
|
|
|
|
|
|
var title = "OpenAIRE | Login";
|
|
|
|
this._title.setTitle(title);
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
ngOnInit() {
|
2018-02-05 14:14:59 +01:00
|
|
|
this.route.data
|
|
|
|
.subscribe((data: { envSpecific: EnvProperties }) => {
|
|
|
|
this.properties = data.envSpecific;
|
|
|
|
this.loginUrl = this.properties.loginUrl;
|
|
|
|
|
|
|
|
});
|
2017-12-19 13:53:46 +01:00
|
|
|
if( typeof document !== 'undefined') {
|
|
|
|
this.server = false;
|
|
|
|
}
|
|
|
|
this.loggedIn = Session.isLoggedIn();
|
|
|
|
this.user = Session.getUser();
|
|
|
|
this.errorMessage = "";
|
|
|
|
this.sub = this.route.queryParams.subscribe(params => {
|
|
|
|
this.errorCode = params["errorCode"];
|
|
|
|
this.redirectUrl = params["redirectUrl"];
|
|
|
|
this.loggedIn = Session.isLoggedIn();
|
|
|
|
this.user = Session.getUser();
|
|
|
|
this.errorMessage = "";
|
|
|
|
if(this.loggedIn){
|
|
|
|
this.redirect();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
ngOnDestroy(){
|
|
|
|
this.sub.unsubscribe();
|
|
|
|
if(this.sublogin){
|
|
|
|
this.sublogin.unsubscribe();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// logout(){
|
|
|
|
// if(Session.isLoggedIn()){
|
|
|
|
// Session.removeUser();
|
|
|
|
// }
|
|
|
|
// this.loggedIn = false;
|
|
|
|
// this.user = new User();
|
|
|
|
// this.username = "";
|
|
|
|
// this.password = "";
|
|
|
|
// this.redirect();
|
|
|
|
//
|
|
|
|
// }
|
|
|
|
redirect(){
|
|
|
|
if(this.redirectUrl && this.redirectUrl != null && this.redirectUrl != ""){
|
|
|
|
this.redirectUrl = decodeURIComponent(this.redirectUrl);
|
|
|
|
var baseUrl = this.redirectUrl;
|
|
|
|
var queryParams = "";
|
|
|
|
var paramsArray =[];
|
|
|
|
var valuesArray =[];
|
|
|
|
if(this.redirectUrl.indexOf('?') != -1){
|
|
|
|
baseUrl = this.redirectUrl.split('?')[0];
|
|
|
|
queryParams = this.redirectUrl.split('?')[1];
|
|
|
|
}
|
|
|
|
if(queryParams != ""){
|
|
|
|
var queryParamsArray = queryParams.split('&');
|
|
|
|
for(var i = 0; i < queryParamsArray.length; i++){
|
|
|
|
paramsArray.push(queryParamsArray[i].split("=")[0]);
|
|
|
|
valuesArray.push(queryParamsArray[i].split("=")[1]);
|
|
|
|
}
|
|
|
|
this.router.navigate([baseUrl], { queryParams: this.routerHelper.createQueryParams(paramsArray,valuesArray)});
|
|
|
|
}else{
|
|
|
|
this.router.navigate([baseUrl]);
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
this.router.navigate(['/']);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
logIn(){
|
|
|
|
if(this.redirectUrl && this.redirectUrl != null && this.redirectUrl != ""){
|
|
|
|
this.redirectUrl = decodeURIComponent(this.redirectUrl);
|
|
|
|
var baseUrl = this.redirectUrl;
|
|
|
|
var queryParams = "";
|
|
|
|
var paramsArray =[];
|
|
|
|
var valuesArray =[];
|
|
|
|
if(this.redirectUrl.indexOf('?') != -1){
|
|
|
|
var splits =this.redirectUrl.split('?');
|
|
|
|
if(splits.length>0){
|
|
|
|
baseUrl = splits[0];
|
|
|
|
}
|
|
|
|
if(splits.length >1){
|
|
|
|
queryParams = splits[1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
console.log("saving url & params...");
|
|
|
|
console.log(queryParams);
|
|
|
|
Session.setCurrentUrl(baseUrl);
|
|
|
|
Session.setCurrentParameters(queryParams);
|
|
|
|
}
|
|
|
|
|
2018-02-05 14:14:59 +01:00
|
|
|
window.location.href = this.properties.loginUrl;
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// login() {
|
|
|
|
// this.sublogin =this._loginService.authenticate(/*this.user*/this.username, this.password).subscribe(
|
|
|
|
// data => {
|
|
|
|
// this.user = data;
|
|
|
|
// this.loggedIn = true;
|
|
|
|
// this.username = "";
|
|
|
|
// this.password = "";
|
|
|
|
// this.errorCode = "";
|
|
|
|
// this.redirect();
|
|
|
|
//
|
|
|
|
// },
|
|
|
|
// err => {
|
|
|
|
// console.log(err);
|
|
|
|
// if(err.status == "404") {
|
|
|
|
// this.errorMessage = "Wrong username";
|
|
|
|
// } else if(err.status == "401") {
|
|
|
|
// this.errorMessage = "Wrong password";
|
|
|
|
// }
|
|
|
|
// this.username = "";
|
|
|
|
// this.password = "";
|
|
|
|
// this.errorCode = "";
|
|
|
|
//
|
|
|
|
// }
|
|
|
|
// );
|
|
|
|
// }
|
|
|
|
}
|