2022-02-13 23:39:27 +08:00
|
|
|
// Copyright 2021 The Casdoor Authors. All Rights Reserved.
|
2021-02-13 13:30:51 +08:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
2021-02-13 12:15:19 +08:00
|
|
|
import React from "react";
|
2021-11-06 15:52:03 +08:00
|
|
|
import {Button, Card, Col, Input, Row, Select, Switch} from 'antd';
|
2021-02-13 12:15:19 +08:00
|
|
|
import * as OrganizationBackend from "./backend/OrganizationBackend";
|
2021-07-17 14:13:00 +08:00
|
|
|
import * as LdapBackend from "./backend/LdapBackend";
|
2021-02-13 12:15:19 +08:00
|
|
|
import * as Setting from "./Setting";
|
2021-02-19 23:23:59 +08:00
|
|
|
import i18next from "i18next";
|
2021-04-29 20:27:07 +08:00
|
|
|
import {LinkOutlined} from "@ant-design/icons";
|
2021-07-17 14:13:00 +08:00
|
|
|
import LdapTable from "./LdapTable";
|
2021-02-13 12:15:19 +08:00
|
|
|
|
2021-05-05 23:32:21 +08:00
|
|
|
const { Option } = Select;
|
|
|
|
|
2021-02-13 12:15:19 +08:00
|
|
|
class OrganizationEditPage extends React.Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
|
|
|
classes: props,
|
|
|
|
organizationName: props.match.params.organizationName,
|
|
|
|
organization: null,
|
2021-07-17 14:13:00 +08:00
|
|
|
ldaps: null,
|
2022-02-25 18:16:02 +08:00
|
|
|
mode: props.location.mode !== undefined ? props.location.mode : "edit",
|
2021-02-13 12:15:19 +08:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2021-03-27 11:38:15 +08:00
|
|
|
UNSAFE_componentWillMount() {
|
2021-02-13 12:15:19 +08:00
|
|
|
this.getOrganization();
|
2021-07-17 14:13:00 +08:00
|
|
|
this.getLdaps();
|
2021-02-13 12:15:19 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
getOrganization() {
|
|
|
|
OrganizationBackend.getOrganization("admin", this.state.organizationName)
|
|
|
|
.then((organization) => {
|
|
|
|
this.setState({
|
|
|
|
organization: organization,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-07-17 14:13:00 +08:00
|
|
|
getLdaps() {
|
|
|
|
LdapBackend.getLdaps(this.state.organizationName)
|
|
|
|
.then(res => {
|
|
|
|
let resdata = []
|
|
|
|
if (res.status === "ok") {
|
|
|
|
if (res.data !== null) {
|
|
|
|
resdata = res.data;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
this.setState({
|
|
|
|
ldaps: resdata
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2021-02-13 12:15:19 +08:00
|
|
|
parseOrganizationField(key, value) {
|
|
|
|
// if ([].includes(key)) {
|
|
|
|
// value = Setting.myParseInt(value);
|
|
|
|
// }
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
|
|
|
updateOrganizationField(key, value) {
|
|
|
|
value = this.parseOrganizationField(key, value);
|
|
|
|
|
|
|
|
let organization = this.state.organization;
|
|
|
|
organization[key] = value;
|
|
|
|
this.setState({
|
|
|
|
organization: organization,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
renderOrganization() {
|
|
|
|
return (
|
|
|
|
<Card size="small" title={
|
|
|
|
<div>
|
2022-02-25 18:16:02 +08:00
|
|
|
{this.state.mode === "add" ? i18next.t("organization:New Organization") : i18next.t("organization:Edit Organization")}
|
2021-12-12 17:12:15 +08:00
|
|
|
<Button onClick={() => this.submitOrganizationEdit(false)}>{i18next.t("general:Save")}</Button>
|
|
|
|
<Button style={{marginLeft: '20px'}} type="primary" onClick={() => this.submitOrganizationEdit(true)}>{i18next.t("general:Save & Exit")}</Button>
|
2022-02-25 18:16:02 +08:00
|
|
|
{this.state.mode === "add" ? <Button style={{marginLeft: '20px'}} onClick={() => this.deleteOrganization()}>{i18next.t("general:Cancel")}</Button> : null}
|
2021-02-13 12:15:19 +08:00
|
|
|
</div>
|
2021-07-25 23:13:34 +08:00
|
|
|
} style={(Setting.isMobile())? {margin: '5px'}:{}} type="inner">
|
2021-02-13 12:15:19 +08:00
|
|
|
<Row style={{marginTop: '10px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-06-30 00:58:25 +08:00
|
|
|
{Setting.getLabel(i18next.t("general:Name"), i18next.t("general:Name - Tooltip"))} :
|
2021-02-13 12:15:19 +08:00
|
|
|
</Col>
|
|
|
|
<Col span={22} >
|
2021-12-23 00:40:07 +08:00
|
|
|
<Input value={this.state.organization.name} disabled={this.state.organization.name === "built-in"} onChange={e => {
|
2021-02-13 12:15:19 +08:00
|
|
|
this.updateOrganizationField('name', e.target.value);
|
|
|
|
}} />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<Row style={{marginTop: '20px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-06-30 00:58:25 +08:00
|
|
|
{Setting.getLabel(i18next.t("general:Display name"), i18next.t("general:Display name - Tooltip"))} :
|
2021-02-13 12:15:19 +08:00
|
|
|
</Col>
|
|
|
|
<Col span={22} >
|
|
|
|
<Input value={this.state.organization.displayName} onChange={e => {
|
|
|
|
this.updateOrganizationField('displayName', e.target.value);
|
|
|
|
}} />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2021-04-29 20:27:07 +08:00
|
|
|
<Row style={{marginTop: '20px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-06-30 00:58:25 +08:00
|
|
|
{Setting.getLabel("Favicon", i18next.t("general:Favicon - Tooltip"))} :
|
2021-04-29 20:27:07 +08:00
|
|
|
</Col>
|
|
|
|
<Col span={22} >
|
|
|
|
<Row style={{marginTop: '20px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-04-29 20:27:07 +08:00
|
|
|
URL:
|
|
|
|
</Col>
|
|
|
|
<Col span={23} >
|
|
|
|
<Input prefix={<LinkOutlined/>} value={this.state.organization.favicon} onChange={e => {
|
|
|
|
this.updateOrganizationField('favicon', e.target.value);
|
|
|
|
}} />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<Row style={{marginTop: '20px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-04-29 20:27:07 +08:00
|
|
|
{i18next.t("general:Preview")}:
|
|
|
|
</Col>
|
|
|
|
<Col span={23} >
|
|
|
|
<a target="_blank" rel="noreferrer" href={this.state.organization.favicon}>
|
|
|
|
<img src={this.state.organization.favicon} alt={this.state.organization.favicon} height={90} style={{marginBottom: '20px'}}/>
|
|
|
|
</a>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2021-02-13 12:15:19 +08:00
|
|
|
<Row style={{marginTop: '20px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-06-30 00:58:25 +08:00
|
|
|
{Setting.getLabel(i18next.t("organization:Website URL"), i18next.t("organization:Website URL - Tooltip"))} :
|
2021-02-13 12:15:19 +08:00
|
|
|
</Col>
|
|
|
|
<Col span={22} >
|
2021-05-14 23:45:20 +08:00
|
|
|
<Input prefix={<LinkOutlined/>} value={this.state.organization.websiteUrl} onChange={e => {
|
2021-02-13 12:15:19 +08:00
|
|
|
this.updateOrganizationField('websiteUrl', e.target.value);
|
|
|
|
}} />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2021-05-05 23:32:21 +08:00
|
|
|
<Row style={{marginTop: '20px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-06-30 00:58:25 +08:00
|
|
|
{Setting.getLabel(i18next.t("general:Password type"), i18next.t("general:Password type - Tooltip"))} :
|
2021-05-05 23:32:21 +08:00
|
|
|
</Col>
|
|
|
|
<Col span={22} >
|
|
|
|
<Select virtual={false} style={{width: '100%'}} value={this.state.organization.passwordType} onChange={(value => {this.updateOrganizationField('passwordType', value);})}>
|
|
|
|
{
|
2021-12-22 13:56:32 +08:00
|
|
|
['plain', 'salt', 'md5-salt', 'bcrypt']
|
2021-05-05 23:32:21 +08:00
|
|
|
.map((item, index) => <Option key={index} value={item}>{item}</Option>)
|
|
|
|
}
|
|
|
|
</Select>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2021-05-05 23:40:18 +08:00
|
|
|
<Row style={{marginTop: '20px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-06-30 00:58:25 +08:00
|
|
|
{Setting.getLabel(i18next.t("general:Password salt"), i18next.t("general:Password salt - Tooltip"))} :
|
2021-05-05 23:40:18 +08:00
|
|
|
</Col>
|
|
|
|
<Col span={22} >
|
|
|
|
<Input value={this.state.organization.passwordSalt} onChange={e => {
|
|
|
|
this.updateOrganizationField('passwordSalt', e.target.value);
|
|
|
|
}} />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2021-05-13 09:39:07 +08:00
|
|
|
<Row style={{marginTop: '20px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-11-06 15:01:51 +08:00
|
|
|
{Setting.getLabel(i18next.t("general:Phone prefix"), i18next.t("general:Phone prefix - Tooltip"))} :
|
2021-05-13 09:39:07 +08:00
|
|
|
</Col>
|
|
|
|
<Col span={22} >
|
|
|
|
<Input addonBefore={"+"} value={this.state.organization.phonePrefix} onChange={e => {
|
|
|
|
this.updateOrganizationField('phonePrefix', e.target.value);
|
|
|
|
}} />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2021-06-17 01:12:03 +08:00
|
|
|
<Row style={{marginTop: '20px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-06-30 00:58:25 +08:00
|
|
|
{Setting.getLabel(i18next.t("general:Default avatar"), i18next.t("general:Default avatar - Tooltip"))} :
|
2021-06-17 01:12:03 +08:00
|
|
|
</Col>
|
|
|
|
<Col span={22} >
|
|
|
|
<Row style={{marginTop: '20px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-06-17 01:12:03 +08:00
|
|
|
URL:
|
|
|
|
</Col>
|
|
|
|
<Col span={23} >
|
|
|
|
<Input prefix={<LinkOutlined/>} value={this.state.organization.defaultAvatar} onChange={e => {
|
|
|
|
this.updateOrganizationField('defaultAvatar', e.target.value);
|
|
|
|
}} />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
<Row style={{marginTop: '20px'}} >
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-06-17 01:12:03 +08:00
|
|
|
{i18next.t("general:Preview")}:
|
|
|
|
</Col>
|
|
|
|
<Col span={23} >
|
|
|
|
<a target="_blank" rel="noreferrer" href={this.state.organization.defaultAvatar}>
|
|
|
|
<img src={this.state.organization.defaultAvatar} alt={this.state.organization.defaultAvatar} height={90} style={{marginBottom: '20px'}}/>
|
|
|
|
</a>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2021-11-06 21:14:53 +08:00
|
|
|
<Row style={{marginTop: '20px'}} >
|
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
|
|
|
{Setting.getLabel(i18next.t("general:Master password"), i18next.t("general:Master password - Tooltip"))} :
|
|
|
|
</Col>
|
|
|
|
<Col span={22} >
|
|
|
|
<Input value={this.state.organization.masterPassword} onChange={e => {
|
|
|
|
this.updateOrganizationField('masterPassword', e.target.value);
|
|
|
|
}} />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2021-11-06 15:52:03 +08:00
|
|
|
<Row style={{marginTop: '20px'}} >
|
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 19 : 2}>
|
|
|
|
{Setting.getLabel(i18next.t("organization:Soft deletion"), i18next.t("organization:Soft deletion - Tooltip"))} :
|
|
|
|
</Col>
|
|
|
|
<Col span={1} >
|
|
|
|
<Switch checked={this.state.organization.enableSoftDeletion} onChange={checked => {
|
|
|
|
this.updateOrganizationField('enableSoftDeletion', checked);
|
|
|
|
}} />
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2021-07-17 14:13:00 +08:00
|
|
|
<Row style={{marginTop: '20px'}}>
|
2021-07-25 23:13:34 +08:00
|
|
|
<Col style={{marginTop: '5px'}} span={(Setting.isMobile()) ? 22 : 2}>
|
2021-07-17 14:13:00 +08:00
|
|
|
{Setting.getLabel(i18next.t("general:LDAPs"), i18next.t("general:LDAPs - Tooltip"))} :
|
|
|
|
</Col>
|
|
|
|
<Col span={22}>
|
|
|
|
<LdapTable
|
|
|
|
title={i18next.t("general:LDAPs")}
|
|
|
|
table={this.state.ldaps}
|
|
|
|
organizationName={this.state.organizationName}
|
|
|
|
onUpdateTable={(value) => {
|
|
|
|
this.setState({ldaps: value}) }}
|
|
|
|
/>
|
|
|
|
</Col>
|
|
|
|
</Row>
|
2021-02-13 12:15:19 +08:00
|
|
|
</Card>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2021-12-12 17:12:15 +08:00
|
|
|
submitOrganizationEdit(willExist) {
|
2021-02-13 12:15:19 +08:00
|
|
|
let organization = Setting.deepCopy(this.state.organization);
|
|
|
|
OrganizationBackend.updateOrganization(this.state.organization.owner, this.state.organizationName, organization)
|
|
|
|
.then((res) => {
|
2021-03-28 00:48:34 +08:00
|
|
|
if (res.msg === "") {
|
2021-02-13 12:15:19 +08:00
|
|
|
Setting.showMessage("success", `Successfully saved`);
|
|
|
|
this.setState({
|
|
|
|
organizationName: this.state.organization.name,
|
|
|
|
});
|
2021-12-12 17:12:15 +08:00
|
|
|
|
|
|
|
if (willExist) {
|
|
|
|
this.props.history.push(`/organizations`);
|
|
|
|
} else {
|
|
|
|
this.props.history.push(`/organizations/${this.state.organization.name}`);
|
|
|
|
}
|
2021-02-13 12:15:19 +08:00
|
|
|
} else {
|
2021-03-28 00:48:34 +08:00
|
|
|
Setting.showMessage("error", res.msg);
|
2021-02-13 12:15:19 +08:00
|
|
|
this.updateOrganizationField('name', this.state.organizationName);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.catch(error => {
|
2021-03-28 08:59:12 +08:00
|
|
|
Setting.showMessage("error", `Failed to connect to server: ${error}`);
|
2021-02-13 12:15:19 +08:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-02-25 18:16:02 +08:00
|
|
|
deleteOrganization() {
|
|
|
|
OrganizationBackend.deleteOrganization(this.state.organization)
|
|
|
|
.then(() => {
|
|
|
|
this.props.history.push(`/organizations`);
|
|
|
|
})
|
|
|
|
.catch(error => {
|
|
|
|
Setting.showMessage("error", `Failed to connect to server: ${error}`);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-02-13 12:15:19 +08:00
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<div>
|
2021-07-23 09:46:01 +08:00
|
|
|
{
|
|
|
|
this.state.organization !== null ? this.renderOrganization() : null
|
|
|
|
}
|
|
|
|
<div style={{marginTop: '20px', marginLeft: '40px'}}>
|
2021-12-12 17:12:15 +08:00
|
|
|
<Button size="large" onClick={() => this.submitOrganizationEdit(false)}>{i18next.t("general:Save")}</Button>
|
|
|
|
<Button style={{marginLeft: '20px'}} type="primary" size="large" onClick={() => this.submitOrganizationEdit(true)}>{i18next.t("general:Save & Exit")}</Button>
|
2022-02-25 18:16:02 +08:00
|
|
|
{this.state.mode === "add" ? <Button style={{marginLeft: '20px'}} size="large" onClick={() => this.deleteOrganization()}>{i18next.t("general:Cancel")}</Button> : null}
|
2021-07-23 09:46:01 +08:00
|
|
|
</div>
|
2021-02-13 12:15:19 +08:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default OrganizationEditPage;
|