1
|
import {Injectable} from '@angular/core';
|
2
|
import {HttpClient, HttpParams} from '@angular/common/http';
|
3
|
import {BasicService} from './basic.service';
|
4
|
import {catchError} from 'rxjs/operators';
|
5
|
import {Languages} from '../../enums/common.enum';
|
6
|
import {MatSnackBar} from '@angular/material';
|
7
|
import {TranslateService} from '@ngx-translate/core';
|
8
|
|
9
|
@Injectable({
|
10
|
providedIn: 'root'
|
11
|
})
|
12
|
export class FileService extends BasicService {
|
13
|
|
14
|
constructor(protected http: HttpClient, protected snackBar: MatSnackBar, protected translateService: TranslateService) {
|
15
|
super(http, snackBar, translateService);
|
16
|
}
|
17
|
|
18
|
/**
|
19
|
* Uploads xlsx file which will be parsed on the server
|
20
|
* @param file xlsx file to be parsed
|
21
|
*/
|
22
|
uploadXlsFile(file: FileList) {
|
23
|
return this.makeImportXlsxAPiCall(file, null);
|
24
|
}
|
25
|
|
26
|
/**
|
27
|
* Uploads xlsx file which will be parsed on the server
|
28
|
* @param language specify error message language
|
29
|
* @param file xlsx file to be parsed
|
30
|
*/
|
31
|
uploadXlsFileWithLanguage(file: FileList, language: Languages) {
|
32
|
return this.makeImportXlsxAPiCall(file, language);
|
33
|
}
|
34
|
|
35
|
/**
|
36
|
* Exports a pdf file from the imported xlsx file
|
37
|
*/
|
38
|
getExportedPdf() {
|
39
|
return this.makeExportPdfApiCall(null);
|
40
|
}
|
41
|
|
42
|
/**
|
43
|
* Exports a pdf file from the imported xlsx file
|
44
|
* @param language specify error message language
|
45
|
*/
|
46
|
getExportedPdfWithLanguage(language: Languages) {
|
47
|
return this.makeExportPdfApiCall(language);
|
48
|
}
|
49
|
|
50
|
/**
|
51
|
* Testovaci endpoint pro export PDF souboru
|
52
|
* GET /export/pdf? [lang=<CZ,EN>]
|
53
|
* @param language specify error message language
|
54
|
*/
|
55
|
private makeExportPdfApiCall(language: Languages) {
|
56
|
const httpParams: HttpParams = this.createParams({lang: language});
|
57
|
|
58
|
return this.http.get(this.baseUrl + '/api/export/pdf', {responseType: 'blob', params: httpParams})
|
59
|
.pipe(
|
60
|
catchError(err => this.handleError(err))
|
61
|
);
|
62
|
}
|
63
|
|
64
|
/**
|
65
|
* Testovaci endpoint pro import XLS souboru
|
66
|
* POST /import/xls?[lang=<CZ,EN>]&file=<binarni_soubor>
|
67
|
* @param file xlsx file to import and parse
|
68
|
* @param language specify error message langauge
|
69
|
*/
|
70
|
private makeImportXlsxAPiCall(file: FileList, language: Languages) {
|
71
|
const fileCount: number = file.length;
|
72
|
const formData = new FormData();
|
73
|
|
74
|
const httpParams: HttpParams = this.createParams({lang: language});
|
75
|
const options = {params: httpParams};
|
76
|
|
77
|
if (fileCount > 0) {
|
78
|
|
79
|
formData.append('file', file.item(0));
|
80
|
return this.http.post(this.baseUrl + '/api/import/xls', formData, options);
|
81
|
}
|
82
|
}
|
83
|
}
|