// Copyright 2021 The Casdoor Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import React from "react"; import {Button, Card, Col, Input, InputNumber, Row, Select, Switch} from "antd"; import {EyeInvisibleOutlined, EyeTwoTone} from "@ant-design/icons"; import * as LddpBackend from "./backend/LdapBackend"; import * as OrganizationBackend from "./backend/OrganizationBackend"; import * as Setting from "./Setting"; import i18next from "i18next"; const {Option} = Select; class LdapEditPage extends React.Component { constructor(props) { super(props); this.state = { ldapId: props.match.params.ldapId, organizationName: props.match.params.organizationName, ldap: null, organizations: [], }; } UNSAFE_componentWillMount() { this.getLdap(); this.getOrganizations(); } getLdap() { LddpBackend.getLdap(this.state.organizationName, this.state.ldapId) .then((res) => { if (res.status === "ok") { this.setState({ ldap: res.data, }); } else { Setting.showMessage("error", res.msg); } }); } getOrganizations() { OrganizationBackend.getOrganizations("admin") .then((res) => { this.setState({ organizations: (res.msg === undefined) ? res : [], }); }); } updateLdapField(key, value) { this.setState((prevState) => { prevState.ldap[key] = value; return prevState; }); } renderAutoSyncWarn() { if (this.state.ldap.autoSync > 0) { return ( {i18next.t("ldap:The Auto Sync option will sync all users to specify organization")} ); } } renderLdap() { return ( {i18next.t("ldap:Edit LDAP")}     } style={{marginLeft: "5px"}} type="inner"> {Setting.getLabel(i18next.t("general:Organization"), i18next.t("general:Organization - Tooltip"))} : {Setting.getLabel(i18next.t("general:ID"), i18next.t("general:ID - Tooltip"))} : {Setting.getLabel(i18next.t("ldap:Server name"), i18next.t("ldap:Server name - Tooltip"))} : { this.updateLdapField("serverName", e.target.value); }} /> {Setting.getLabel(i18next.t("ldap:Server host"), i18next.t("ldap:Server host - Tooltip"))} : { this.updateLdapField("host", e.target.value); }} /> {Setting.getLabel(i18next.t("ldap:Server port"), i18next.t("ldap:Server port - Tooltip"))} : value.replace(/\$\s?|(,*)/g, "")} value={this.state.ldap.port} onChange={value => { this.updateLdapField("port", value); }} /> {Setting.getLabel(i18next.t("ldap:Enable SSL"), i18next.t("ldap:Enable SSL - Tooltip"))} : { this.updateLdapField("enableSsl", checked); }} /> {Setting.getLabel(i18next.t("ldap:Base DN"), i18next.t("ldap:Base DN - Tooltip"))} : { this.updateLdapField("baseDn", e.target.value); }} /> {Setting.getLabel(i18next.t("ldap:Search Filter"), i18next.t("ldap:Search Filter - Tooltip"))} : { this.updateLdapField("filter", e.target.value); }} /> {Setting.getLabel(i18next.t("ldap:Filter fields"), i18next.t("ldap:Filter fields - Tooltip"))} : { this.updateLdapField("username", e.target.value); }} /> {Setting.getLabel(i18next.t("ldap:Admin Password"), i18next.t("ldap:Admin Password - Tooltip"))} : (visible ? : )} value={this.state.ldap.password} onChange={e => { this.updateLdapField("password", e.target.value); }} /> {Setting.getLabel(i18next.t("ldap:Auto Sync"), i18next.t("ldap:Auto Sync - Tooltip"))} : value.replace(/\$\s?|(,*)/g, "")} disabled={false} value={this.state.ldap.autoSync} onChange={value => { this.updateLdapField("autoSync", value); }} /> mins {this.renderAutoSyncWarn()} ); } submitLdapEdit(willExist) { LddpBackend.updateLdap(this.state.ldap) .then((res) => { if (res.status === "ok") { Setting.showMessage("success", "Update LDAP server success"); this.setState({ organizationName: this.state.ldap.owner, }); if (willExist) { this.props.history.push(`/organizations/${this.state.organizationName}`); } } else { Setting.showMessage("error", res.msg); } }) .catch(error => { Setting.showMessage("error", `Update LDAP server failed: ${error}`); }); } render() { return (
{ this.state.ldap !== null ? this.renderLdap() : null }
); } } export default LdapEditPage;