2020-11-11 15:43:13 +01:00
|
|
|
import {Component, Inject, Optional} from '@angular/core';
|
2018-04-11 16:06:36 +02:00
|
|
|
import {Location} from '@angular/common';
|
|
|
|
import {ActivatedRoute} from '@angular/router';
|
|
|
|
import {Title, Meta} from '@angular/platform-browser';
|
2019-10-22 12:06:44 +02:00
|
|
|
import {RESPONSE} from "@nguniversal/express-engine/tokens";
|
2019-11-07 10:51:09 +01:00
|
|
|
import {SEOService} from "../sharedComponents/SEO/SEO.service";
|
2020-09-24 13:18:24 +02:00
|
|
|
import {properties} from "../../../environments/environment";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@Component({
|
|
|
|
selector: 'error',
|
|
|
|
template: `
|
2020-05-07 19:20:33 +02:00
|
|
|
<div id="tm-main" class=" uk-section tm-middle">
|
|
|
|
<div uk-grid class="uk-margin-small-top">
|
2017-12-19 13:53:46 +01:00
|
|
|
<div class="tm-main uk-width-1-1@s uk-width-1-1@m uk-width-1-1@l uk-row-first ">
|
|
|
|
<div class="uk-container">
|
2020-10-13 21:04:50 +02:00
|
|
|
<h3>
|
2021-03-29 16:01:24 +02:00
|
|
|
<span *ngIf="page !='-1'">Bad karma: we can't find that page!</span>
|
|
|
|
<div *ngIf="page =='-1'" class="uk-text-center uk-margin-large-top">
|
|
|
|
<svg _ngcontent-my-app-c8="" fill="black" height="24px" viewBox="0 0 24 24" width="24px" xmlns="http://www.w3.org/2000/svg"><path _ngcontent-my-app-c8="" d="M0 0h24v24H0z" fill="none"></path><path _ngcontent-my-app-c8="" d="M18 8h-1V6c0-2.76-2.24-5-5-5S7 3.24 7 6v2H6c-1.1 0-2 .9-2 2v10c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V10c0-1.1-.9-2-2-2zm-6 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm3.1-9H8.9V6c0-1.71 1.39-3.1 3.1-3.1 1.71 0 3.1 1.39 3.1 3.1v2z"></path></svg>
|
|
|
|
Private Data</div>
|
2020-10-13 21:04:50 +02:00
|
|
|
</h3>
|
|
|
|
<h6 *ngIf="page_type" class="uk-margin-remove">
|
2019-10-31 12:39:23 +01:00
|
|
|
Not valid or missing {{page_type_name}} id.
|
|
|
|
<a *ngIf="page_type" routerLinkActive="router-link-active" [routerLink]="searchPage">Search </a>another {{page_type_name}}?
|
2020-10-13 21:04:50 +02:00
|
|
|
</h6>
|
2017-12-19 13:53:46 +01:00
|
|
|
<br>
|
2021-03-29 16:01:24 +02:00
|
|
|
<div *ngIf="page !='-1'">
|
2017-12-19 13:53:46 +01:00
|
|
|
<p>
|
|
|
|
You asked for {{page}}, but despite our computers looking very hard, we could not find it. What happened ?
|
|
|
|
</p>
|
|
|
|
<ul>
|
|
|
|
<li>the link you clicked to arrive here has a typo in it</li>
|
|
|
|
<li>or somehow we removed that page, or gave it another name</li>
|
|
|
|
<li>or, quite unlikely for sure, maybe you typed it yourself and there was a little mistake ?</li>
|
|
|
|
</ul>
|
2021-03-29 16:01:24 +02:00
|
|
|
</div>
|
2017-12-19 13:53:46 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
`
|
|
|
|
})
|
|
|
|
|
|
|
|
export class ErrorPageComponent {
|
|
|
|
public page: string;
|
2019-10-31 12:39:23 +01:00
|
|
|
public page_type: string;
|
|
|
|
public searchPage: string;
|
|
|
|
public page_type_name: string;
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2018-04-11 16:06:36 +02:00
|
|
|
constructor (private _location: Location, private _meta: Meta,
|
2019-10-22 12:06:44 +02:00
|
|
|
private _title: Title, private route: ActivatedRoute,
|
2019-11-07 10:51:09 +01:00
|
|
|
@Optional() @Inject(RESPONSE) private response: any,
|
2021-04-01 14:43:49 +02:00
|
|
|
private seoService: SEOService) {}
|
|
|
|
|
2017-12-19 13:53:46 +01:00
|
|
|
ngOnInit() {
|
2020-11-18 17:06:27 +01:00
|
|
|
this.seoService.createLinkForCanonicalURL(properties.domain + properties.baseLink + "/error");
|
|
|
|
this.route.queryParams.subscribe(data => {
|
|
|
|
this.page = data['page'];
|
|
|
|
if (!this.page) {
|
|
|
|
this.page = this._location.path(true);
|
|
|
|
}
|
2021-04-01 14:43:49 +02:00
|
|
|
if(this.response) {
|
2021-03-29 16:01:24 +02:00
|
|
|
this.response.statusCode = 404;
|
|
|
|
this.response.statusMessage = '404 - Page not found';
|
2021-04-01 14:43:49 +02:00
|
|
|
}
|
|
|
|
if(this.page != "-1") {
|
|
|
|
let title = "OpenAIRE | Error page";
|
2021-03-29 16:01:24 +02:00
|
|
|
this._meta.updateTag({content:title},"property='og:title'");
|
|
|
|
this._title.setTitle(title);
|
2021-04-01 14:43:49 +02:00
|
|
|
} else{
|
|
|
|
let title = "OpenAIRE | Private data";
|
2021-03-29 16:01:24 +02:00
|
|
|
this._meta.updateTag({content:title},"property='og:title'");
|
|
|
|
this._title.setTitle(title);
|
|
|
|
}
|
2020-11-18 17:06:27 +01:00
|
|
|
this.page_type = data['page_type'];
|
|
|
|
if(this.page_type) {
|
|
|
|
if (this.page_type == "publication") {
|
|
|
|
this.searchPage = properties.searchLinkToPublications;
|
|
|
|
this.page_type_name = "publication";
|
|
|
|
} else if (this.page_type == "software") {
|
|
|
|
this.searchPage = properties.searchLinkToSoftware;
|
|
|
|
this.page_type_name = "software";
|
|
|
|
} else if (this.page_type == "dataset") {
|
|
|
|
this.searchPage = properties.searchLinkToDatasets;
|
|
|
|
this.page_type_name = "dataset";
|
|
|
|
} else if (this.page_type == "orp") {
|
|
|
|
this.searchPage = properties.searchLinkToOrps;
|
|
|
|
this.page_type_name = "research product";
|
|
|
|
} else if (this.page_type == "organization") {
|
|
|
|
this.searchPage = properties.searchLinkToOrganizations;
|
|
|
|
this.page_type_name = "organization";
|
|
|
|
} else if (this.page_type == "project") {
|
|
|
|
this.searchPage = properties.searchLinkToProjects;
|
|
|
|
this.page_type_name = "project";
|
|
|
|
} else if (this.page_type == "dataprovider") {
|
|
|
|
this.searchPage = properties.searchLinkToDataProviders;
|
|
|
|
this.page_type_name = "content provider";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
|
|
|
}
|