mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-15 04:21:49 -05:00
65 lines
1.9 KiB
JavaScript
65 lines
1.9 KiB
JavaScript
/*************************************************
|
|
* Copyright (c) 2016 Ansible, Inc.
|
|
*
|
|
* All Rights Reserved
|
|
*************************************************/
|
|
|
|
export default
|
|
['$state', '$rootScope', 'Rest', 'GetBasePath', 'ProcessErrors', function($state, $rootScope, Rest, GetBasePath, ProcessErrors){
|
|
return {
|
|
get: function() {
|
|
var defaultUrl = GetBasePath('config');
|
|
Rest.setUrl(defaultUrl);
|
|
return Rest.get()
|
|
.success(function(res){
|
|
return res;
|
|
})
|
|
.error(function(res, status){
|
|
ProcessErrors($rootScope, res, status, null, {hdr: 'Error!',
|
|
msg: 'Call to '+ defaultUrl + ' failed. Return status: '+ status});
|
|
});
|
|
},
|
|
post: function(license, eula){
|
|
var defaultUrl = GetBasePath('config');
|
|
Rest.setUrl(defaultUrl);
|
|
var data = license;
|
|
data.eula_accepted = eula;
|
|
return Rest.post(JSON.stringify(data))
|
|
.success(function(res){
|
|
return res;
|
|
})
|
|
.error(function(res, status){
|
|
ProcessErrors($rootScope, res, status, null, {hdr: 'Error!',
|
|
msg: 'Call to '+ defaultUrl + ' failed. Return status: '+ status});
|
|
});
|
|
},
|
|
// Checks current license validity
|
|
// Intended to for runtime or pre-state checks
|
|
// Returns false if invalid
|
|
valid: function(license) {
|
|
if (!license.valid_key){
|
|
return false;
|
|
}
|
|
else if (license.free_instances <= 0){
|
|
return false;
|
|
}
|
|
// notify if less than 15 days remaining
|
|
else if (license.time_remaining / 1000 / 60 / 60 / 24 > 15){
|
|
return false;
|
|
}
|
|
return true;
|
|
},
|
|
notify: function(){
|
|
var self = this;
|
|
this.get()
|
|
.then(function(res){
|
|
if(self.valid(res.data.license_info) === false) {
|
|
$state.go('license');
|
|
}
|
|
});
|
|
}
|
|
|
|
};
|
|
}
|
|
];
|