mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-11-15 20:24:51 +08:00
70 lines
No EOL
1.5 KiB
JavaScript
70 lines
No EOL
1.5 KiB
JavaScript
|
|
(function () {
|
|
|
|
'use strict';
|
|
|
|
var
|
|
ko = require('ko'),
|
|
moment = require('moment'),
|
|
|
|
Settings = require('Storage/Settings'),
|
|
Data = require('Storage/Admin/Data')
|
|
;
|
|
|
|
/**
|
|
* @constructor
|
|
*/
|
|
function LicensingAdminSettings()
|
|
{
|
|
this.licensing = Data.licensing;
|
|
this.licensingProcess = Data.licensingProcess;
|
|
this.licenseValid = Data.licenseValid;
|
|
this.licenseExpired = Data.licenseExpired;
|
|
this.licenseError = Data.licenseError;
|
|
this.licenseTrigger = Data.licenseTrigger;
|
|
|
|
this.adminDomain = ko.observable('');
|
|
this.subscriptionEnabled = ko.observable(!!Settings.settingsGet('SubscriptionEnabled'));
|
|
|
|
this.licenseTrigger.subscribe(function () {
|
|
if (this.subscriptionEnabled())
|
|
{
|
|
require('App/Admin').reloadLicensing(true);
|
|
}
|
|
}, this);
|
|
}
|
|
|
|
LicensingAdminSettings.prototype.onBuild = function ()
|
|
{
|
|
if (this.subscriptionEnabled())
|
|
{
|
|
require('App/Admin').reloadLicensing(false);
|
|
}
|
|
};
|
|
|
|
LicensingAdminSettings.prototype.onShow = function ()
|
|
{
|
|
this.adminDomain(Settings.settingsGet('AdminDomain'));
|
|
};
|
|
|
|
LicensingAdminSettings.prototype.showActivationForm = function ()
|
|
{
|
|
require('Knoin/Knoin').showScreenPopup(require('View/Popup/Activate'));
|
|
};
|
|
|
|
/**
|
|
* @returns {string}
|
|
*/
|
|
LicensingAdminSettings.prototype.licenseExpiredMomentValue = function ()
|
|
{
|
|
var
|
|
iTime = this.licenseExpired(),
|
|
oDate = moment.unix(iTime)
|
|
;
|
|
|
|
return iTime && 1898625600 === iTime ? 'Never' : (oDate.format('LL') + ' (' + oDate.from(moment()) + ')');
|
|
};
|
|
|
|
module.exports = LicensingAdminSettings;
|
|
|
|
}()); |