Exemplo n.º 1
0
        private void materialRaisedButton1_Click_3(object sender, EventArgs e)
        {
            if (ApiKeyTextBox.Text.Trim() != "")
            {
                string[] array = File.ReadAllText("lastApiKey.txt").Split(new char[]
                {
                    ':'
                });

                if (array.Length != 3)
                {
                    array = new string[]
                    {
                        "1",
                        array[0],
                        ""
                    };
                }

                if (rb_CaptRucaptcha.Checked)
                {
                    VkCaptchaWorks.SetKeyAndProv(CaptchaWorksProvder.rucaptcha, ApiKeyTextBox.Text.Trim());
                    array[0] = "1";
                    array[1] = ApiKeyTextBox.Text.Trim();
                }
                else
                {
                    VkCaptchaWorks.SetKeyAndProv(CaptchaWorksProvder.antiCaptcha, ApiKeyTextBox.Text.Trim());
                    array[0] = "2";
                    array[2] = ApiKeyTextBox.Text.Trim();
                }
                File.WriteAllText("lastApiKey.txt", string.Concat(new string[]
                {
                    array[0],
                    ":",
                    array[1],
                    ":",
                    array[2]
                }));

                VkCaptchaWorks.Enabled = !rb_CaptManual.Checked;
                CaptAns.Visible        = (ManualCaptBox.Visible = (CaptPic.Visible = !VkCaptchaWorks.Enabled));
                label8.Visible         = (CurrBalance.Visible = (ApiKeyTextBox.Visible = (saveCaptcha.Visible = (button1.Visible = VkCaptchaWorks.Enabled))));
            }
        }
Exemplo n.º 2
0
        private void Form1_Shown(object sender, EventArgs e)
        {
            ListControl emotionVO = EmotionVO;
            int         i         = VoiceVO.SelectedIndex = 0;

            emotionVO.SelectedIndex = i;
            turnOffOn.CustomFormat  = "dd.MM.yyyy HH:mm:ss";
            notifyIcon1.Icon        = SystemIcons.Application;
            ni = notifyIcon1;
            CreateFileIfNotExist("accs.txt");
            CreateFileIfNotExist("lastApiKey.txt");
            CreateFileIfNotExist("phrases.txt");
            CreateFileIfNotExist("typerTexts.txt");
            CreateFileIfNotExist("photoComments.txt");
            CreateFileIfNotExist("generatorMessages.txt");
            CreateFileIfNotExist("images.txt");

            if (!Directory.Exists("AccsData"))
            {
                Directory.CreateDirectory("AccsData");
            }

            if (!Directory.Exists("Images"))
            {
                Directory.CreateDirectory("Images");
            }

            string[] files = Directory.GetFiles("Images");
            DataGridViewComboBoxColumn dataGridViewComboBoxColumn = (DataGridViewComboBoxColumn)chatsGrid.Columns[2];

            string[] array = files;
            for (int j = 0; j < array.Length; j++)
            {
                string path = array[j];
                dataGridViewComboBoxColumn.Items.Add(Path.GetFileName(path));
            }
            phrases           = File.ReadAllLines("phrases.txt", Encoding.GetEncoding("windows-1251"));
            images            = File.ReadAllLines("images.txt");
            photoComments     = File.ReadAllLines("photoComments.txt", Encoding.GetEncoding("windows-1251"));
            generatorMessages = File.ReadAllLines("generatorMessages.txt", Encoding.GetEncoding("windows-1251"));
            Log.Push(string.Format($"В /images {files.Length} файлов"));
            Log.Push(string.Format($"В phrases.txt {phrases.Length} строк"));
            Log.Push(string.Format($"В images.txt {images.Length} строк"));
            Log.Push(string.Format($"В photoComments.txt {photoComments.Length} строк"));
            Log.Push(string.Format($"В generatorMessages.txt {generatorMessages.Length} строк"));
            Regex regex = new Regex("photo[0-9]+_[0-9]+");

            for (int k = 0; k < images.Length; k++)
            {
                Match match = regex.Match(images[k]);

                if (!match.Success)
                {
                    Log.Push(string.Format($"Ошибка при обработке \"{images[k]}\""));
                    images[k] = "";
                }
                else
                {
                    images[k] = match.Value;
                }
            }
            string[] array2 = File.ReadAllText("lastApiKey.txt").Split(new char[]
            {
                ':'
            });

            if (array2[0] != "" && array2.Length == 3)
            {
                if (array2[0] == "0")
                {
                    VkCaptchaWorks.Enabled = false;
                    rb_CaptManual.Checked  = true;
                }
                else
                {
                    if (array2[0] == "1")
                    {
                        VkCaptchaWorks.SetKeyAndProv(CaptchaWorksProvder.rucaptcha, array2[1]);
                        rb_CaptRucaptcha.Checked = true;
                        ApiKeyTextBox.Text       = array2[1];
                    }
                    else
                    {
                        VkCaptchaWorks.SetKeyAndProv(CaptchaWorksProvder.antiCaptcha, array2[2]);
                        rb_CaptAnticaptcha.Checked = true;
                        ApiKeyTextBox.Text         = array2[2];
                    }
                }
            }
            else
            {
                File.WriteAllText("lastApiKey.txt", "1:" + array2[0] + ":");
                VkCaptchaWorks.SetKeyAndProv(CaptchaWorksProvder.rucaptcha, array2[0]);
                ApiKeyTextBox.Text       = array2[0];
                rb_CaptRucaptcha.Checked = true;
            }
            string[]      array3        = File.ReadAllLines("accs.txt", Encoding.GetEncoding("windows-1251"));
            string        text          = "";
            XmlSerializer xmlSerializer = new XmlSerializer(typeof(Account));

            string[] array4 = array3;
            for (i = 0; i < array4.Length; i++)
            {
                string[] array5 = array4[i].Split(new char[]
                {
                    ':'
                });

                if (array5.Length != 2)
                {
                    Log.Push("Ошибка загрузки аккаунта из accs.txt - неверный формат");
                }
                else
                {
                    Account account;
                    if (!File.Exists("AccsData\\" + array5[0] + ".xml"))
                    {
                        account = new Account(array5[0], array5[1]);
                    }
                    else
                    {
                        FileStream fileStream = new FileStream("AccsData\\" + array5[0] + ".xml", FileMode.Open);
                        XmlReader  xmlReader  = XmlReader.Create(fileStream);
                        account = (Account)xmlSerializer.Deserialize(xmlReader);
                        fileStream.Close();
                    }
                    account.password = array5[1];
                    switch (account.CheckToken())
                    {
                    case -1:
                        text = "Не создан";
                        break;

                    case 0:
                        text = "Ок";
                        break;

                    case 1:
                        text = "Неверен";
                        break;

                    case 2:
                        text = "Неизв. ошибка";
                        break;
                    }
                    foreach (ChatsTarget current in account.chTargets)
                    {
                        if (!File.Exists("Images\\" + current.setPhoto))
                        {
                            current.setPhoto = "Ничего";
                        }
                    }
                    accounts.Add(account);
                    accsTable.Rows.Add(new object[]
                    {
                        account.login,
                        account.password,
                        text
                    });
                    CurrAccComboBox.Items.Add(account.login);
                }
            }

            if (CurrAccComboBox.Items.Count != 0)
            {
                CurrAccComboBox.SelectedIndex = 0;
                materialCombobox1_SelectedIndexChanged(null, null);
            }
            CaptAns.Visible       = (ManualCaptBox.Visible = (CaptPic.Visible = !VkCaptchaWorks.Enabled));
            ApiKeyTextBox.Visible = (saveCaptcha.Visible = (button1.Visible = VkCaptchaWorks.Enabled));
        }