snappymail/dev/View/Popup/Domain.js

415 lines
10 KiB
JavaScript
Raw Normal View History

import ko from 'ko';
2016-06-30 08:02:45 +08:00
2019-07-05 03:19:24 +08:00
import { StorageResultType, ServerSecure, Ports, Notification } from 'Common/Enums';
import { IMAP_DEFAULT_PORT, SIEVE_DEFAULT_PORT, SMTP_DEFAULT_PORT } from 'Common/Consts';
import { pInt, pString } from 'Common/Utils';
2019-07-05 03:19:24 +08:00
import { i18n } from 'Common/Translator';
2016-06-30 08:02:45 +08:00
import CapaAdminStore from 'Stores/Admin/Capa';
2016-06-30 08:02:45 +08:00
import Remote from 'Remote/Admin/Fetch';
2016-06-30 08:02:45 +08:00
2019-07-05 03:19:24 +08:00
import { popup, command } from 'Knoin/Knoin';
import { AbstractViewNext } from 'Knoin/AbstractViewNext';
2016-06-30 08:02:45 +08:00
2016-09-10 06:38:16 +08:00
@popup({
name: 'View/Popup/Domain',
templateID: 'PopupsDomain'
})
2019-07-05 03:19:24 +08:00
class DomainPopupView extends AbstractViewNext {
constructor() {
super();
this.edit = ko.observable(false);
this.saving = ko.observable(false);
this.savingError = ko.observable('');
this.page = ko.observable('main');
this.sieveSettings = ko.observable(false);
this.testing = ko.observable(false);
this.testingDone = ko.observable(false);
this.testingImapError = ko.observable(false);
this.testingSieveError = ko.observable(false);
this.testingSmtpError = ko.observable(false);
this.testingImapErrorDesc = ko.observable('');
this.testingSieveErrorDesc = ko.observable('');
this.testingSmtpErrorDesc = ko.observable('');
this.testingImapError.subscribe((value) => {
2019-07-05 03:19:24 +08:00
if (!value) {
this.testingImapErrorDesc('');
2016-06-30 08:02:45 +08:00
}
});
this.testingSieveError.subscribe((value) => {
2019-07-05 03:19:24 +08:00
if (!value) {
this.testingSieveErrorDesc('');
}
});
2014-08-21 23:08:34 +08:00
this.testingSmtpError.subscribe((value) => {
2019-07-05 03:19:24 +08:00
if (!value) {
this.testingSmtpErrorDesc('');
}
});
this.imapServerFocus = ko.observable(false);
this.sieveServerFocus = ko.observable(false);
this.smtpServerFocus = ko.observable(false);
this.name = ko.observable('');
this.imapServer = ko.observable('');
this.imapPort = ko.observable('' + IMAP_DEFAULT_PORT);
this.imapSecure = ko.observable(ServerSecure.None);
this.imapShortLogin = ko.observable(false);
this.useSieve = ko.observable(false);
this.sieveAllowRaw = ko.observable(false);
this.sieveServer = ko.observable('');
this.sievePort = ko.observable('' + SIEVE_DEFAULT_PORT);
this.sieveSecure = ko.observable(ServerSecure.None);
this.smtpServer = ko.observable('');
this.smtpPort = ko.observable('' + SMTP_DEFAULT_PORT);
this.smtpSecure = ko.observable(ServerSecure.None);
this.smtpShortLogin = ko.observable(false);
this.smtpAuth = ko.observable(true);
this.smtpPhpMail = ko.observable(false);
this.whiteList = ko.observable('');
this.aliasName = ko.observable('');
this.enableSmartPorts = ko.observable(false);
this.allowSieve = ko.computed(() => CapaAdminStore.filters() && CapaAdminStore.sieve());
this.headerText = ko.computed(() => {
2019-07-05 03:19:24 +08:00
const name = this.name(),
aliasName = this.aliasName();
let result = '';
2019-07-05 03:19:24 +08:00
if (this.edit()) {
result = i18n('POPUPS_DOMAIN/TITLE_EDIT_DOMAIN', { 'NAME': name });
if (aliasName) {
result += ' ← ' + aliasName;
}
2019-07-05 03:19:24 +08:00
} else {
result = name
? i18n('POPUPS_DOMAIN/TITLE_ADD_DOMAIN_WITH_NAME', { 'NAME': name })
: i18n('POPUPS_DOMAIN/TITLE_ADD_DOMAIN');
}
2014-08-21 23:08:34 +08:00
return result;
});
this.domainDesc = ko.computed(() => {
const name = this.name();
2019-07-05 03:19:24 +08:00
return !this.edit() && name ? i18n('POPUPS_DOMAIN/NEW_DOMAIN_DESC', { 'NAME': '*@' + name }) : '';
});
this.domainIsComputed = ko.computed(() => {
2019-07-05 03:19:24 +08:00
const usePhpMail = this.smtpPhpMail(),
allowSieve = this.allowSieve(),
useSieve = this.useSieve();
2019-07-05 03:19:24 +08:00
return (
this.name() &&
this.imapServer() &&
this.imapPort() &&
(allowSieve && useSieve ? this.sieveServer() && this.sievePort() : true) &&
((this.smtpServer() && this.smtpPort()) || usePhpMail)
2019-07-05 03:19:24 +08:00
);
});
this.canBeTested = ko.computed(() => !this.testing() && this.domainIsComputed());
this.canBeSaved = ko.computed(() => !this.saving() && this.domainIsComputed());
this.page.subscribe(() => {
this.sieveSettings(false);
});
// smart form improvements
this.imapServerFocus.subscribe((value) => {
if (value && this.name() && !this.imapServer()) {
this.imapServer(this.name().replace(/[.]?[*][.]?/g, ''));
}
});
2016-06-30 08:02:45 +08:00
this.sieveServerFocus.subscribe((value) => {
if (value && this.imapServer() && !this.sieveServer()) {
this.sieveServer(this.imapServer());
}
});
2016-06-30 08:02:45 +08:00
this.smtpServerFocus.subscribe((value) => {
if (value && this.imapServer() && !this.smtpServer()) {
2019-07-05 03:19:24 +08:00
this.smtpServer(this.imapServer().replace(/imap/gi, 'smtp'));
}
});
2016-06-30 08:02:45 +08:00
this.imapSecure.subscribe((value) => {
2019-07-05 03:19:24 +08:00
if (this.enableSmartPorts()) {
const port = pInt(this.imapPort());
2019-07-05 03:19:24 +08:00
switch (pString(value)) {
case '0':
2017-07-11 20:40:31 +08:00
case '2':
2019-07-05 03:19:24 +08:00
if (Ports.ImapSsl === port) {
this.imapPort(pString(Ports.Imap));
}
break;
case '1':
2019-07-05 03:19:24 +08:00
if (Ports.Imap === port) {
this.imapPort(pString(Ports.ImapSsl));
}
break;
// no default
}
}
});
2016-06-30 08:02:45 +08:00
this.smtpSecure.subscribe((value) => {
2019-07-05 03:19:24 +08:00
if (this.enableSmartPorts()) {
const port = pInt(this.smtpPort());
2019-07-05 03:19:24 +08:00
switch (pString(value)) {
case '0':
2019-07-05 03:19:24 +08:00
if (Ports.SmtpSsl === port || Ports.SmtpStartTls === port) {
this.smtpPort(pString(Ports.Smtp));
}
break;
case '1':
2019-07-05 03:19:24 +08:00
if (Ports.Smtp === port || Ports.SmtpStartTls === port) {
this.smtpPort(pString(Ports.SmtpSsl));
}
break;
case '2':
2019-07-05 03:19:24 +08:00
if (Ports.Smtp === port || Ports.SmtpSsl === port) {
this.smtpPort(pString(Ports.SmtpStartTls));
}
break;
// no default
}
}
});
}
2015-01-29 00:27:23 +08:00
2016-09-10 06:38:16 +08:00
@command((self) => self.canBeSaved())
createOrAddCommand() {
this.saving(true);
Remote.createOrUpdateDomain(
this.onDomainCreateOrSaveResponse.bind(this),
2016-09-10 06:38:16 +08:00
!this.edit(),
this.name(),
this.imapServer(),
pInt(this.imapPort()),
this.imapSecure(),
this.imapShortLogin(),
this.useSieve(),
this.sieveAllowRaw(),
this.sieveServer(),
pInt(this.sievePort()),
this.sieveSecure(),
this.smtpServer(),
pInt(this.smtpPort()),
this.smtpSecure(),
this.smtpShortLogin(),
this.smtpAuth(),
this.smtpPhpMail(),
this.whiteList()
);
}
@command((self) => self.canBeTested())
testConnectionCommand() {
this.page('main');
this.testingDone(false);
this.testingImapError(false);
this.testingSieveError(false);
this.testingSmtpError(false);
this.testing(true);
Remote.testConnectionForDomain(
this.onTestConnectionResponse.bind(this),
2016-09-10 06:38:16 +08:00
this.name(),
this.imapServer(),
pInt(this.imapPort()),
this.imapSecure(),
this.useSieve(),
this.sieveServer(),
pInt(this.sievePort()),
this.sieveSecure(),
this.smtpServer(),
pInt(this.smtpPort()),
this.smtpSecure(),
this.smtpAuth(),
this.smtpPhpMail()
);
}
@command()
whiteListCommand() {
this.page('white-list');
}
@command()
backCommand() {
this.page('main');
}
@command()
sieveCommand() {
this.sieveSettings(!this.sieveSettings());
this.clearTesting();
}
onTestConnectionResponse(sResult, oData) {
this.testing(false);
2019-07-05 03:19:24 +08:00
if (StorageResultType.Success === sResult && oData.Result) {
let bImap = false,
bSieve = false;
2014-08-21 23:08:34 +08:00
this.testingDone(true);
this.testingImapError(true !== oData.Result.Imap);
this.testingSieveError(true !== oData.Result.Sieve);
this.testingSmtpError(true !== oData.Result.Smtp);
2014-08-21 23:08:34 +08:00
2019-07-05 03:19:24 +08:00
if (this.testingImapError() && oData.Result.Imap) {
bImap = true;
this.testingImapErrorDesc('');
this.testingImapErrorDesc(oData.Result.Imap);
2015-01-29 00:27:23 +08:00
}
2019-07-05 03:19:24 +08:00
if (this.testingSieveError() && oData.Result.Sieve) {
bSieve = true;
this.testingSieveErrorDesc('');
this.testingSieveErrorDesc(oData.Result.Sieve);
2015-04-10 06:05:49 +08:00
}
2016-06-30 08:02:45 +08:00
2019-07-05 03:19:24 +08:00
if (this.testingSmtpError() && oData.Result.Smtp) {
this.testingSmtpErrorDesc('');
this.testingSmtpErrorDesc(oData.Result.Smtp);
}
2016-06-30 08:02:45 +08:00
2019-07-05 03:19:24 +08:00
if (this.sieveSettings()) {
if (!bSieve && bImap) {
this.sieveSettings(false);
}
2019-07-05 03:19:24 +08:00
} else if (bSieve && !bImap) {
2016-06-30 08:02:45 +08:00
this.sieveSettings(true);
}
2019-07-05 03:19:24 +08:00
} else {
this.testingImapError(true);
this.testingSieveError(true);
this.testingSmtpError(true);
this.sieveSettings(false);
}
2016-06-30 08:02:45 +08:00
}
2014-11-20 05:32:20 +08:00
onDomainCreateOrSaveResponse(sResult, oData) {
this.saving(false);
2019-07-05 03:19:24 +08:00
if (StorageResultType.Success === sResult && oData) {
if (oData.Result) {
2020-09-15 15:29:25 +08:00
rl.app.reloadDomainList();
this.closeCommand();
2019-07-05 03:19:24 +08:00
} else if (Notification.DomainAlreadyExists === oData.ErrorCode) {
this.savingError(i18n('ERRORS/DOMAIN_ALREADY_EXISTS'));
}
2019-07-05 03:19:24 +08:00
} else {
this.savingError(i18n('ERRORS/UNKNOWN_ERROR'));
2016-06-30 08:02:45 +08:00
}
}
clearTesting() {
this.testing(false);
this.testingDone(false);
this.testingImapError(false);
this.testingSieveError(false);
this.testingSmtpError(false);
}
onHide() {
this.page('main');
this.sieveSettings(false);
}
2016-06-30 08:02:45 +08:00
onShow(oDomain) {
this.saving(false);
this.page('main');
this.sieveSettings(false);
2016-06-30 08:02:45 +08:00
this.clearTesting();
2016-06-30 08:02:45 +08:00
this.clearForm();
2019-07-05 03:19:24 +08:00
if (oDomain) {
this.enableSmartPorts(false);
this.edit(true);
this.name(oDomain.Name.trim());
this.imapServer(oDomain.IncHost.trim());
this.imapPort('' + pInt(oDomain.IncPort));
this.imapSecure(oDomain.IncSecure.trim());
this.imapShortLogin(!!oDomain.IncShortLogin);
this.useSieve(!!oDomain.UseSieve);
this.sieveAllowRaw(!!oDomain.SieveAllowRaw);
this.sieveServer(oDomain.SieveHost.trim());
this.sievePort('' + pInt(oDomain.SievePort));
this.sieveSecure(oDomain.SieveSecure.trim());
this.smtpServer(oDomain.OutHost.trim());
this.smtpPort('' + pInt(oDomain.OutPort));
this.smtpSecure(oDomain.OutSecure.trim());
this.smtpShortLogin(!!oDomain.OutShortLogin);
this.smtpAuth(!!oDomain.OutAuth);
this.smtpPhpMail(!!oDomain.OutUsePhpMail);
this.whiteList(oDomain.WhiteList.trim());
this.aliasName(oDomain.AliasName.trim());
this.enableSmartPorts(true);
}
2016-06-30 08:02:45 +08:00
}
2014-08-21 23:08:34 +08:00
clearForm() {
this.edit(false);
2014-11-20 05:32:20 +08:00
this.page('main');
this.sieveSettings(false);
this.enableSmartPorts(false);
this.savingError('');
this.name('');
2014-11-20 05:32:20 +08:00
this.imapServer('');
this.imapPort('' + IMAP_DEFAULT_PORT);
this.imapSecure(ServerSecure.None);
this.imapShortLogin(false);
2014-11-20 05:32:20 +08:00
this.useSieve(false);
this.sieveAllowRaw(false);
this.sieveServer('');
this.sievePort('' + SIEVE_DEFAULT_PORT);
this.sieveSecure(ServerSecure.None);
2014-10-14 06:39:23 +08:00
this.smtpServer('');
this.smtpPort('' + SMTP_DEFAULT_PORT);
this.smtpSecure(ServerSecure.None);
this.smtpShortLogin(false);
this.smtpAuth(true);
this.smtpPhpMail(false);
this.whiteList('');
this.aliasName('');
this.enableSmartPorts(true);
}
}
2019-07-05 03:19:24 +08:00
export { DomainPopupView, DomainPopupView as default };