Ejemplo n.º 1
0
    protected void KickOffRun()
    {
        // see if this is coming from the local machine
        string szIPThis = System.Net.Dns.GetHostAddresses(Request.Url.Host)[0].ToString();

        if (String.Compare(Request.UserHostAddress, szIPThis, StringComparison.CurrentCultureIgnoreCase) == 0)
        {
            // request came from this machine - make a request to ourselves and send it out in email
            EmailSubscriptionManager em = new EmailSubscriptionManager();
            em.ActiveBrand = Branding.CurrentBrand;
            if (util.GetIntParam(Request, "dbg", 0) != 0)
            {
                em.UserRestriction = Page.User.Identity.Name;
            }
            string szTasksToRun = util.GetStringParam(Request, "tasks");
            if (!String.IsNullOrEmpty(szTasksToRun))
            {
                try { em.TasksToRun = (EmailSubscriptionManager.SelectedTasks)Convert.ToInt32(szTasksToRun, CultureInfo.InvariantCulture); }
                catch (FormatException)
                { em.TasksToRun = EmailSubscriptionManager.SelectedTasks.All; }
            }
            new Thread(new ThreadStart(em.NightlyRun)).Start();
            lblSuccess.Visible = true;
        }
        else
        {
            lblErr.Visible = true;
        }
    }
    protected void btnUpdateEmailPrefs_Click(object sender, EventArgs e)
    {
        Profile m_pf = MyFlightbook.Profile.GetUser(Page.User.Identity.Name);

        List <EmailSubscription> l = new List <EmailSubscription>();

        foreach (ListItem li in cklEmailSubscriptions.Items)
        {
            l.Add(new EmailSubscription((SubscriptionType)Enum.Parse(typeof(SubscriptionType), li.Value), li.Text, li.Selected));
        }

        EmailSubscriptionManager esm = new EmailSubscriptionManager(m_pf.Subscriptions);

        esm.Subscriptions  = l;
        m_pf.Subscriptions = esm.ToUint();

        try
        {
            m_pf.FCommit();
            lblEmailPrefsUpdated.Visible = true;
        }
        catch (MyFlightbookException ex)
        {
            lblEmailPrefsUpdated.Visible  = true;
            lblEmailPrefsUpdated.Text     = ex.Message;
            lblEmailPrefsUpdated.CssClass = "error";
        }
    }
    protected void btnUpdateEmailPrefs_Click(object sender, EventArgs e)
    {
        Profile m_pf = MyFlightbook.Profile.GetUser(Page.User.Identity.Name);

        EmailSubscriptionManager esm = new EmailSubscriptionManager(m_pf.Subscriptions);

        esm.SetSubscription(SubscriptionType.Currency, ckCurrencyWeekly.Checked);
        esm.SetSubscription(SubscriptionType.Expiration, ckCurrencyExpiring.Checked);
        esm.SetSubscription(SubscriptionType.Totals, ckTotalsWeekly.Checked);
        esm.SetSubscription(SubscriptionType.MonthlyTotals, ckMonthly.Checked);

        m_pf.Subscriptions = esm.ToUint();

        try
        {
            m_pf.FCommit();
            lblEmailPrefsUpdated.Visible = true;
        }
        catch (MyFlightbookException ex)
        {
            lblEmailPrefsUpdated.Visible  = true;
            lblEmailPrefsUpdated.Text     = ex.Message;
            lblEmailPrefsUpdated.CssClass = "error";
        }
    }
    protected void Page_Load(object sender, EventArgs e)
    {
        Profile m_pf = MyFlightbook.Profile.GetUser(Page.User.Identity.Name);

        if (!IsPostBack)
        {
            EmailSubscriptionManager esm = new EmailSubscriptionManager(m_pf.Subscriptions);
            foreach (EmailSubscription es in esm.Subscriptions)
            {
                ListItem li = new ListItem(es.Name, es.Type.ToString(), true);
                li.Selected = es.IsSubscribed;
                cklEmailSubscriptions.Items.Add(li);
            }
        }
    }
    protected void Page_Load(object sender, EventArgs e)
    {
        Profile m_pf = MyFlightbook.Profile.GetUser(Page.User.Identity.Name);

        if (!IsPostBack)
        {
            lblCurrencyExpirationPromotion.Text = Branding.ReBrand(Resources.Profile.EmailCurrencyExpirationPromotion);
            rowPromo.Visible = !(ckCurrencyExpiring.Enabled = EarnedGratuity.UserQualifies(Page.User.Identity.Name, Gratuity.GratuityTypes.CurrencyAlerts));

            EmailSubscriptionManager esm = new EmailSubscriptionManager(m_pf.Subscriptions);

            ckCurrencyWeekly.Checked   = esm.HasSubscription(SubscriptionType.Currency);
            ckCurrencyExpiring.Checked = esm.HasSubscription(SubscriptionType.Expiration);
            ckTotalsWeekly.Checked     = esm.HasSubscription(SubscriptionType.Totals);
            ckMonthly.Checked          = esm.HasSubscription(SubscriptionType.MonthlyTotals);
        }
    }
Ejemplo n.º 6
0
    protected void KickOffRun()
    {
        // request came from this machine - make a request to ourselves and send it out in email
        EmailSubscriptionManager em = new EmailSubscriptionManager()
        {
            ActiveBrand = Branding.CurrentBrand
        };

        if (util.GetIntParam(Request, "dbg", 0) != 0)
        {
            em.UserRestriction = Page.User.Identity.Name;
        }
        string szTasksToRun = util.GetStringParam(Request, "tasks");

        if (!String.IsNullOrEmpty(szTasksToRun))
        {
            em.TasksToRun = Int32.TryParse(szTasksToRun, out int tasks) ? (EmailSubscriptionManager.SelectedTasks)tasks : EmailSubscriptionManager.SelectedTasks.All;
        }
        new Thread(new ThreadStart(em.NightlyRun)).Start();
        lblSuccess.Visible = true;
    }
Ejemplo n.º 7
0
    protected void SetUpCurrencyAndTotalsForUser(string szAuthKey, string szParam)
    {
        try
        {
            ValidateAuthorization(szAuthKey);

            Profile pf = MyFlightbook.Profile.GetUser(Username);
            EmailSubscriptionManager em = new EmailSubscriptionManager(pf.Subscriptions);

            IEnumerable <CurrencyStatusItem> rgExpiringCurrencies    = null;
            IEnumerable <CurrencyStatusItem> rgPrecomputedCurrencies = null;
            if (pf.AssociatedData.TryGetValue(CurrencyStatusItem.AssociatedDateKeyExpiringCurrencies, out object o))
            {
                rgExpiringCurrencies = (IEnumerable <CurrencyStatusItem>)o;
            }
            if (pf.AssociatedData.TryGetValue(CurrencyStatusItem.AssociatedDataKeyCachedCurrencies, out object o2))
            {
                rgPrecomputedCurrencies = (IEnumerable <CurrencyStatusItem>)o2;
            }

            pf.AssociatedData.Remove(CurrencyStatusItem.AssociatedDateKeyExpiringCurrencies);
            pf.AssociatedData.Remove(CurrencyStatusItem.AssociatedDataKeyCachedCurrencies);

            bool fHasCurrency = em.HasSubscription(SubscriptionType.Currency) || (em.HasSubscription(SubscriptionType.Expiration) && rgExpiringCurrencies != null && rgPrecomputedCurrencies != null);
            bool fHasTotals   = em.HasSubscription(SubscriptionType.Totals);
            bool fHasMonthly  = em.HasSubscription(SubscriptionType.MonthlyTotals);

            bool fMonthlySummary = (String.Compare(szParam, "monthly", StringComparison.OrdinalIgnoreCase) == 0);

            if (!fHasCurrency && !fHasTotals && !fMonthlySummary)
            {
                throw new MyFlightbookException("Email requested but no subscriptions found! User ="******"Monthly email requested but user does not subscribe to monthly email.  User = "******"http://{0}{1}", Branding.CurrentBrand.HostName, VirtualPathUtility.ToAbsolute("~/Member/EditProfile.aspx/pftDonate"));
            mvDonations.SetActiveView(Payment.TotalPaidSinceDate(DateTime.Now.AddYears(-1), Username) > 0 ? vwThankyou : vwPleaseGive);

            // Fix up the unsubscribe link.
            lnkUnsubscribe.NavigateUrl      = String.Format(CultureInfo.InvariantCulture, "http://{0}{1}/{2}", Branding.CurrentBrand.HostName, VirtualPathUtility.ToAbsolute("~/Member/EditProfile.aspx"), tabID.pftPrefs.ToString());
            lnkQuickUnsubscribe.NavigateUrl = String.Format(CultureInfo.InvariantCulture, "http://{0}{1}?u={2}", Branding.CurrentBrand.HostName, VirtualPathUtility.ToAbsolute("~/Public/Unsubscribe.aspx"), HttpUtility.UrlEncode(new UserAccessEncryptor().Encrypt(Username)));

            bool fAnnual = (DateTime.Now.Month == 1 && DateTime.Now.Day == 1);  // if it's January 1, show prior year; else show YTD
            mfbTotalsByTimePeriod.BindTotalsForUser(Username, !fMonthlySummary, !fMonthlySummary, true, true, !fAnnual);

            if (fAnnual)
            {
                mfbRecentAchievements.Refresh(Username, new DateTime(DateTime.Now.Year - 1, 1, 1), new DateTime(DateTime.Now.Year - 1, 12, 31), true);
            }
            else
            {
                mfbRecentAchievements.Refresh(Username, new DateTime(DateTime.Now.Year, 1, 1), DateTime.Now, true);
            }

            lblRecentAchievementsTitle.Text    = mfbRecentAchievements.Summary;
            lblRecentAchievementsTitle.Visible = mfbRecentAchievements.AchievementCount > 0;

            lblCurrency.Text = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailCurrencyHeader, DateTime.Now.ToLongDateString());

            pnlTotals.Visible = fHasTotals || fMonthlySummary;
            lblTotal.Text     = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailTotalsHeader, DateTime.Now.ToLongDateString());

            lblIntroHeader.Text = String.Format(CultureInfo.CurrentCulture, fMonthlySummary ? Resources.Profile.EmailMonthlyMailIntro : Resources.Profile.EmailWeeklyMailIntro, Branding.CurrentBrand.AppName);

            if (fHasCurrency || fMonthlySummary)
            {
                mfbCurrency.UserName = pf.UserName;
                mfbCurrency.RefreshCurrencyTable(rgPrecomputedCurrencies);
                pnlCurrency.Visible = true;

                if (rgExpiringCurrencies != null && rgExpiringCurrencies.Any())
                {
                    pnlExpiringCurrencies.Visible = true;
                    rptExpiring.DataSource        = rgExpiringCurrencies;
                    rptExpiring.DataBind();
                }
            }
        }
        catch (Exception ex) when(ex is MyFlightbookException || ex is FormatException)
        {
            MyFlightbookException.NotifyAdminException(ex);
            throw;  // ensure that the success tag doesn't show!
        }
    }
Ejemplo n.º 8
0
    protected void Page_Load(object sender, EventArgs e)
    {
        if (!IsPostBack)
        {
            string szAuthKey = util.GetStringParam(Request, "k");
            string szUser    = util.GetStringParam(Request, "u");
            string szParam   = util.GetStringParam(Request, "p");

            // This page is public, so that it doesn't require any authentication, making it easy to set up a scheduled task.
            // SO, we do the following:
            // If you request the page from ANOTHER machine, we return an error
            // If you request it from THIS machine, then we perform a very simple authentication (pass an encrypted datetime) to ourselves.
            // If we receive this request with a valid encrypted key, we return the email for the specified user.
            if (String.IsNullOrEmpty(szAuthKey))
            {
                // see if this is coming from the local machine
                string szIPThis = System.Net.Dns.GetHostAddresses(Request.Url.Host)[0].ToString();
                if (String.Compare(Request.UserHostAddress, szIPThis, StringComparison.CurrentCultureIgnoreCase) == 0)
                {
                    // request came from this machine - make a request to ourselves and send it out in email
                    EmailSubscriptionManager em = new EmailSubscriptionManager();
                    em.ActiveBrand = Branding.CurrentBrand;
                    if (util.GetIntParam(Request, "dbg", 0) != 0)
                    {
                        em.UserRestriction = Page.User.Identity.Name;
                    }
                    string szTasksToRun = util.GetStringParam(Request, "tasks");
                    if (!String.IsNullOrEmpty(szTasksToRun))
                    {
                        try { em.TasksToRun = (EmailSubscriptionManager.SelectedTasks)Convert.ToInt32(szTasksToRun, CultureInfo.InvariantCulture); }
                        catch (FormatException)
                        { em.TasksToRun = EmailSubscriptionManager.SelectedTasks.All; }
                    }
                    new Thread(new ThreadStart(em.NightlyRun)).Start();
                    lblSuccess.Visible = true;
                }
                else
                {
                    lblErr.Visible = true;
                }
            }
            else
            {
                try
                {
                    AdminAuthEncryptor enc            = new AdminAuthEncryptor();
                    string             szDate         = enc.Decrypt(szAuthKey);
                    DateTime           dt             = DateTime.Parse(szDate, CultureInfo.InvariantCulture);
                    double             elapsedSeconds = DateTime.Now.Subtract(dt).TotalSeconds;
                    if (elapsedSeconds < 0 || elapsedSeconds > 10)
                    {
                        throw new MyFlightbookException("Unauthorized attempt to view stats for mail");
                    }

                    Profile pf = MyFlightbook.Profile.GetUser(szUser);
                    EmailSubscriptionManager em = new EmailSubscriptionManager(pf.Subscriptions);

                    bool fHasCurrency = em.HasSubscription(SubscriptionType.Currency);
                    bool fHasTotals   = em.HasSubscription(SubscriptionType.Totals);
                    bool fHasMonthly  = em.HasSubscription(SubscriptionType.MonthlyTotals);

                    bool fMonthlySummary = (String.Compare(szParam, "monthly", StringComparison.OrdinalIgnoreCase) == 0);

                    if (!fHasCurrency && !fHasTotals && !fMonthlySummary)
                    {
                        throw new MyFlightbookException("Email requested but no subscriptions found!");
                    }

                    if (fMonthlySummary && !fHasMonthly)
                    {
                        throw new MyFlightbookException("Monthly email requested but user does not subscribe to monthly email");
                    }

                    // Donation solicitation: thank-them if they've made a donation within the previous 12 months, else solicit.
                    lblThankyou.Text         = Branding.ReBrand(Resources.LocalizedText.DonateThankYouTitle);
                    lblSolicitDonation.Text  = Branding.ReBrand(Resources.LocalizedText.DonatePrompt);
                    lnkDonateNow.Text        = Branding.ReBrand(Resources.LocalizedText.DonateSolicitation);
                    lnkDonateNow.NavigateUrl = String.Format(CultureInfo.InvariantCulture, "http://{0}/logbook/Member/EditProfile.aspx/pftDonate", Branding.CurrentBrand.HostName);
                    mvDonations.SetActiveView(Payment.TotalPaidSinceDate(DateTime.Now.AddYears(-1), szUser) > 0 ? vwThankyou : vwPleaseGive);

                    // Fix up the unsubscribe link.
                    lnkUnsubscribe.NavigateUrl      = String.Format(CultureInfo.InvariantCulture, "http://{0}/logbook/Member/EditProfile.aspx/{1}", Branding.CurrentBrand.HostName, tabID.pftPrefs.ToString());
                    lnkQuickUnsubscribe.NavigateUrl = String.Format(CultureInfo.InvariantCulture, "http://{0}/logbook/Public/Unsubscribe.aspx?u={1}", Branding.CurrentBrand.HostName, HttpUtility.UrlEncode(new UserAccessEncryptor().Encrypt(szUser)));

                    // And set HHMM mode explicitly (since not otherwise going to be set in totals
                    mfbTotalSummary.UseHHMM = mfbTotalSummaryYTD.UseHHMM = pf.UsesHHMM;

                    if (fMonthlySummary)
                    {
                        bool fAnnual = (DateTime.Now.Month == 1);  // if it's January, show prior year; else show YTD
                        lblIntroHeader.Text = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailMonthlyMailIntro, Branding.CurrentBrand.AppName);
                        DateTime dtPriorMonth = DateTime.Now.AddMonths(-1);
                        lblTotal.Text     = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailTotalsPriorMonthHeader, dtPriorMonth.ToString("MMMM", CultureInfo.CurrentCulture), dtPriorMonth.Year);
                        lblYTD.Text       = fAnnual ? String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailTotalsPriorYearHeader, DateTime.Now.Year - 1) : String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailTotalsYTDHeader, DateTime.Now.Year);
                        pnlTotals.Visible = pnlYTD.Visible = true;

                        mfbTotalSummary.Username = mfbTotalSummaryYTD.Username = pf.UserName;

                        FlightQuery fqPriorMonth = new FlightQuery(pf.UserName);
                        fqPriorMonth.DateRange            = FlightQuery.DateRanges.PrevMonth;
                        mfbTotalSummary.CustomRestriction = fqPriorMonth;

                        FlightQuery fqYTD = new FlightQuery(pf.UserName);
                        fqYTD.DateRange = fAnnual ? FlightQuery.DateRanges.PrevYear : FlightQuery.DateRanges.YTD;
                        mfbTotalSummaryYTD.CustomRestriction = fqYTD;
                    }
                    else
                    {
                        lblIntroHeader.Text = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailWeeklyMailIntro, Branding.CurrentBrand.AppName);
                        lblCurrency.Text    = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailCurrencyHeader, DateTime.Now.ToLongDateString());
                        lblTotal.Text       = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailTotalsHeader, DateTime.Now.ToLongDateString());

                        if (fHasTotals)
                        {
                            mfbTotalSummary.Username          = pf.UserName;
                            mfbTotalSummary.CustomRestriction = new FlightQuery(pf.UserName);
                            pnlTotals.Visible = true;
                        }
                    }

                    if (fHasCurrency || fMonthlySummary)
                    {
                        mfbCurrency.UserName = pf.UserName;
                        mfbCurrency.RefreshCurrencyTable();
                        pnlCurrency.Visible = true;
                    }
                }
                catch (MyFlightbookException ex)
                {
                    MyFlightbookException.NotifyAdminException(ex);
                    throw;  // ensure that the success tag doesn't show!
                }
                catch (FormatException ex)
                {
                    MyFlightbookException.NotifyAdminException(ex);
                    throw;
                }
            }
        }
    }
    protected void Page_Load(object sender, EventArgs e)
    {
        // see if this is coming from the local machine - reject anything that isn't.
        string szIPThis = System.Net.Dns.GetHostAddresses(Request.Url.Host)[0].ToString();

        if (Request.UserHostAddress.CompareCurrentCultureIgnoreCase(szIPThis) != 0)
        {
            throw new UnauthorizedAccessException("Attempt to view this page from other than local machine");
        }

        if (!IsPostBack)
        {
            cssRef.Href = "~/Public/Stylesheet.css?v=18".ToAbsoluteURL(Request.Url.Scheme, Branding.CurrentBrand.HostName, Request.Url.Port).ToString();
            baseRef.Attributes["href"] = "~/Public/".ToAbsoluteURL(Request.Url.Scheme, Branding.CurrentBrand.HostName, Request.Url.Port).ToString();

            string szAuthKey = util.GetStringParam(Request, "k");
            string szUser    = util.GetStringParam(Request, "u");
            string szParam   = util.GetStringParam(Request, "p");

            // This page is public, so that it doesn't require any authentication, making it easy to set up a scheduled task.
            // SO, we do the following:
            // If you request the page from ANOTHER machine, we return an error
            // If you request it from THIS machine, then we perform a very simple authentication (pass an encrypted datetime) to ourselves.
            // If we receive this request with a valid encrypted key, we return the email for the specified user.
            if (String.IsNullOrEmpty(szAuthKey))
            {
                KickOffRun();
            }
            else
            {
                try
                {
                    if (szAuthKey.CompareCurrentCultureIgnoreCase("local") != 0 || !Page.User.Identity.IsAuthenticated)
                    {
                        AdminAuthEncryptor enc            = new AdminAuthEncryptor();
                        string             szDate         = enc.Decrypt(szAuthKey);
                        DateTime           dt             = DateTime.Parse(szDate, CultureInfo.InvariantCulture);
                        double             elapsedSeconds = DateTime.Now.Subtract(dt).TotalSeconds;
                        if (elapsedSeconds < 0 || elapsedSeconds > 10)
                        {
                            throw new MyFlightbookException("Unauthorized attempt to view stats for mail");
                        }
                    }

                    Profile pf = MyFlightbook.Profile.GetUser(szUser);
                    EmailSubscriptionManager em = new EmailSubscriptionManager(pf.Subscriptions);

                    IEnumerable <CurrencyStatusItem> rgExpiringCurrencies    = null;
                    IEnumerable <CurrencyStatusItem> rgPrecomputedCurrencies = null;
                    if (pf.AssociatedData.TryGetValue(CurrencyStatusItem.AssociatedDateKeyExpiringCurrencies, out object o))
                    {
                        rgExpiringCurrencies = (IEnumerable <CurrencyStatusItem>)o;
                    }
                    if (pf.AssociatedData.TryGetValue(CurrencyStatusItem.AssociatedDataKeyCachedCurrencies, out o))
                    {
                        rgPrecomputedCurrencies = (IEnumerable <CurrencyStatusItem>)o;
                    }

                    pf.AssociatedData.Remove(CurrencyStatusItem.AssociatedDateKeyExpiringCurrencies);
                    pf.AssociatedData.Remove(CurrencyStatusItem.AssociatedDataKeyCachedCurrencies);

                    bool fHasCurrency = em.HasSubscription(SubscriptionType.Currency) || (em.HasSubscription(SubscriptionType.Expiration) && rgExpiringCurrencies != null && rgPrecomputedCurrencies != null);
                    bool fHasTotals   = em.HasSubscription(SubscriptionType.Totals);
                    bool fHasMonthly  = em.HasSubscription(SubscriptionType.MonthlyTotals);

                    bool fMonthlySummary = (String.Compare(szParam, "monthly", StringComparison.OrdinalIgnoreCase) == 0);

                    if (!fHasCurrency && !fHasTotals && !fMonthlySummary)
                    {
                        throw new MyFlightbookException("Email requested but no subscriptions found!");
                    }

                    if (fMonthlySummary && !fHasMonthly)
                    {
                        throw new MyFlightbookException("Monthly email requested but user does not subscribe to monthly email");
                    }

                    // Donation solicitation: thank-them if they've made a donation within the previous 12 months, else solicit.
                    lblThankyou.Text         = Branding.ReBrand(Resources.LocalizedText.DonateThankYouTitle);
                    lblSolicitDonation.Text  = Branding.ReBrand(Resources.LocalizedText.DonatePrompt);
                    lnkDonateNow.Text        = Branding.ReBrand(Resources.LocalizedText.DonateSolicitation);
                    lnkDonateNow.NavigateUrl = String.Format(CultureInfo.InvariantCulture, "http://{0}{1}", Branding.CurrentBrand.HostName, VirtualPathUtility.ToAbsolute("~/Member/EditProfile.aspx/pftDonate"));
                    mvDonations.SetActiveView(Payment.TotalPaidSinceDate(DateTime.Now.AddYears(-1), szUser) > 0 ? vwThankyou : vwPleaseGive);

                    // Fix up the unsubscribe link.
                    lnkUnsubscribe.NavigateUrl      = String.Format(CultureInfo.InvariantCulture, "http://{0}{1}/{2}", Branding.CurrentBrand.HostName, VirtualPathUtility.ToAbsolute("~/Member/EditProfile.aspx"), tabID.pftPrefs.ToString());
                    lnkQuickUnsubscribe.NavigateUrl = String.Format(CultureInfo.InvariantCulture, "http://{0}{1}?u={2}", Branding.CurrentBrand.HostName, VirtualPathUtility.ToAbsolute("~/Public/Unsubscribe.aspx"), HttpUtility.UrlEncode(new UserAccessEncryptor().Encrypt(szUser)));

                    // And set HHMM mode explicitly (since not otherwise going to be set in totals
                    mfbTotalSummary.UseHHMM = mfbTotalSummaryYTD.UseHHMM = pf.UsesHHMM;

                    if (fMonthlySummary)
                    {
                        bool fAnnual = (DateTime.Now.Month == 1);  // if it's January, show prior year; else show YTD
                        lblIntroHeader.Text = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailMonthlyMailIntro, Branding.CurrentBrand.AppName);
                        DateTime dtPriorMonth = DateTime.Now.AddMonths(-1);
                        lblTotal.Text     = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailTotalsPriorMonthHeader, dtPriorMonth.ToString("MMMM", CultureInfo.CurrentCulture), dtPriorMonth.Year);
                        lblYTD.Text       = fAnnual ? String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailTotalsPriorYearHeader, DateTime.Now.Year - 1) : String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailTotalsYTDHeader, DateTime.Now.Year);
                        pnlTotals.Visible = pnlYTD.Visible = true;

                        mfbTotalSummary.Username = mfbTotalSummaryYTD.Username = pf.UserName;

                        FlightQuery fqPriorMonth = new FlightQuery(pf.UserName)
                        {
                            DateRange = FlightQuery.DateRanges.PrevMonth
                        };
                        mfbTotalSummary.CustomRestriction = fqPriorMonth;

                        FlightQuery fqYTD = new FlightQuery(pf.UserName)
                        {
                            DateRange = fAnnual ? FlightQuery.DateRanges.PrevYear : FlightQuery.DateRanges.YTD
                        };
                        mfbTotalSummaryYTD.CustomRestriction = fqYTD;

                        if (fAnnual)
                        {
                            mfbRecentAchievements.Refresh(szUser, new DateTime(DateTime.Now.Year - 1, 1, 1), new DateTime(DateTime.Now.Year - 1, 12, 31), true);
                        }
                        else
                        {
                            mfbRecentAchievements.Refresh(szUser, new DateTime(DateTime.Now.Year, 1, 1), DateTime.Now, true);
                        }

                        lblRecentAchievementsTitle.Text    = mfbRecentAchievements.Summary;
                        lblRecentAchievementsTitle.Visible = mfbRecentAchievements.AchievementCount > 0;
                    }
                    else
                    {
                        lblIntroHeader.Text = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailWeeklyMailIntro, Branding.CurrentBrand.AppName);
                        lblCurrency.Text    = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailCurrencyHeader, DateTime.Now.ToLongDateString());
                        lblTotal.Text       = String.Format(CultureInfo.CurrentCulture, Resources.Profile.EmailTotalsHeader, DateTime.Now.ToLongDateString());

                        if (fHasTotals)
                        {
                            mfbTotalSummary.Username          = pf.UserName;
                            mfbTotalSummary.CustomRestriction = new FlightQuery(pf.UserName);
                            pnlTotals.Visible = true;
                        }
                    }

                    if (fHasCurrency || fMonthlySummary)
                    {
                        mfbCurrency.UserName = pf.UserName;
                        mfbCurrency.RefreshCurrencyTable(rgPrecomputedCurrencies);
                        pnlCurrency.Visible = true;

                        if (rgExpiringCurrencies != null && rgExpiringCurrencies.Count() > 0)
                        {
                            pnlExpiringCurrencies.Visible = true;
                            rptExpiring.DataSource        = rgExpiringCurrencies;
                            rptExpiring.DataBind();
                        }
                    }
                }
                catch (MyFlightbookException ex)
                {
                    MyFlightbookException.NotifyAdminException(ex);
                    throw;  // ensure that the success tag doesn't show!
                }
                catch (FormatException ex)
                {
                    MyFlightbookException.NotifyAdminException(ex);
                    throw;
                }
            }
        }
    }