Example #1
0
 private void LogOut_Click(object sender, EventArgs e)
 {
     LoginInfo.EACookie     = null;
     LoginInfo.LoginSucceed = false;
     LoginInfo.GradeList.Clear();
     TableForm = null;
     TermYear.Items.Clear();
     TermIndex.Text = null;
     LoginInfo.YearsOfTerm.Clear();
     LoginInfo.YearsOfGrade.Clear();
     YearOfGrade.Items.Clear();
     label1.Visible        = true;
     label2.Visible        = true;
     label3.Visible        = true;
     Account.Text          = "";
     Password.Text         = "";
     SecertCode.Text       = "";
     Account.Visible       = true;
     Password.Visible      = true;
     SecertCode.Visible    = true;
     CodeView.Visible      = true;
     LoginIn.Visible       = true;
     ReInput.Visible       = true;
     QueryGroup.Enabled    = false;
     LogOut.Visible        = false;
     GradeBox.Enabled      = false;
     TermOfGrade.Text      = null;
     YearOfGrade.Text      = null;
     CTSave.Enabled        = false;
     OneKeyComment.Enabled = false;
     TermYear.Items.Clear();
     MessageBox.Show("退出登录成功,欢迎下次使用,再见!", "退出成功", MessageBoxButtons.OK, MessageBoxIcon.Information);
     RequestCode();
 }
Example #2
0
        private void QueryTable()
        {
            if (TermYear.Text == null || TermIndex.Text == null)
            {
                MessageBox.Show("有未选择部分,请选择后再试!", "查询提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }

            LoginInfo.SelectedYear = TermYear.Text;
            LoginInfo.SelectedTerm = TermIndex.Text;

            string Year, Index;
            Regex  YearString = new Regex("\\d{4}-\\d{4}");

            Year = YearString.Match(TermYear.Text).Value;
            if (TermIndex.Text == "第一学期")
            {
                Index = "1";
            }
            else
            {
                Index = "2";
            }

            GetClassTable GetTable = new GetClassTable(Year, Index);

            if (GetTable.Get_Status() == false)
            {
                MessageBox.Show("查询过程中遇到错误,可能的原因为:" + LoginInfo.FailedReason + "请尝试解决问题后再试!\r\n错误日志:" + LoginInfo.FailedLog, "查询失败", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }

            if (GetTable.IsPageSame() == false)
            {
                MessageBox.Show("当前选择的学期暂无课程,请选择其他学期查询!", "无课提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }

            if (TableForm == null || TableForm.IsDisposed)
            {
                TableForm = new ClassTableForm();
                TableForm.Show();
                LoginInfo.QueryFormOnline = true;
            }
            else
            {
                MessageBox.Show("请关闭当前课表窗口后再进行其它查询,谢谢!", "查询提示", MessageBoxButtons.OK, MessageBoxIcon.Information);
                TableForm.Activate();
            }
        }
Example #3
0
        private void DeCT_Click(object sender, EventArgs e)
        {
            string c = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(password.Text, "MD5");

            if (FilePath == "")
            {
                MessageBox.Show("未选择文件,请选择后再试!", "提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }
            else if (password.Text == "")
            {
                MessageBox.Show("未输入密码,请输入后再试!", "空密码提示", MessageBoxButtons.OK, MessageBoxIcon.Warning);
                return;
            }

            StreamReader sr = new StreamReader(FilePath, Encoding.UTF8);

            string content = sr.ReadToEnd();

            if (content.IndexOf(c) == -1)
            {
                MessageBox.Show("密码错误!请检查后再试!", "错误提示", MessageBoxButtons.OK, MessageBoxIcon.Error);
                sr.Close();
                return;
            }

            sr.Close();

            Base64CryptFun Crypt = new Base64CryptFun();

            string NoPassContent = content.Replace("Password:"******"\r\n", "");

            NoPassContent = Crypt.Decode(NoPassContent);

            Regex Loc          = new Regex("<.+?>");
            Regex ClassName    = new Regex("ClassName:.+", RegexOptions.Multiline);
            Regex ClassTime    = new Regex("ClassTime:.+", RegexOptions.Multiline);
            Regex Teacher      = new Regex("Teacher:.+", RegexOptions.Multiline);
            Regex Location     = new Regex("Location:.+", RegexOptions.Multiline);
            Regex Num          = new Regex("\\d{1,2}", RegexOptions.Multiline);
            Regex SelectedYear = new Regex("SelectedYear:.+", RegexOptions.Multiline);
            Regex SelectedTerm = new Regex("SelectedTerm:.+", RegexOptions.Multiline);

            MatchCollection ClassMatch    = ClassName.Matches(NoPassContent);
            MatchCollection TimeMatch     = ClassTime.Matches(NoPassContent);
            MatchCollection TeaMatch      = Teacher.Matches(NoPassContent);
            MatchCollection LocationMatch = Location.Matches(NoPassContent);
            MatchCollection LocMatch      = Loc.Matches(NoPassContent);

            LoginInfo.ClassList.Clear();

            for (int i = 0; i < ClassMatch.Count; i++)
            {
                LoginInfo.ClassNode node = new LoginInfo.ClassNode();

                node.ClassName = ClassMatch[i].Value.Replace("\r", "").Replace("ClassName:", "").Replace("\n", "");
                node.ClassTime = TimeMatch[i].Value.Replace("\r", "").Replace("ClassTime:", "").Replace("\n", "");
                node.Location  = LocationMatch[i].Value.Replace("\r", "").Replace("Location:", "").Replace("\n", "");
                node.Teacher   = TeaMatch[i].Value.Replace("\r", "").Replace("Teacher:", "").Replace("\n", "");

                LoginInfo.ClassList.Add(node);
            }

            //MessageBox.Show(Convert.ToString(LoginInfo.ClassList.Count));

            for (int i = 0; i < LocMatch.Count; i++)
            {
                if (Num.IsMatch(LocMatch[i].Value) == true)
                {
                    LoginInfo.ClassTable[i / 7, i % 7] = Num.Match(LocMatch[i].Value).Value;
                }
                else
                {
                    LoginInfo.ClassTable[i / 7, i % 7] = null;
                }
            }

            string Year = SelectedYear.Match(NoPassContent).Value.Replace("SelectedYear:", "").Replace("\r\n", "");
            string Trem = SelectedTerm.Match(NoPassContent).Value.Replace("SelectedTerm:", "").Replace("\r\n", "");

            LoginInfo.SelectedYear    = Year;
            LoginInfo.SelectedTerm    = Trem;
            LoginInfo.QueryFormOnline = false;

            if (table == null || table.IsDisposed)
            {
                table = new ClassTableForm();
                table.Show();
            }
            else
            {
                table.Activate();
            }
        }