aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/services/http-hepler.service.ts
blob: 2b11067a24cfdaffb1abf917a4bc81783d05f1b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import { Injectable, Inject } from "@angular/core";
import { Dictionary } from "../../utils/dictionary/dictionary";
import { SharingService } from "../services/sharing.service";
import { SdcConfigToken, ISdcConfig } from "../config/sdc-config.config";


@Injectable()
export class HttpHelperService {
    constructor( private sharingService: SharingService,
        @Inject(SdcConfigToken) private sdcConfig: ISdcConfig){}
    
    public getUuidValue = (url: string): string => {
        let map: Dictionary<string, string> = this.sharingService.getUuidMap();
        if (map && url.indexOf(this.sdcConfig.api.root) > 0) {
            map.forEach((key: string) => {
                if (url.indexOf(key) !== -1) {
                    return this.sharingService.getUuidValue(key);
                }
            });
        }
        return '';
    }
    public static replaceUrlParams(url: string, urlParams: { [index: string]: any }): string {
        return url.replace(/:(\w+)/g, (m, p1): string => urlParams[p1] || '');
    }
    public static getHeaderMd5 = (object:any):string => {
        let componentString:string = JSON.stringify(object);
        let md5Result = md5(componentString).toLowerCase();
        return btoa(md5Result);
    };
}