Catalog alignment
[sdc.git] / catalog-ui / src / app / ng2 / services / user.service.ts
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 import { Injectable, Inject } from "@angular/core";
22 import { Observable } from "rxjs/Observable";
23 import { IUserProperties } from "../../models/user";
24
25 import {SdcConfigToken, ISdcConfig} from "../config/sdc-config.config";
26 import { HttpClient } from "@angular/common/http";
27 import { HttpHelperService } from "./http-hepler.service";
28 /**
29  * User Service provides CRUD for Users. See authentication service for authentication/login.
30  */
31 @Injectable()
32 export class UserService { 
33     private url:string;
34
35     constructor(private http: HttpClient,
36                 @Inject(SdcConfigToken) private sdcConfig:ISdcConfig) {
37         this.url = this.sdcConfig.api.root + this.sdcConfig.api.GET_user;
38     }
39
40
41     public getAllUsers() :Observable<IUserProperties[]> {
42         return this.http.get(
43             this.sdcConfig.api.root + this.sdcConfig.api.GET_all_users
44         ).map(resp => <IUserProperties[]> resp) ;
45     }
46
47     public getUser(userId:string) :Observable<IUserProperties> {
48         return this.http.get(
49             HttpHelperService.replaceUrlParams(this.url, { id: userId })
50         ).map(resp => <IUserProperties> resp);
51     }
52 }