"use strict"; var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) { var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d; if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc); else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r; return c > 3 && r && Object.defineProperty(target, key, r), r; }; var __metadata = (this && this.__metadata) || function (k, v) { if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v); }; Object.defineProperty(exports, "__esModule", { value: true }); var core_1 = require("@angular/core"); //import { HttpClient, HttpParams, HttpRequest} from "@angular/common/http"; var http_1 = require("@angular/http"); require("rxjs/add/operator/map"); require("rxjs/add/operator/catch"); require("rxjs/add/observable/throw"); require("rxjs/add/operator/do"); var Observable_1 = require("rxjs/Observable"); var global_1 = require("../../Shared/global"); var UserService = /** @class */ (function () { function UserService(http, commonService) { this.http = http; this.commonService = commonService; } //////////Get User Detail/////////////// UserService.prototype.GetUserById = function () { var _this = this; debugger; return this.http.get(this.commonService.resourceBaseUrl + "/api/GetUserProfile/" + this.commonService.UserId) .map(this.extractData) .catch(function (res) { return _this.handleError(res); }); ; }; //////////Update User Detail/////////////// UserService.prototype.UpdateUserProfileById = function (obj) { var _this = this; //let options = new RequestOptions({ headers: this.headers }); return this.http.post(this.commonService.resourceBaseUrl + "/api/UpdateProfile", obj) .map(this.extractData) .catch(function (res) { return _this.handleError(res); }); }; //////////Update User Password/////////////// UserService.prototype.ChangeUserPassword = function (obj) { var _this = this; //let options = new RequestOptions({ headers: this.headers }); var jsonData = { 'id': obj.userId, 'newPassword': obj.newPassword }; console.log(obj); var headers = new http_1.Headers({ 'Content-Type': 'application/json' }); return this.http.post(this.commonService.resourceBaseUrl + "/api/ChangeUserPassword", JSON.stringify(jsonData), { headers: headers }) .map(this.extractData) .catch(function (res) { return _this.handleError(res); }); }; //////////Update User Userid/////////////// UserService.prototype.UpdateUserId = function (obj) { var _this = this; //let options = new RequestOptions({ headers: this.headers }); return this.http.post(this.commonService.resourceBaseUrl + "/api/UpdateUserId", obj) .map(this.extractData) .catch(function (res) { return _this.handleError(res); }); }; /// Users Form/////// UserService.prototype.GetUserType = function () { var _this = this; return this.http.get(this.commonService.resourceBaseUrl + "/api/GetUserType/" + this.commonService.UserType) .map(this.extractData) .catch(function (res) { return _this.handleError(res); }); }; UserService.prototype.GetAccountType = function () { var _this = this; return this.http.get(this.commonService.resourceBaseUrl + "/api/GetAccountType/" + this.commonService.AccountType) .map(this.extractData) .catch(function (res) { return _this.handleError(res); }); }; UserService.prototype.GetUserList = function (obj) { var _this = this; return this.http.get(this.commonService.resourceBaseUrl + "/api/Users?firstname=" + obj.FirstName + "&lastname=" + obj.LastName + "&emailid=" + obj.EmailId + "&accountnumber=" + obj.AccountNumber + "&usertypeid=" + obj.UserTypeId + "&accounttypeid=" + obj.AccountTypeId) .map(this.extractData) .catch(function (res) { return _this.handleError(res); }); }; /// End Users ///// UserService.prototype.extractData = function (res) { debugger; var body = res.json(); return body; }; UserService.prototype.handleError = function (error) { debugger; // In a real world app, we might use a remote logging infrastructure // We'd also dig deeper into the error to get a better message var errMsg = (error.message) ? error.message : error.status ? error.status + " - " + error.statusText : 'Server error'; console.error(errMsg); // log to console instead return Observable_1.Observable.throw(errMsg); }; UserService = __decorate([ core_1.Injectable(), __metadata("design:paramtypes", [http_1.Http, global_1.GlobalService]) ], UserService); return UserService; }()); exports.UserService = UserService; //# sourceMappingURL=user.service.js.map