mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 13:17:04 +00:00
66 lines
3.1 KiB
JavaScript
66 lines
3.1 KiB
JavaScript
(function (module) {
|
|
mifosX.services = _.extend(module, {
|
|
AuthenticationService: function (scope, httpService, SECURITY, localStorageService,timeout, webStorage) {
|
|
var onSuccess = function (data) {
|
|
scope.$broadcast("UserAuthenticationSuccessEvent", data);
|
|
localStorageService.addToLocalStorage('userData', data);
|
|
};
|
|
|
|
var onFailure = function (data, status) {
|
|
scope.$broadcast("UserAuthenticationFailureEvent", data, status);
|
|
};
|
|
|
|
var apiVer = '/fineract-provider/api/v1';
|
|
|
|
var getUserDetails = function(data){
|
|
|
|
localStorageService.addToLocalStorage('tokendetails', data);
|
|
setTimer(data.expires_in);
|
|
httpService.get( apiVer + "/userdetails?access_token=" + data.access_token)
|
|
.success(onSuccess)
|
|
.error(onFailure);
|
|
|
|
}
|
|
|
|
var updateAccessDetails = function(data){
|
|
var sessionData = webStorage.get('sessionData');
|
|
sessionData.authenticationKey = data.access_token;
|
|
webStorage.add("sessionData",sessionData);
|
|
localStorageService.addToLocalStorage('tokendetails', data);
|
|
var userDate = localStorageService.getFromLocalStorage("userData");
|
|
userDate.accessToken = data.access_token;
|
|
localStorageService.addToLocalStorage('userData', userDate);
|
|
httpService.setAuthorization(data.access_token);
|
|
setTimer(data.expires_in);
|
|
}
|
|
|
|
var setTimer = function(time){
|
|
timeout(getAccessToken, time * 1000);
|
|
}
|
|
|
|
var getAccessToken = function(){
|
|
var refreshToken = localStorageService.getFromLocalStorage("tokendetails").refresh_token;
|
|
httpService.cancelAuthorization();
|
|
httpService.post( "/fineract-provider/api/oauth/token?&client_id=community-app&grant_type=refresh_token&client_secret=123&refresh_token=" + refreshToken)
|
|
.success(updateAccessDetails);
|
|
}
|
|
|
|
this.authenticateWithUsernamePassword = function (credentials) {
|
|
scope.$broadcast("UserAuthenticationStartEvent");
|
|
if(SECURITY === 'oauth'){
|
|
httpService.post( "/fineract-provider/api/oauth/token?username=" + credentials.username + "&password=" + credentials.password +"&client_id=community-app&grant_type=password&client_secret=123")
|
|
.success(getUserDetails)
|
|
.error(onFailure);
|
|
} else {
|
|
httpService.post(apiVer + "/authentication?username=" + credentials.username + "&password=" + credentials.password)
|
|
.success(onSuccess)
|
|
.error(onFailure);
|
|
}
|
|
};
|
|
}
|
|
});
|
|
mifosX.ng.services.service('AuthenticationService', ['$rootScope', 'HttpService', 'SECURITY', 'localStorageService','$timeout','webStorage', mifosX.services.AuthenticationService]).run(function ($log) {
|
|
$log.info("AuthenticationService initialized");
|
|
});
|
|
}(mifosX.services || {}));
|