|
|
|
Ext.define('Rambox.view.preferences.PreferencesController', {
|
|
|
|
extend: 'Ext.app.ViewController'
|
|
|
|
,alias: 'controller.preferences-preferences'
|
|
|
|
|
|
|
|
,cancel: function( btn ) {
|
|
|
|
var me = this;
|
|
|
|
|
|
|
|
me.getView().close();
|
|
|
|
}
|
|
|
|
|
|
|
|
,save: function( btn ) {
|
|
|
|
var me = this;
|
|
|
|
|
|
|
|
var values = me.getView().down('form').getForm().getFieldValues();
|
|
|
|
|
|
|
|
// master password activated and only one of the fields "password" or "password confirmation" filled
|
|
|
|
if (values.master_password === true &&
|
|
|
|
(Ext.isEmpty(values.master_password1) === false && Ext.isEmpty(values.master_password2) === true ||
|
|
|
|
Ext.isEmpty(values.master_password1) === true && Ext.isEmpty(values.master_password2) === false)) return;
|
|
|
|
|
|
|
|
// password and confirmation don't match
|
|
|
|
if (values.master_password === true && (values.master_password1 !== values.master_password2)) return;
|
|
|
|
|
|
|
|
// master password activated and changed
|
|
|
|
if (values.master_password === true &&
|
|
|
|
Ext.isEmpty(values.master_password1) === false &&
|
|
|
|
Ext.isEmpty(values.master_password2) === false) {
|
|
|
|
|
|
|
|
values.master_password = Rambox.util.MD5.encypt(values.master_password1);
|
|
|
|
delete values.master_password1;
|
|
|
|
delete values.master_password2;
|
|
|
|
}
|
|
|
|
|
|
|
|
// prevent overwriting password when unchanged
|
|
|
|
if (values.master_password === true) {
|
|
|
|
delete values.master_password;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Proxy
|
|
|
|
if ( values.proxy && (Ext.isEmpty(values.proxyHost) || Ext.isEmpty(values.proxyPort)) ) return;
|
|
|
|
|
|
|
|
// Display behaviour
|
|
|
|
if ( values.window_display_behavior === 'show_taskbar' && values.window_close_behavior === 'keep_in_tray' ) {
|
|
|
|
Ext.Msg.alert('Action required', 'You need to change the window closing behaviour because "Keep in tray" is not possible.');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// User Agent
|
|
|
|
if ( values.user_agent !== ipc.sendSync('getConfig').user_agent ) {
|
|
|
|
Ext.Msg.confirm('Action required', 'To change the user agent of Rambox, you need to reload the app. Do you want to do it now?', function(btnId) {
|
|
|
|
if ( btnId === 'yes' ) ipc.send('relaunchApp');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Locale
|
|
|
|
if ( values.locale !== ipc.sendSync('getConfig').locale ) {
|
|
|
|
localStorage.setItem('locale', values.locale);
|
|
|
|
localStorage.setItem('locale-auth0', me.getView().down('form').down('combo[name="locale"]').getSelection().get('auth0'));
|
|
|
|
Ext.Msg.confirm('Action required', 'To change the language of Rambox, you need to reload the app. Do you want to do it now?', function(btnId) {
|
|
|
|
if ( btnId === 'yes' ) ipc.send('relaunchApp');
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
ipc.send('setConfig', values);
|
|
|
|
me.getView().close();
|
|
|
|
}
|
|
|
|
});
|