2017-12-19 13:53:46 +01:00
|
|
|
export class User {
|
|
|
|
email:string;
|
|
|
|
firstname: string;
|
|
|
|
lastname: string;
|
|
|
|
id: string;
|
|
|
|
fullname: string;
|
|
|
|
expirationDate: number;
|
|
|
|
role:string[];
|
|
|
|
jwt:string;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
export class Session{
|
|
|
|
public static removeUser() {
|
2019-11-12 13:56:43 +01:00
|
|
|
COOKIE.deleteCookie(COOKIE.cookieName_id);
|
2020-09-23 12:15:39 +02:00
|
|
|
//COOKIE.deleteCookie("openAIRESession");
|
2019-11-12 13:56:43 +01:00
|
|
|
COOKIE.deleteCookie("openAIREUser");
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
2019-09-13 14:00:24 +02:00
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
public static isLoggedIn(): boolean {
|
2019-09-13 11:38:21 +02:00
|
|
|
var cookie= COOKIE.getCookie(COOKIE.cookieName_id);
|
2019-09-13 12:02:30 +02:00
|
|
|
return (cookie != null && cookie != "");
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
2019-09-13 12:02:30 +02:00
|
|
|
|
2018-05-23 16:47:27 +02:00
|
|
|
public static setReloadUrl(host:string,path:string, params:string) {
|
|
|
|
var URL = {};
|
|
|
|
URL["host"]=host;
|
|
|
|
URL["path"]=path;
|
|
|
|
URL["params"]=params;
|
|
|
|
COOKIE.setCookie("reloadURL", JSON.stringify(URL), -1);
|
|
|
|
}
|
|
|
|
public static getReloadUrl(plainText:boolean =false) {
|
|
|
|
var URL = COOKIE.getCookie("reloadURL");
|
|
|
|
URL = JSON.parse(URL);
|
|
|
|
return URL;
|
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
2018-05-23 16:47:27 +02:00
|
|
|
public static getParamsObj(params:string) {
|
2018-07-02 15:42:20 +02:00
|
|
|
var object = null;
|
2017-12-19 13:53:46 +01:00
|
|
|
if(params.split("&").length > 0){
|
|
|
|
object = {};
|
|
|
|
}
|
2018-07-02 15:42:20 +02:00
|
|
|
params =(params && params.split("?").length > 1 )?params.split("?")[1]:params;
|
2017-12-19 13:53:46 +01:00
|
|
|
for(var i=0; i<params.split("&").length; i++){
|
|
|
|
object[(params.split("&")[i]).split("=")[0]] = (params.split("&")[i]).split("=")[1];
|
|
|
|
}
|
2018-05-23 16:47:27 +02:00
|
|
|
|
|
|
|
return object;
|
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
2018-06-12 13:15:42 +02:00
|
|
|
|
|
|
|
//Methods to check roles
|
2019-09-13 09:01:19 +02:00
|
|
|
public static isClaimsCurator(user: User): boolean {
|
2020-06-10 11:21:12 +02:00
|
|
|
return user &&
|
2020-08-06 13:50:08 +02:00
|
|
|
(user.role.indexOf('urn:geant:openaire.eu:group:Curator+-+Claim#aai.openaire.eu') !== -1 ||
|
|
|
|
user.role.indexOf('CURATOR_CLAIM') !== -1);
|
2019-09-13 09:01:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static isCommunityCurator(user: User): boolean {
|
2020-06-10 11:21:12 +02:00
|
|
|
return user &&
|
2020-08-06 13:50:08 +02:00
|
|
|
(user.role.indexOf('urn:geant:openaire.eu:group:Curator+-+Community#aai.openaire.eu') !== -1||
|
|
|
|
user.role.indexOf('CURATOR_COMMUNITY') !== -1);
|
2019-09-13 09:01:19 +02:00
|
|
|
}
|
|
|
|
|
2020-06-02 12:51:31 +02:00
|
|
|
public static isMonitorCurator(user: User): boolean {
|
2020-06-10 11:21:12 +02:00
|
|
|
return user &&
|
2020-08-06 13:50:08 +02:00
|
|
|
(user.role.indexOf('urn:geant:openaire.eu:group:Expert+-+Funder#aai.openaire.eu') !== -1 ||
|
|
|
|
user.role.indexOf('urn:geant:openaire.eu:group:Curator+-+Funder#aai.openaire.eu') !== -1);
|
2020-06-02 12:51:31 +02:00
|
|
|
}
|
|
|
|
|
2019-09-13 09:01:19 +02:00
|
|
|
public static isPortalAdministrator(user: User): boolean {
|
2020-06-10 11:21:12 +02:00
|
|
|
return user &&
|
2020-08-06 13:50:08 +02:00
|
|
|
(user.role.indexOf('urn:geant:openaire.eu:group:Portal+Administrator#aai.openaire.eu') !== -1 ||
|
|
|
|
user.role.indexOf('PORTAL_ADMINISTRATOR') !== -1);
|
2019-09-13 09:01:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static isUserManager(user: User): boolean {
|
2020-06-10 11:21:12 +02:00
|
|
|
return user &&
|
2020-08-06 13:50:08 +02:00
|
|
|
(user.role.indexOf('urn:geant:openaire.eu:group:User+Manager#aai.openaire.eu') !== -1 ||
|
|
|
|
user.role.indexOf('USER_MANAGER') !== -1);
|
|
|
|
}
|
|
|
|
|
2020-08-11 14:54:14 +02:00
|
|
|
public static isSubscribedTo(type: string, id: string, user: User): boolean {
|
|
|
|
return user && user.role.indexOf(type.toUpperCase() + '_' + id.toUpperCase()) !== -1;
|
2020-08-06 13:50:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static isManager(type: string, id: string, user: User): boolean {
|
|
|
|
return user && user.role.indexOf(type.toUpperCase() + '_' + id.toUpperCase() + '_MANAGER') !== -1
|
2019-09-13 09:01:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static isRegisteredUser(user: User): boolean {
|
2020-06-10 11:21:12 +02:00
|
|
|
return user &&
|
2020-08-06 13:50:08 +02:00
|
|
|
(user.role.indexOf('urn:geant:openaire.eu:group:Registered+User#aai.openaire.eu') !== -1 ||
|
|
|
|
user.role.indexOf('REGISTERED_USER') !== -1);
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2018-06-12 13:15:42 +02:00
|
|
|
export class COOKIE{
|
2017-12-19 13:53:46 +01:00
|
|
|
public static cookieName_id:string="AccessToken";
|
|
|
|
|
|
|
|
public static getCookie(name: string) : string {
|
|
|
|
if(typeof document == 'undefined'){
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
let ca: Array<string> = document.cookie.split(';');
|
|
|
|
let caLen: number = ca.length;
|
|
|
|
let cookieName = `${name}=`;
|
|
|
|
let c: string;
|
|
|
|
|
|
|
|
for (let i: number = 0; i < caLen; i += 1) {
|
|
|
|
c = ca[i].replace(/^\s+/g, '');
|
|
|
|
if (c.indexOf(cookieName) == 0) {
|
|
|
|
return c.substring(cookieName.length, c.length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
public static deleteCookie(name) {
|
|
|
|
this.setCookie(name, '', -1);
|
|
|
|
}
|
|
|
|
public static setCookie(name: string, value: string, expireDays: number, path: string = '/') {
|
2019-05-22 17:04:10 +02:00
|
|
|
//TODO fix domain?
|
2017-12-19 13:53:46 +01:00
|
|
|
let d:Date = new Date();
|
|
|
|
d.setTime(d.getTime() + expireDays * 24 * 60 * 60 * 1000);
|
|
|
|
let expires:string = `expires=${d.toUTCString()}`;
|
|
|
|
// let cpath:string = path ? `; path=${path}` : '';
|
2018-02-12 11:21:42 +01:00
|
|
|
let domain = "";
|
2019-05-22 17:04:10 +02:00
|
|
|
if(typeof document !== 'undefined'){
|
|
|
|
if(document.domain.indexOf(".di.uoa.gr")!= -1){ // for development
|
|
|
|
domain = ".di.uoa.gr";
|
|
|
|
}else if(document.domain.indexOf(".openaire.eu") != -1){
|
|
|
|
domain = ".openaire.eu";
|
|
|
|
}
|
2020-10-23 15:55:35 +02:00
|
|
|
document.cookie = name+'='+value+'; path='+path+'; domain='+domain+';SameSite=Lax;';
|
2018-02-12 11:21:42 +01:00
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
|
|
|
}
|