示例#1
0
    protected void Page_Load(object sender, EventArgs e)
    {
        GetIdentitiesResponse response;
        TableRow row;
        string   action = Request ["action"];
        int      id;

        foreach (TextBox tb in new TextBox [] { txtEmailEmail, txtEmailName, txtEmailPassword })
        {
            tb.Attributes.Add("onfocus", "javascript: document.getElementById ('lblEmailHelp').innerHTML = '" + tb.ToolTip + "';");
        }

        foreach (TextBox tb in new TextBox [] { txtIrcChannels, txtIrcName, txtIrcNicks, txtIrcServers })
        {
            tb.Attributes.Add("onfocus", "javascript: document.getElementById ('lblIrcHelp').innerHTML = '" + tb.ToolTip + "';");
        }

        foreach (TextBox tb in new TextBox [] { githubToken })
        {
            tb.Attributes.Add("onfocus", "javascript: document.getElementById ('lblGitHubHelp').innerHTML = '" + tb.ToolTip + "';");
        }

        response = Utils.LocalWebService.GetIdentities(Master.WebServiceLogin);

        if (response.Exception != null)
        {
            lblMessage.Text = response.Exception.Message;
        }
        else
        {
            if (!string.IsNullOrEmpty(action))
            {
                WebServiceResponse rsp;

                switch (action)
                {
                case "changeircname":
                    string name = Request ["name"];
                    if (!string.IsNullOrEmpty(name) && int.TryParse(Request ["id"], out id))
                    {
                        DBIrcIdentity identity = response.IrcIdentities.Find((v1) => v1.id == id);
                        if (identity != null)
                        {
                            identity.name = name;
                            rsp           = Utils.LocalWebService.EditIdentity(Master.WebServiceLogin, identity, null);
                            if (rsp.Exception != null)
                            {
                                lblMessage.Text = response.Exception.Message;
                                return;
                            }
                        }
                    }
                    break;

                case "switchircssl":
                    if (int.TryParse(Request ["id"], out id))
                    {
                        DBIrcIdentity identity = response.IrcIdentities.Find((v2) => v2.id == id);
                        if (identity != null)
                        {
                            identity.use_ssl = !identity.use_ssl;
                            rsp = Utils.LocalWebService.EditIdentity(Master.WebServiceLogin, identity, null);
                            if (rsp.Exception != null)
                            {
                                lblMessage.Text = response.Exception.Message;
                                return;
                            }
                        }
                    }
                    break;

                case "changeircchannels":
                    string channels = Request ["channels"];
                    if (!string.IsNullOrEmpty(channels) && int.TryParse(Request ["id"], out id))
                    {
                        DBIrcIdentity identity = response.IrcIdentities.Find((v3) => v3.id == id);
                        if (identity != null)
                        {
                            identity.channels = channels;
                            rsp = Utils.LocalWebService.EditIdentity(Master.WebServiceLogin, identity, null);
                            if (rsp.Exception != null)
                            {
                                lblMessage.Text = response.Exception.Message;
                                return;
                            }
                        }
                    }
                    break;

                case "switchjoinchannels":
                    if (int.TryParse(Request ["id"], out id))
                    {
                        DBIrcIdentity identity = response.IrcIdentities.Find((v4) => v4.id == id);
                        if (identity != null)
                        {
                            identity.join_channels = !identity.join_channels;
                            rsp = Utils.LocalWebService.EditIdentity(Master.WebServiceLogin, identity, null);
                            if (rsp.Exception != null)
                            {
                                lblMessage.Text = response.Exception.Message;
                                return;
                            }
                        }
                    }
                    break;

                case "changeircnicks":
                    string nicks = Request ["nicks"];
                    if (!string.IsNullOrEmpty(nicks) && int.TryParse(Request ["id"], out id))
                    {
                        DBIrcIdentity identity = response.IrcIdentities.Find((v5) => v5.id == id);
                        if (identity != null)
                        {
                            identity.nicks = nicks;
                            rsp            = Utils.LocalWebService.EditIdentity(Master.WebServiceLogin, identity, null);
                            if (rsp.Exception != null)
                            {
                                lblMessage.Text = response.Exception.Message;
                                return;
                            }
                        }
                    }
                    break;

                case "changeircservers":
                    string servers = Request ["servers"];
                    if (!string.IsNullOrEmpty(servers) && int.TryParse(Request ["id"], out id))
                    {
                        DBIrcIdentity identity = response.IrcIdentities.Find((v6) => v6.id == id);
                        if (identity != null)
                        {
                            identity.servers = servers;
                            rsp = Utils.LocalWebService.EditIdentity(Master.WebServiceLogin, identity, null);
                            if (rsp.Exception != null)
                            {
                                lblMessage.Text = response.Exception.Message;
                                return;
                            }
                        }
                    }
                    break;

                case "changeircpassword":
                    string password = Request ["password"];
                    if (int.TryParse(Request ["id"], out id))
                    {
                        DBIrcIdentity identity = response.IrcIdentities.Find((v6) => v6.id == id);
                        if (identity != null)
                        {
                            identity.password = password;
                            rsp = Utils.LocalWebService.EditIdentity(Master.WebServiceLogin, identity, null);
                            if (rsp.Exception != null)
                            {
                                lblMessage.Text = response.Exception.Message;
                                return;
                            }
                        }
                    }
                    break;
                }

                Response.Redirect("Identities.aspx", false);
                return;
            }

            if (response.IrcIdentities != null)
            {
                foreach (DBIrcIdentity irc in response.IrcIdentities)
                {
                    row = new TableRow();
                    row.Cells.Add(Utils.CreateTableCell(string.Format("<a href='javascript:changeircname ({2}, \"{0}\");'>{1}</a>", HttpUtility.UrlEncode(irc.name), HttpUtility.HtmlEncode(irc.name), irc.id)));
                    row.Cells.Add(Utils.CreateTableCell(string.Format("<a href='javascript:changeircservers ({2}, \"{0}\");'>{1}</a>", HttpUtility.UrlEncode(irc.servers), HttpUtility.HtmlEncode(irc.servers), irc.id)));
                    row.Cells.Add(Utils.CreateTableCell(string.Format("<a href='javascript:changeircpassword ({2}, \"{0}\");'>{1}</a>", HttpUtility.UrlEncode(irc.password), string.IsNullOrEmpty(irc.password) ? "(none)" : HttpUtility.HtmlEncode(irc.password), irc.id)));
                    row.Cells.Add(Utils.CreateTableCell(string.Format("<a href='Identities.aspx?action=switchircssl&id={1}'>{0}</a>", irc.use_ssl ? "Yes" : "No", irc.id)));
                    row.Cells.Add(Utils.CreateTableCell(string.Format("<a href='javascript:changeircchannels ({2}, \"{0}\");'>{1}</a>", HttpUtility.UrlEncode(irc.channels), HttpUtility.HtmlEncode(irc.channels), irc.id)));
                    row.Cells.Add(Utils.CreateTableCell(string.Format("<a href='Identities.aspx?action=switchjoinchannels&id={1}'>{0}</a>", irc.join_channels ? "Yes" : "No", irc.id)));
                    row.Cells.Add(Utils.CreateTableCell(string.Format("<a href='javascript:changeircnicks ({2}, \"{0}\");'>{1}</a>", HttpUtility.UrlEncode(irc.nicks), HttpUtility.HtmlEncode(irc.nicks), irc.id)));
                    row.Cells.Add(Utils.CreateTableCell(Utils.CreateLinkButton("remove_irc_" + irc.id.ToString(), "Remove", "RemoveIrcIdentity", irc.id.ToString(), OnLinkButtonCommand)));
                    tblIrcIdentities.Rows.AddAt(tblIrcIdentities.Rows.Count - 1, row);
                }
            }
            if (response.EmailIdentities != null)
            {
                foreach (DBEmailIdentity email in response.EmailIdentities)
                {
                    row = new TableRow();
                    row.Cells.Add(Utils.CreateTableCell(email.name));
                    row.Cells.Add(Utils.CreateTableCell(email.email));
                    row.Cells.Add(Utils.CreateTableCell(email.password));
                    row.Cells.Add(Utils.CreateTableCell(Utils.CreateLinkButton("remove_email_" + email.id.ToString(), "Remove", "RemoveEmailIdentity", email.id.ToString(), OnLinkButtonCommand)));
                    tblEmailIdentities.Rows.AddAt(tblEmailIdentities.Rows.Count - 1, row);
                }
            }

            using (var db = new DB())
                using (var cmd = db.CreateCommand(@"
				SELECT * FROM githubidentity;
			"            ))
                    using (var reader = cmd.ExecuteReader()) {
                        githubIdentityValues.DataSource = DBRecord.LoadMany <DBGitHubIdentity> (reader);
                    }
            githubIdentityValues.DataBind();
        }
    }