Example #1
0
        void Application_Error(object sender, EventArgs e)
        {
            // TODO JAS
            if (CodeCampUnityContainer.Container != null)
            {
                var loggingSvc = CodeCampUnityContainer.Container.Resolve<ILoggingService>();

                var ccex = new CodeCampAuthorizationException("Last Chance Exception", Server.GetLastError());
                ccex.ProcessName = "Application_Error in: " + HttpContext.Current.Request.Url.ToString();

                loggingSvc.LogException(ccex);

                // Tell the user something broke.
                Server.Transfer("~/ErrorPage.aspx");
            }

            // Clear the error
            // Server.ClearError();
        }
Example #2
0
        protected void Login_Click(object sender, EventArgs e)
        {

            bool IsLoggedIn = false;
            if (!string.IsNullOrEmpty(email.Text) && !string.IsNullOrEmpty(pass.Text))
            {
                ErrorLabel.Visible = true;

                var passwordHash = Encryption.ComputePasswordHash(pass.Text);
                try
                {
                    // to test logging service
                    // throw new CodeCampAuthorizationException("No dice");
                    this.Person = domainService.GetPersonByEmail(email.Text);

                    if (this.Person != null && this.Person.PasswordHash == passwordHash)
                    {
                        bool haveEvent = int.TryParse(ConfigurationManager.AppSettings["CurrentEventId"], out EventId);
                        if (haveEvent)
                        {
                            IsLoggedIn = true;

                        }
                        else
                        {
                            throw new CodeCampConfigurationException("No Available Event to login to.")
                            {
                                ProcessName = "ASP Authentication",
                                ConfigurationItem = "CurrentEventId"
                            };
                        }
                    }
                    else
                    {
                        var message = this.Person == null
                                          ? "Login failed - please retry or register."
                                          : "Invalid Email Address or Password";
                        var loggingService = CodeCampUnityContainer.Container.Resolve<ILoggingService>();
                        loggingService.LogWarning(message);
                        ErrorLabel.Text = message;
                        ErrorLabel.Visible = true;
                    }
                }
                catch (CodeCampConfigurationException cccex)
                {
                    var loggingService = CodeCampUnityContainer.Container.Resolve<ILoggingService>();
                    loggingService.LogWarning(cccex.Message);
                    ErrorLabel.Text = cccex.Message;
                    ErrorLabel.Visible = true;
                }
                catch (CodeCampAuthorizationException ccex)
                {
                    var loggingService = CodeCampUnityContainer.Container.Resolve<ILoggingService>();

                    ccex.ProcessName = "ASP Authentication";

                    loggingService.LogException(ccex);
                    ErrorLabel.Text = "Login Failed";
                    ErrorLabel.Visible = true;
                }

                catch (Exception unhandledEx)
                {
                    var loggingService = CodeCampUnityContainer.Container.Resolve<ILoggingService>();

                    var ccex = new CodeCampAuthorizationException("Login failed", unhandledEx)
                    {
                        ProcessName = "ASP Authentication Unhandled Exception"
                    };

                    loggingService.LogException(ccex);
                    ErrorLabel.Text = "Login Failed";
                    ErrorLabel.Visible = true;
                }
            }
            if (IsLoggedIn)
            {
                Session["Person"] = this.Person.Id.ToString();
                Session["Event"] = EventId.ToString();
                Session["Action"] = "Agenda";
                Server.Transfer(CODE_CAMP_ASP_SL_LANDING_PAGE);
            }
        }
Example #3
0
 public void LogException(CodeCampAuthorizationException codeCampException)
 {
     //TODO JAS Do something with the log entry thingee
     var entry = new LogEntry(codeCampException.GetBaseException().Message);            
 }