123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502 |
- import { ReactiveCache } from '/imports/reactiveCache';
- import { TAPi18n } from '/imports/i18n';
- import { ALLOWED_WAIT_SPINNERS } from '/config/const';
- BlazeComponent.extendComponent({
- onCreated() {
- this.error = new ReactiveVar('');
- this.loading = new ReactiveVar(false);
- this.forgotPasswordSetting = new ReactiveVar(true);
- this.generalSetting = new ReactiveVar(true);
- this.emailSetting = new ReactiveVar(false);
- this.accountSetting = new ReactiveVar(false);
- this.tableVisibilityModeSetting = new ReactiveVar(false);
- this.announcementSetting = new ReactiveVar(false);
- this.layoutSetting = new ReactiveVar(false);
- this.webhookSetting = new ReactiveVar(false);
- Meteor.subscribe('setting');
- Meteor.subscribe('mailServer');
- Meteor.subscribe('accountSettings');
- Meteor.subscribe('tableVisibilityModeSettings');
- Meteor.subscribe('announcements');
- Meteor.subscribe('globalwebhooks');
- },
- setError(error) {
- this.error.set(error);
- },
- setLoading(w) {
- this.loading.set(w);
- },
- checkField(selector) {
- const value = $(selector).val();
- if (!value || value.trim() === '') {
- $(selector)
- .parents('li.smtp-form')
- .addClass('has-error');
- throw Error('blank field');
- } else {
- return value;
- }
- },
- boards() {
- const ret = ReactiveCache.getBoards(
- {
- archived: false,
- 'members.userId': Meteor.userId(),
- 'members.isAdmin': true,
- },
- {
- sort: { sort: 1 /* boards default sorting */ },
- },
- );
- return ret;
- },
- toggleForgotPassword() {
- this.setLoading(true);
- const forgotPasswordClosed = ReactiveCache.getCurrentSetting().disableForgotPassword;
- Settings.update(ReactiveCache.getCurrentSetting()._id, {
- $set: { disableForgotPassword: !forgotPasswordClosed },
- });
- this.setLoading(false);
- },
- toggleRegistration() {
- this.setLoading(true);
- const registrationClosed = ReactiveCache.getCurrentSetting().disableRegistration;
- Settings.update(ReactiveCache.getCurrentSetting()._id, {
- $set: { disableRegistration: !registrationClosed },
- });
- this.setLoading(false);
- if (registrationClosed) {
- $('.invite-people').slideUp();
- } else {
- $('.invite-people').slideDown();
- }
- },
- toggleTLS() {
- $('#mail-server-tls').toggleClass('is-checked');
- },
- toggleHideLogo() {
- $('#hide-logo').toggleClass('is-checked');
- },
- toggleHideCardCounterList() {
- $('#hide-card-counter-list').toggleClass('is-checked');
- },
- toggleHideBoardMemberList() {
- $('#hide-board-member-list').toggleClass('is-checked');
- },
- toggleAccessibilityPageEnabled() {
- $('#accessibility-page-enabled').toggleClass('is-checked');
- },
- toggleDisplayAuthenticationMethod() {
- $('#display-authentication-method').toggleClass('is-checked');
- },
- switchMenu(event) {
- const target = $(event.target);
- if (!target.hasClass('active')) {
- $('.side-menu li.active').removeClass('active');
- target.parent().addClass('active');
- const targetID = target.data('id');
- this.forgotPasswordSetting.set('forgot-password-setting' === targetID);
- this.generalSetting.set('registration-setting' === targetID);
- this.emailSetting.set('email-setting' === targetID);
- this.accountSetting.set('account-setting' === targetID);
- this.announcementSetting.set('announcement-setting' === targetID);
- this.layoutSetting.set('layout-setting' === targetID);
- this.webhookSetting.set('webhook-setting' === targetID);
- this.tableVisibilityModeSetting.set('tableVisibilityMode-setting' === targetID);
- }
- },
- checkBoard(event) {
- let target = $(event.target);
- if (!target.hasClass('js-toggle-board-choose')) {
- target = target.parent();
- }
- const checkboxId = target.attr('id');
- $(`#${checkboxId} .materialCheckBox`).toggleClass('is-checked');
- $(`#${checkboxId}`).toggleClass('is-checked');
- },
- inviteThroughEmail() {
- const emails = $('#email-to-invite')
- .val()
- .toLowerCase()
- .trim()
- .split('\n')
- .join(',')
- .split(',');
- const boardsToInvite = [];
- $('.js-toggle-board-choose .materialCheckBox.is-checked').each(function() {
- boardsToInvite.push($(this).data('id'));
- });
- const validEmails = [];
- emails.forEach(email => {
- if (email && SimpleSchema.RegEx.Email.test(email.trim())) {
- validEmails.push(email.trim());
- }
- });
- if (validEmails.length) {
- this.setLoading(true);
- Meteor.call('sendInvitation', validEmails, boardsToInvite, () => {
- // if (!err) {
- // TODO - show more info to user
- // }
- this.setLoading(false);
- });
- }
- },
- saveMailServerInfo() {
- this.setLoading(true);
- $('li').removeClass('has-error');
- try {
- const host = this.checkField('#mail-server-host');
- const port = this.checkField('#mail-server-port');
- const username = $('#mail-server-username')
- .val()
- .trim();
- const password = $('#mail-server-password')
- .val()
- .trim();
- const from = this.checkField('#mail-server-from');
- const tls = $('#mail-server-tls.is-checked').length > 0;
- Settings.update(ReactiveCache.getCurrentSetting()._id, {
- $set: {
- 'mailServer.host': host,
- 'mailServer.port': port,
- 'mailServer.username': username,
- 'mailServer.password': password,
- 'mailServer.enableTLS': tls,
- 'mailServer.from': from,
- },
- });
- } catch (e) {
- return;
- } finally {
- this.setLoading(false);
- }
- },
- saveLayout() {
- this.setLoading(true);
- $('li').removeClass('has-error');
- const productName = $('#product-name')
- .val()
- .trim();
- const customLoginLogoImageUrl = $('#custom-login-logo-image-url')
- .val()
- .trim();
- const customLoginLogoLinkUrl = $('#custom-login-logo-link-url')
- .val()
- .trim();
- const customHelpLinkUrl = $('#custom-help-link-url')
- .val()
- .trim();
- const textBelowCustomLoginLogo = $('#text-below-custom-login-logo')
- .val()
- .trim();
- const automaticLinkedUrlSchemes = $('#automatic-linked-url-schemes')
- .val()
- .trim();
- const customTopLeftCornerLogoImageUrl = $(
- '#custom-top-left-corner-logo-image-url',
- )
- .val()
- .trim();
- const customTopLeftCornerLogoLinkUrl = $(
- '#custom-top-left-corner-logo-link-url',
- )
- .val()
- .trim();
- const customTopLeftCornerLogoHeight = $(
- '#custom-top-left-corner-logo-height',
- )
- .val()
- .trim();
- const oidcBtnText = $(
- '#oidcBtnTextvalue',
- )
- .val()
- .trim();
- const mailDomainName = $(
- '#mailDomainNamevalue',
- )
- .val()
- .trim();
- const legalNotice = $(
- '#legalNoticevalue',
- )
- .val()
- .trim();
- const hideLogoChange = $('input[name=hideLogo]:checked').val() === 'true';
- const hideCardCounterListChange = $('input[name=hideCardCounterList]:checked').val() === 'true';
- const hideBoardMemberListChange = $('input[name=hideBoardMemberList]:checked').val() === 'true';
- const displayAuthenticationMethod =
- $('input[name=displayAuthenticationMethod]:checked').val() === 'true';
- const defaultAuthenticationMethod = $('#defaultAuthenticationMethod').val();
- const accessibilityPageEnabled = $('input[name=accessibilityPageEnabled]:checked').val() === 'true';
- const accessibilityTitle = $('#accessibility-title')
- .val()
- .trim();
- const accessibilityContent = $('#accessibility-content')
- .val()
- .trim();
- const spinnerName = $('#spinnerName').val();
- try {
- Settings.update(ReactiveCache.getCurrentSetting()._id, {
- $set: {
- productName,
- hideLogo: hideLogoChange,
- hideCardCounterList: hideCardCounterListChange,
- hideBoardMemberList: hideBoardMemberListChange,
- customLoginLogoImageUrl,
- customLoginLogoLinkUrl,
- customHelpLinkUrl,
- textBelowCustomLoginLogo,
- customTopLeftCornerLogoImageUrl,
- customTopLeftCornerLogoLinkUrl,
- customTopLeftCornerLogoHeight,
- displayAuthenticationMethod,
- defaultAuthenticationMethod,
- automaticLinkedUrlSchemes,
- spinnerName,
- oidcBtnText,
- mailDomainName,
- legalNotice,
- accessibilityPageEnabled,
- accessibilityTitle,
- accessibilityContent,
- },
- });
- } catch (e) {
- return;
- } finally {
- this.setLoading(false);
- }
- DocHead.setTitle(productName);
- },
- sendSMTPTestEmail() {
- Meteor.call('sendSMTPTestEmail', (err, ret) => {
- if (!err && ret) {
- const message = `${TAPi18n.__(ret.message)}: ${ret.email}`;
- alert(message);
- } else {
- const reason = err.reason || '';
- const message = `${TAPi18n.__(err.error)}\n${reason}`;
- alert(message);
- }
- });
- },
- events() {
- return [
- {
- 'click a.js-toggle-forgot-password': this.toggleForgotPassword,
- 'click a.js-toggle-registration': this.toggleRegistration,
- 'click a.js-toggle-tls': this.toggleTLS,
- 'click a.js-setting-menu': this.switchMenu,
- 'click a.js-toggle-board-choose': this.checkBoard,
- 'click button.js-email-invite': this.inviteThroughEmail,
- 'click button.js-save': this.saveMailServerInfo,
- 'click button.js-send-smtp-test-email': this.sendSMTPTestEmail,
- 'click a.js-toggle-hide-logo': this.toggleHideLogo,
- 'click a.js-toggle-hide-card-counter-list': this.toggleHideCardCounterList,
- 'click a.js-toggle-hide-board-member-list': this.toggleHideBoardMemberList,
- 'click a.js-toggle-accessibility-page-enabled': this.toggleAccessibilityPageEnabled,
- 'click button.js-save-layout': this.saveLayout,
- 'click a.js-toggle-display-authentication-method': this
- .toggleDisplayAuthenticationMethod,
- },
- ];
- },
- }).register('setting');
- BlazeComponent.extendComponent({
- saveAccountsChange() {
- const allowEmailChange =
- $('input[name=allowEmailChange]:checked').val() === 'true';
- const allowUserNameChange =
- $('input[name=allowUserNameChange]:checked').val() === 'true';
- const allowUserDelete =
- $('input[name=allowUserDelete]:checked').val() === 'true';
- AccountSettings.update('accounts-allowEmailChange', {
- $set: { booleanValue: allowEmailChange },
- });
- AccountSettings.update('accounts-allowUserNameChange', {
- $set: { booleanValue: allowUserNameChange },
- });
- AccountSettings.update('accounts-allowUserDelete', {
- $set: { booleanValue: allowUserDelete },
- });
- },
- allowEmailChange() {
- return AccountSettings.findOne('accounts-allowEmailChange').booleanValue;
- },
- allowUserNameChange() {
- return AccountSettings.findOne('accounts-allowUserNameChange').booleanValue;
- },
- allowUserDelete() {
- return AccountSettings.findOne('accounts-allowUserDelete').booleanValue;
- },
- allBoardsHideActivities() {
- Meteor.call('setAllBoardsHideActivities', (err, ret) => {
- if (!err && ret) {
- if (ret === true) {
- const message = `${TAPi18n.__(
- 'now-activities-of-all-boards-are-hidden',
- )}`;
- alert(message);
- }
- } else {
- const reason = err.reason || '';
- const message = `${TAPi18n.__(err.error)}\n${reason}`;
- alert(message);
- }
- });
- },
- events() {
- return [
- {
- 'click button.js-accounts-save': this.saveAccountsChange,
- },
- {
- 'click button.js-all-boards-hide-activities': this.allBoardsHideActivities,
- },
- ];
- },
- }).register('accountSettings');
- BlazeComponent.extendComponent({
- saveTableVisibilityChange() {
- const allowPrivateOnly =
- $('input[name=allowPrivateOnly]:checked').val() === 'true';
- TableVisibilityModeSettings.update('tableVisibilityMode-allowPrivateOnly', {
- $set: { booleanValue: allowPrivateOnly },
- });
- },
- allowPrivateOnly() {
- return TableVisibilityModeSettings.findOne('tableVisibilityMode-allowPrivateOnly').booleanValue;
- },
- allBoardsHideActivities() {
- Meteor.call('setAllBoardsHideActivities', (err, ret) => {
- if (!err && ret) {
- if (ret === true) {
- const message = `${TAPi18n.__(
- 'now-activities-of-all-boards-are-hidden',
- )}`;
- alert(message);
- }
- } else {
- const reason = err.reason || '';
- const message = `${TAPi18n.__(err.error)}\n${reason}`;
- alert(message);
- }
- });
- },
- events() {
- return [
- {
- 'click button.js-tableVisibilityMode-save': this.saveTableVisibilityChange,
- },
- {
- 'click button.js-all-boards-hide-activities': this.allBoardsHideActivities,
- },
- ];
- },
- }).register('tableVisibilityModeSettings');
- BlazeComponent.extendComponent({
- onCreated() {
- this.loading = new ReactiveVar(false);
- },
- setLoading(w) {
- this.loading.set(w);
- },
- currentAnnouncements() {
- return Announcements.findOne();
- },
- saveMessage() {
- const message = $('#admin-announcement')
- .val()
- .trim();
- Announcements.update(Announcements.findOne()._id, {
- $set: { body: message },
- });
- },
- toggleActive() {
- this.setLoading(true);
- const announcements = this.currentAnnouncements();
- const isActive = announcements.enabled;
- Announcements.update(announcements._id, {
- $set: { enabled: !isActive },
- });
- this.setLoading(false);
- if (isActive) {
- $('.admin-announcement').slideUp();
- } else {
- $('.admin-announcement').slideDown();
- }
- },
- events() {
- return [
- {
- 'click a.js-toggle-activemessage': this.toggleActive,
- 'click button.js-announcement-save': this.saveMessage,
- },
- ];
- },
- }).register('announcementSettings');
- Template.selectAuthenticationMethod.onCreated(function() {
- this.authenticationMethods = new ReactiveVar([]);
- Meteor.call('getAuthenticationsEnabled', (_, result) => {
- if (result) {
- // TODO : add a management of different languages
- // (ex {value: ldap, text: TAPi18n.__('ldap', {}, T9n.getLanguage() || 'en')})
- this.authenticationMethods.set([
- { value: 'password' },
- // Gets only the authentication methods availables
- ...Object.entries(result)
- .filter(e => e[1])
- .map(e => ({ value: e[0] })),
- ]);
- }
- });
- });
- Template.selectAuthenticationMethod.helpers({
- authentications() {
- return Template.instance().authenticationMethods.get();
- },
- isSelected(match) {
- return Template.instance().data.authenticationMethod === match;
- },
- });
- Template.selectSpinnerName.helpers({
- spinners() {
- return ALLOWED_WAIT_SPINNERS;
- },
- isSelected(match) {
- return Template.instance().data.spinnerName === match;
- },
- });
|