summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-05 10:05:06 -0400
committerMichael <[email protected]>2017-04-05 10:05:14 -0400
commitd9295c46a5cf27fc36c833298e512dd21b2fb237 (patch)
tree7b96c08a387784406727f3495ecc4678e1dcc428
parentd4d2c40513b936575849b4276759be22e36ed8fa (diff)
downloadproject-unite-d9295c46a5cf27fc36c833298e512dd21b2fb237.tar.gz
project-unite-d9295c46a5cf27fc36c833298e512dd21b2fb237.tar.bz2
project-unite-d9295c46a5cf27fc36c833298e512dd21b2fb237.zip
Custom error page.
-rw-r--r--Project-Unite/Views/Shared/Error.cshtml62
1 files changed, 62 insertions, 0 deletions
diff --git a/Project-Unite/Views/Shared/Error.cshtml b/Project-Unite/Views/Shared/Error.cshtml
index be55b17..0ffa3ed 100644
--- a/Project-Unite/Views/Shared/Error.cshtml
+++ b/Project-Unite/Views/Shared/Error.cshtml
@@ -7,3 +7,65 @@
<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
+<h2>Error summary:</h2>
+
+<p><strong>@Model.Exception.Message</strong></p>
+
+<h3>Stacktrace (for nerdy Shifters):</h3>
+
+<pre>
+<code class="language-csharp">
+ @Model.Exception.StackTrace
+</code>
+</pre>
+
+<h3>Full exception details:</h3>
+
+<pre>
+<code>
+ @Model.Exception.ToString()
+</code>
+</pre>
+
+<p><em><strong>Requested action: </strong>@Html.Raw(Model.ControllerName + "/" + Model.ActionName)</em></p>
+
+<h2>What can you do?</h2>
+
+<div class="row">
+ <div class="col-xs-6">
+ <h4>If you are a user...</h4>
+
+ <ul>
+ <li>Try again in a bit - there may be a temporary issue preventing this request from going through.</li>
+ <li>Try another page - does this error show on other pages?</li>
+ <li>Give us a bit of time - We already saw this error - it got sent to us when you received this page.</li>
+ </ul>
+ </div>
+ <div class="col-xs-6">
+ <h4>If you're an admin or a dev...</h4>
+
+ <ul>
+ <li>Check your Audit Logs - if you are an admin, head over to @Html.ActionLink("this link", "Logs", "Admin") - the crash has been logged.</li>
+ <li>Check the GitHub Issues page - there may be a bugreport. <a href="http://github.com/MichaelTheShifter/Project-Unite/issues">View issues.</a></li>
+ </ul>
+ </div>
+</div>
+
+@{
+ var db = new Project_Unite.Models.ApplicationDbContext();
+ var auditlog = new Project_Unite.Models.AuditLog("crash_reporter_daemon", Project_Unite.Models.AuditLogLevel.Admin, "");
+
+ var sb = new System.Text.StringBuilder();
+
+ sb.AppendLine("<strong>Crash report</strong><br/>");
+ sb.AppendLine("<br/>");
+ sb.AppendLine("<pre><code class=\"language-csharp\">");
+ sb.AppendLine(Model.Exception.ToString());
+ sb.AppendLine("</code></pre><br/>");
+ sb.Append("<strong>Requested action: ");
+ sb.Append(Model.ControllerName + "/" + Model.ActionName);
+ sb.AppendLine("</strong>");
+ auditlog.Description = sb.ToString();
+ db.AuditLogs.Add(auditlog);
+ db.SaveChanges();
+} \ No newline at end of file