// 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 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: props.match.params.permissionName, permission: null, organizations: [], model: null, users: [], 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((permission) => { this.setState({ permission: permission, }); this.getUsers(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.msg === undefined) ? res : [], }); }); } getUsers(organizationName) { UserBackend.getUsers(organizationName) .then((res) => { this.setState({ users: res, }); }); } getRoles(organizationName) { RoleBackend.getRoles(organizationName) .then((res) => { this.setState({ roles: res, }); }); } getModels(organizationName) { ModelBackend.getModels(organizationName) .then((res) => { this.setState({ models: res, }); }); } getModel(organizationName, modelName) { ModelBackend.getModel(organizationName, modelName) .then((res) => { this.setState({ model: res, }); }); } getResources(organizationName) { ApplicationBackend.getApplicationsByOrganization("admin", organizationName) .then((res) => { this.setState({ resources: (res.msg === undefined) ? res : [], }); }); } 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: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("roles", value);})} options={this.state.roles.filter(roles => (roles.owner !== this.state.roles.owner || roles.name !== this.state.roles.name)).map((permission) => Setting.getOption(`${permission.owner}/${permission.name}`, `${permission.owner}/${permission.name}`)) } /> {Setting.getLabel(i18next.t("role:Sub domains"), i18next.t("role:Sub domains - Tooltip"))} : { this.updatePermissionField("resourceType", value); })} options={[ {value: "Application", name: i18next.t("general:Application")}, {value: "TreeNode", name: i18next.t("permission:TreeNode")}, ].map((item) => Setting.getOption(item.name, item.value))} /> {Setting.getLabel(i18next.t("general:Resources"), i18next.t("permission:Resources - Tooltip"))} : { this.updatePermissionField("actions", value); })} options={[ {value: "Read", name: i18next.t("permission:Read")}, {value: "Write", name: i18next.t("permission:Write")}, {value: "Admin", name: i18next.t("permission:Admin")}, ].map((item) => Setting.getOption(item.name, item.value))} /> {Setting.getLabel(i18next.t("permission:Effect"), i18next.t("permission:Effect - 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"))} :