// 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, Row, Select, Switch} from "antd"; import * as PermissionBackend from "./backend/PermissionBackend"; import * as OrganizationBackend from "./backend/OrganizationBackend"; import * as UserBackend from "./backend/UserBackend"; import * as GroupBackend from "./backend/GroupBackend"; import * as Setting from "./Setting"; import i18next from "i18next"; import * as RoleBackend from "./backend/RoleBackend"; import * as ModelBackend from "./backend/ModelBackend"; import * as ApplicationBackend from "./backend/ApplicationBackend"; import moment from "moment/moment"; class PermissionEditPage extends React.Component { constructor(props) { super(props); this.state = { classes: props, organizationName: props.organizationName !== undefined ? props.organizationName : props.match.params.organizationName, permissionName: decodeURIComponent(props.match.params.permissionName), permission: null, organizations: [], model: null, users: [], groups: [], roles: [], models: [], resources: [], mode: props.location.mode !== undefined ? props.location.mode : "edit", }; } UNSAFE_componentWillMount() { this.getPermission(); this.getOrganizations(); } getPermission() { PermissionBackend.getPermission(this.state.organizationName, this.state.permissionName) .then((res) => { const permission = res.data; if (permission === null) { this.props.history.push("/404"); return; } if (res.status === "error") { Setting.showMessage("error", res.msg); return; } this.setState({ permission: permission, }); this.getUsers(permission.owner); this.getGroups(permission.owner); this.getRoles(permission.owner); this.getModels(permission.owner); this.getResources(permission.owner); this.getModel(permission.owner, permission.model); }); } getOrganizations() { OrganizationBackend.getOrganizations("admin") .then((res) => { this.setState({ organizations: res.data || [], }); }); } getUsers(organizationName) { UserBackend.getUsers(organizationName) .then((res) => { if (res.status === "error") { Setting.showMessage("error", res.msg); return; } this.setState({ users: res.data, }); }); } getGroups(organizationName) { GroupBackend.getGroups(organizationName) .then((res) => { if (res.status === "error") { Setting.showMessage("error", res.msg); return; } this.setState({ groups: res.data, }); }); } getRoles(organizationName) { RoleBackend.getRoles(organizationName) .then((res) => { if (res.status === "error") { Setting.showMessage("error", res.msg); return; } this.setState({ roles: res.data, }); }); } getModels(organizationName) { ModelBackend.getModels(organizationName) .then((res) => { if (res.status === "error") { Setting.showMessage("error", res.msg); return; } this.setState({ models: res.data, }); }); } getModel(organizationName, modelName) { if (modelName === "") { return; } ModelBackend.getModel(organizationName, modelName) .then((res) => { this.setState({ model: res.data, }); }); } getResources(organizationName) { ApplicationBackend.getApplicationsByOrganization("admin", organizationName) .then((res) => { this.setState({ resources: res.data || [], }); }); } parsePermissionField(key, value) { if ([""].includes(key)) { value = Setting.myParseInt(value); } return value; } updatePermissionField(key, value) { if (key === "model") { this.getModel(this.state.permission.owner, value); } value = this.parsePermissionField(key, value); const permission = this.state.permission; permission[key] = value; this.setState({ permission: permission, }); } hasRoleDefinition(model) { if (model !== null) { return model.modelText.includes("role_definition"); } return false; } renderPermission() { return ( {this.state.mode === "add" ? i18next.t("permission:New Permission") : i18next.t("permission:Edit Permission")}     {this.state.mode === "add" ? : null} } style={(Setting.isMobile()) ? {margin: "5px"} : {}} type="inner"> {Setting.getLabel(i18next.t("general:Organization"), i18next.t("general:Organization - Tooltip"))} : { this.updatePermissionField("name", e.target.value); }} /> {Setting.getLabel(i18next.t("general:Display name"), i18next.t("general:Display name - Tooltip"))} : { this.updatePermissionField("displayName", e.target.value); }} /> {Setting.getLabel(i18next.t("general:Description"), i18next.t("general:Description - Tooltip"))} : { this.updatePermissionField("description", e.target.value); }} /> {Setting.getLabel(i18next.t("general:Model"), i18next.t("general:Model - Tooltip"))} : { this.updatePermissionField("adapter", e.target.value); }} /> {Setting.getLabel(i18next.t("role:Sub users"), i18next.t("role:Sub users - Tooltip"))} : {this.updatePermissionField("groups", value);})} options={[ Setting.getOption(i18next.t("organization:All"), "*"), ...this.state.groups.map((group) => Setting.getOption(`${group.owner}/${group.name}`, `${group.owner}/${group.name}`)), ]} /> {Setting.getLabel(i18next.t("role:Sub roles"), i18next.t("role:Sub roles - Tooltip"))} : { this.updatePermissionField("domains", value); })} options={[ Setting.getOption(i18next.t("organization:All"), "*"), ...this.state.permission.domains.map((domain) => Setting.getOption(domain, domain)), ]} /> {Setting.getLabel(i18next.t("permission:Resource type"), i18next.t("permission:Resource type - Tooltip"))} : {this.updatePermissionField("resources", value);})} options={[ Setting.getOption(i18next.t("organization:All"), "*"), ...this.state.resources.map((resource) => Setting.getOption(`${resource.name}`, `${resource.name}`)), ]} /> {Setting.getLabel(i18next.t("permission:Actions"), i18next.t("permission:Actions - Tooltip"))} : { this.updatePermissionField("effect", value); })} options={[ {value: "Allow", name: i18next.t("permission:Allow")}, {value: "Deny", name: i18next.t("permission:Deny")}, ].map((item) => Setting.getOption(item.name, item.value))} /> {Setting.getLabel(i18next.t("general:Is enabled"), i18next.t("general:Is enabled - Tooltip"))} : { this.updatePermissionField("isEnabled", checked); }} /> {Setting.getLabel(i18next.t("permission:Submitter"), i18next.t("permission:Submitter - Tooltip"))} : { this.updatePermissionField("submitter", e.target.value); }} /> {Setting.getLabel(i18next.t("permission:Approver"), i18next.t("permission:Approver - Tooltip"))} : { this.updatePermissionField("approver", e.target.value); }} /> {Setting.getLabel(i18next.t("permission:Approve time"), i18next.t("permission:Approve time - Tooltip"))} : { this.updatePermissionField("approveTime", e.target.value); }} /> {Setting.getLabel(i18next.t("general:State"), i18next.t("general:State - Tooltip"))} :