📄 wizardpermission.ascx
字号:
<%@ Control Inherits="System.Web.Administration.WebAdminUserControl"%>
<%@ Import Namespace="System.Web.Configuration" %>
<%@ Import Namespace="System.Web.Administration" %>
<%@ Import Namespace="System.Drawing" %>
<%@ Import Namespace="System.Web.Hosting" %>
<%@ Register TagPrefix="user" TagName="confirmation" Src="confirmation.ascx"%>
<script runat="server" language="cs">
private const string SELECTED_RULE = "WebAdminSelectedRule";
private const string RULES = "WebAdminRules";
private const string NO_DELETE_RULES = "WebAdminNoDeleteRules";
private const string PARENT_RULE_COUNT = "WebAdminParentRuleCount";
private const string APP_PATH = "WebAdminApplicationPath";
private const string CURRENT_PATH = "WebAdminCurrentPath";
private const string SELECTED_ITEM = "WebAdminSelectedItem";
private string CurrentPath {
get {
return (string)Session[CURRENT_PATH];
}
set {
Session[CURRENT_PATH] = value;
}
}
private int ParentRuleCount {
get {
object obj = Session[PARENT_RULE_COUNT];
return obj != null ? (int) obj : -1;
}
set {
Session[PARENT_RULE_COUNT] = value;
}
}
private ArrayList NotDeleteableRules {
get {
return (ArrayList)Session[NO_DELETE_RULES];
}
set {
Session[NO_DELETE_RULES] = value;
}
}
private ArrayList Rules {
get {
return (ArrayList)Session[RULES];
}
set {
Session[RULES] = value;
}
}
private int SelectedRule {
get {
object obj = Session[SELECTED_RULE];
return obj != null ? (int) obj : -1;
}
set {
Session[SELECTED_RULE] = value;
}
}
private void GetNotDeletableRules(Configuration config) {
AuthorizationSection notDeleteableAuth = (AuthorizationSection) config.GetSection("system.web/authorization");
ArrayList arrNoDelete = new ArrayList();
PropertyInformation propUsers = null;
PropertyInformation propRoles = null;
bool entryIsDeletable = false;
int i = 0;
foreach (AuthorizationRule entryKeep in notDeleteableAuth.Rules) {
entryIsDeletable = true;
propUsers = entryKeep.ElementInformation.Properties["users"];
propRoles = entryKeep.ElementInformation.Properties["roles"];
if (propUsers != null) {
if (propUsers.ValueOrigin == PropertyValueOrigin.Inherited) {
entryIsDeletable = false;
}
}
if (propRoles != null && entryIsDeletable) {
if (propRoles.ValueOrigin == PropertyValueOrigin.Inherited) {
entryIsDeletable = false;
}
}
if (!entryIsDeletable) {
// store the index in here as to which one is not deletable
arrNoDelete.Add(i);
}
i++;
}
Session[NO_DELETE_RULES] = arrNoDelete;
}
public void AddPermissionRule(string currentPath, TextBox userName, ListControl roles, CheckBox userRadio, CheckBox roleRadio, CheckBox allUsersRadio, CheckBox anonymousUsersRadio, CheckBox grantRadio, CheckBox denyRadio){
Configuration config = ((WebAdminPage)Page).OpenWebConfiguration(currentPath, true);
AuthorizationSection auth = (AuthorizationSection)config.GetSection("system.web/authorization");
AuthorizationRule rule = new AuthorizationRule(grantRadio.Checked ? AuthorizationRuleAction.Allow : AuthorizationRuleAction.Deny);
if (userRadio.Checked) {
rule.Users.Add(userName.Text);
}
else if (roleRadio.Checked) {
rule.Roles.Add(roles.SelectedItem.Text);
}
else if (allUsersRadio.Checked) {
rule.Users.Add ("*");
}
else if (anonymousUsersRadio.Checked) {
rule.Users.Add("?");
}
auth.Rules.Add(rule);
((WebAdminPage)Page).SaveConfig(config);
}
protected void AddRule(object sender, EventArgs e) {
if(!((WebAdminPage)Page).IsRuleValid(placeholderValidator, userRadio, userName, roleRadio, roles)) {
return;
}
AddPermissionRule(CurrentPath, userName, roles, userRadio, roleRadio, allUsersRadio, anonymousUsersRadio, grantRadio, denyRadio);
BindGrid();
}
private string GetToolTip(string resourceName, string itemName) {
string tempString = (string) GetLocalResourceObject(resourceName);
return String.Format((string)GetGlobalResourceObject("GlobalResources","ToolTipFormat"), tempString, itemName);
}
private void BindGrid() {
string curPath = CurrentPath;
string parentPath = WebAdminPage.GetParentPath(curPath);
Configuration config = ((WebAdminPage)Page).OpenWebConfiguration(curPath, true);
AuthorizationSection auth = (AuthorizationSection) config.GetSection("system.web/authorization");
Configuration parentConfig = ((WebAdminPage)Page).OpenWebConfiguration(parentPath, true);
AuthorizationSection parentAuth = (AuthorizationSection) parentConfig.GetSection("system.web/authorization");
ParentRuleCount = parentAuth.Rules.Count;
GetNotDeletableRules(config);
ArrayList arr = new ArrayList();
foreach (AuthorizationRule entry in auth.Rules) {
arr.Add(entry);
}
Rules = arr;
dataGrid.DataSource = arr;
dataGrid.DataBind();
if (dataGrid.SelectedRow != null) {
UpdateRowColors(dataGrid, dataGrid.Rows[dataGrid.SelectedRow.RowIndex]);
}
}
private void DeleteRule(object sender, EventArgs e) {
LinkButton button = (LinkButton) sender;
GridViewRow item = (GridViewRow) button.Parent.Parent;
AuthorizationRule rule = (AuthorizationRule)Rules[item.RowIndex];
StringBuilder builder = new StringBuilder();
builder.Append(rule.Action);
int i = 0;
foreach (string u in rule.Users) {
if (i > 0) {
builder.Append(", " + u);
}
else {
builder.Append(" " + u);
}
i++;
}
i = 0;
foreach (string r in rule.Roles) {
if (i > 0) {
builder.Append(", " + r);
}
else {
builder.Append(" " + r);
}
i++;
}
confirmation.DialogContent.Text = String.Format((string)GetLocalResourceObject("AreYouSure"), builder.ToString());
mv1.ActiveViewIndex = 1;
Session["ItemIndex"] = item.RowIndex;
((WizardPage)Page).DisableWizardButtons();
}
public void OK_Click(object sender, EventArgs e) {
Rules.RemoveAt((int)Session["ItemIndex"]);
UpdateRules();
BindGrid();
mv1.ActiveViewIndex = 0;
((WizardPage)Page).EnableWizardButtons();
}
public void Cancel_Click(object sender, EventArgs e) {
mv1.ActiveViewIndex = 0;
((WizardPage)Page).EnableWizardButtons();
}
private string GetRoles(object val, bool appendImg) {
StringBuilder builder = new StringBuilder();
AuthorizationRule rule = (AuthorizationRule)val;
if (rule.Roles.Count == 0) {
return String.Empty;
}
for(int i = 0; i < rule.Roles.Count; i++) {
if (i > 0) {
builder.Append(", ");
}
string role = rule.Roles[i];
if (role == "*") {
role = (string)GetLocalResourceObject("BracketAll");
}
builder.Append(role);
}
if (appendImg) {
StringBuilder builder2 = new StringBuilder();
builder2.Append("<img src=\"../../Images/image2.gif\" alt=\"" + (string)GetGlobalResourceObject("GlobalResources", "RoleGif") + " [" + builder.ToString() + "]" + "\"/> ");
builder2.Append(builder.ToString());
return builder2.ToString();
} else {
return builder.ToString();
}
}
private string GetUsers(object val, bool appendImg) {
StringBuilder builder = new StringBuilder();
AuthorizationRule rule = (AuthorizationRule)val;
if (rule.Users.Count == 0) {
return String.Empty;
}
for(int i = 0; i < rule.Users.Count; i++) {
if (i > 0) {
builder.Append(", ");
}
string user = rule.Users[i];
if (user == "?") {
user = (string)GetLocalResourceObject("BracketAnonymous");
}
else if (user == "*") {
user = (string)GetLocalResourceObject("BracketAll");
}
builder.Append(user);
}
if (appendImg) {
StringBuilder builder2 = new StringBuilder();
builder2.Append("<img src=\"../../Images/image1.gif\" alt=\"" + (string)GetGlobalResourceObject("GlobalResources", "UserGif") + " [" + builder.ToString() + "]" + "\"/> ");
builder2.Append(builder.ToString());
return builder2.ToString();
} else {
return builder.ToString();
}
}
private string GetAction(object val) {
AuthorizationRule rule = (AuthorizationRule)val;
string ruleAction = "";
if (rule.Action == AuthorizationRuleAction.Allow) {
ruleAction = (string)GetLocalResourceObject("Allow");
} else if (rule.Action == AuthorizationRuleAction.Deny) {
ruleAction = (string)GetLocalResourceObject("Deny");
}
return ruleAction;
}
private string GetUsersAndRoles(object val, bool appendImg) {
return GetUsers(val, appendImg) + GetRoles(val, appendImg);
}
private bool IsEntryDeleteable(int rowIndex) {
bool entryIsDeleteable = false;
if (rowIndex < Rules.Count - ParentRuleCount) {
entryIsDeleteable = true;
}
if (!entryIsDeleteable) {
return entryIsDeleteable;
}
foreach (int index1 in NotDeleteableRules) {
if (index1 == rowIndex) {
entryIsDeleteable = false;
}
}
return entryIsDeleteable;
}
private bool IsIE() {
HttpBrowserCapabilities caps = Page.Request.Browser;
bool isIE = (caps.Type.IndexOf("IE") > -1);
return isIE;
}
private void ItemDataBound(object sender, System.Web.UI.WebControls.GridViewRowEventArgs e)
{
if (e.Row.RowIndex >= Rules.Count - ParentRuleCount) {
return;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -