Пример #1
0
        public static async Task <int> CreateIssue(string ip, CrashReport report)
        {
            var sb = new StringBuilder();

            sb.AppendLine("## Automated crash report");
            sb.AppendLine();
            sb.Append("**Report time:** ");
            sb.AppendLine(report.Time);
            sb.Append("**Assembly version:** ");
            sb.AppendLine(report.AssemblyVersion);
            sb.Append("**Memory allocated:** ");
            sb.AppendLine(report.MemoryAllocated.ToString());
            sb.Append("**GUID:** ");
            sb.AppendLine(report.Guid);
            sb.AppendLine();
            sb.AppendLine("### Exception trace");
            sb.AppendLine("___");
            sb.Append(report.Exception);

            var createIssue = new NewIssue("Automated crash report")
            {
                Body = sb.ToString()
            };

            createIssue.Labels.Add("crash report");
            createIssue.Labels.Add("bug");

            var issue = await Client.Issue.Create(Properties.Settings.GitHubRepoOwner,
                                                  Properties.Settings.GitHubRepoName, createIssue);

            if (issue == null)
            {
                return(-1);
            }

            return(issue.Number);
        }
Пример #2
0
        public static bool SendMail(string ip, CrashReport report, int reportId)
        {
            var sb = new StringBuilder();

            if (reportId != -1)
            {
                sb.AppendLine("This is your automated crash report notifier.");
                sb.AppendLine();
                sb.Append("Used ip: ");
                sb.AppendLine(ip);
                sb.AppendLine();
                sb.AppendLine("A new crash report for the YT Music downloader was created in GitHub.");
                sb.AppendLine();
                sb.Append($"You can find the issue directly under https://github.com/chris579/YTMusicDownloader/issues/");
                sb.Append(reportId);
            }
            else
            {
                sb.AppendLine("Automated crash reporter for app YTMusicDownloader");
                sb.AppendLine();
                sb.AppendLine("The app crashed unexpectly! An issue in GitHub could not be created. Therefore the relevant information is passed here.");
                sb.AppendLine();
                sb.Append("IP: ");
                sb.AppendLine(ip);
                sb.AppendLine();
                sb.Append("Time: ");
                sb.AppendLine(report.Time);
                sb.Append("Assembly version: ");
                sb.AppendLine(report.AssemblyVersion);
                sb.Append("Memory allocated: ");
                sb.AppendLine(report.MemoryAllocated.ToString());
                sb.Append("GUID: ");
                sb.AppendLine(report.Guid);
                sb.Append("Machine Name: ");
                sb.AppendLine(report.MachineName);
                sb.AppendLine();
                sb.AppendLine("Exception trace");
                sb.AppendLine("===================================================================================================");
                sb.AppendLine();
                sb.Append(report.Exception);
            }

            try
            {
                var mail = new MailMessage
                {
                    From    = new MailAddress("*****@*****.**"),
                    Subject = "YT Downloader Crash Report",
                    Body    = sb.ToString()
                };

                mail.To.Add("*****@*****.**");

                Server.Send(mail);
                return(true);
            }
            catch (Exception ex)
            {
                Debug.WriteLine("Error sending mail: " + ex);
            }

            return(false);
        }