Click here to Skip to main content
15,885,366 members
Articles / Web Development / HTML

Gallery Server Pro - An ASP.NET Gallery for Sharing Photos, Video, Audio and Other Media

Rate me:
Please Sign up or sign in to vote.
4.86/5 (131 votes)
18 Oct 2013GPL331 min read 825.2K   539  
Gallery Server Pro is a complete, stable ASP.NET gallery for sharing photos, video, audio and other media. This article presents the overall architecture and major features.
using System;
using System.Globalization;
using GalleryServerPro.Business;
using GalleryServerPro.Business.Interfaces;
using GalleryServerPro.Web.Controller;

namespace GalleryServerPro.Web.Pages
{
	/// <summary>
	/// A page-like user control that provides password recovery services.
	/// </summary>
	public partial class recoverpassword : Pages.GalleryPage
	{
		/// <summary>
		/// Handles the Load event of the Page control.
		/// </summary>
		/// <param name="sender">The source of the event.</param>
		/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
		protected void Page_Load(object sender, EventArgs e)
		{
			ConfigureControls();
		}

		private void ConfigureControls()
		{
			txtUserName.Focus();

			string msgTitle = String.Empty;
			string msgDetail = String.Empty;

			if (UserController.RequiresQuestionAndAnswer)
			{
				msgTitle = Resources.GalleryServerPro.Anon_Pwd_Recovery_Disabled_Header;
				msgDetail = Resources.GalleryServerPro.Anon_Pwd_Recovery_Disabled_Because_Question_Answer_Is_Enabled_Body;
			}

			if (!UserController.EnablePasswordRetrieval)
			{
				msgTitle = Resources.GalleryServerPro.Anon_Pwd_Recovery_Disabled_Header;
				msgDetail = Resources.GalleryServerPro.Anon_Pwd_Recovery_Disabled_Because_Password_Retrieval_Is_Disabled_Body;
			}

			if (!String.IsNullOrEmpty(msgTitle))
			{
				pnlMsgContainer.Controls.Clear();
				GalleryServerPro.Web.Controls.usermessage msgBox = (GalleryServerPro.Web.Controls.usermessage)Page.LoadControl(Util.GetUrl("/controls/usermessage.ascx"));

				msgBox.IconStyle = GalleryServerPro.Web.MessageStyle.Warning;
				msgBox.MessageTitle = msgTitle;
				msgBox.MessageDetail = msgDetail;
				msgBox.CssClass = "um3ContainerCss gsp_rounded10 gsp_floatcontainer";
				msgBox.HeaderCssClass = "um1HeaderCss";
				msgBox.DetailCssClass = "um1DetailCss";
				pnlMsgContainer.Controls.Add(msgBox);

				pnlPwdRecoverContainer.Visible = false;
			}
		}

		/// <summary>
		/// Handles the Click event of the btnRetrievePassword control.
		/// </summary>
		/// <param name="sender">The source of the event.</param>
		/// <param name="e">The <see cref="System.EventArgs"/> instance containing the event data.</param>
		protected void btnRetrievePassword_Click(object sender, EventArgs e)
		{
			RecoverPassword();
		}

		private void RecoverPassword()
		{
			GalleryServerPro.Web.MessageStyle iconStyle = GalleryServerPro.Web.MessageStyle.Warning;
			string msgTitle;
			string msgDetail;

			IUserAccount user = UserController.GetUser(txtUserName.Text, true);

			if (user == null)
			{
				msgTitle = Resources.GalleryServerPro.Anon_Pwd_Recovery_Cannot_Retrieve_Pwd_Header;
				msgDetail = String.Format(CultureInfo.CurrentCulture, "<p>{0}</p>", Resources.GalleryServerPro.Anon_Pwd_Recovery_GetUser_Throws_Exception_Message);
			}
			else
			{
				if (HelperFunctions.IsValidEmail(user.Email))
				{
					// Send user's password in an email.
					try
					{
						EmailController.SendNotificationEmail(user, Entity.EmailTemplateForm.UserNotificationPasswordRecovery, GalleryId, false);

						msgTitle = Resources.GalleryServerPro.Anon_Pwd_Recovery_Confirmation_Title;
						string url = String.Format(CultureInfo.CurrentCulture, " <a href='{0}'>{1}</a>", Web.Util.GetUrl(PageId.login), Resources.GalleryServerPro.Login_Button_Text);
						msgDetail = String.Concat(String.Format(CultureInfo.CurrentCulture, Resources.GalleryServerPro.Anon_Pwd_Recovery_Confirmation_Body, user.Email), url);
						iconStyle = GalleryServerPro.Web.MessageStyle.Information;
						pnlPwdRecoverContainer.Visible = false;
					}
					catch (Exception ex)
					{
						string errorMsg;
						if (this.GallerySettings.ShowErrorDetails)
							errorMsg = Util.GetExceptionDetails(ex);
						else
							errorMsg = Resources.GalleryServerPro.Error_Generic_Msg;

						msgTitle = Resources.GalleryServerPro.Anon_Pwd_Recovery_Cannot_Retrieve_Pwd_Header;
						msgDetail = "<p>" + String.Format(CultureInfo.CurrentCulture, Resources.GalleryServerPro.Anon_Pwd_Recovery_Cannot_Retrieve_Pwd_Generic_Error, errorMsg) + "</p>";
					}
				}
				else // User is valid but does not have a valid email
				{
					msgTitle = Resources.GalleryServerPro.Anon_Pwd_Recovery_Cannot_Retrieve_Pwd_Header;
					msgDetail = String.Format(CultureInfo.CurrentCulture, "<p>{0}</p>", Resources.GalleryServerPro.Anon_Pwd_Recovery_Cannot_Retrieve_Pwd_Invalid_Email);
				}
			}

			#region Render Confirmation Message

			pnlMsgContainer.Controls.Clear();
			GalleryServerPro.Web.Controls.usermessage msgBox = (GalleryServerPro.Web.Controls.usermessage)Page.LoadControl(Util.GetUrl("/controls/usermessage.ascx"));
			msgBox.IconStyle = iconStyle;
			msgBox.MessageTitle = msgTitle;
			msgBox.MessageDetail = msgDetail;
			msgBox.CssClass = "um3ContainerCss";
			msgBox.HeaderCssClass = "um1HeaderCss";
			msgBox.DetailCssClass = "um1DetailCss";
			pnlMsgContainer.Controls.Add(msgBox);

			#endregion
		}
	}
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The GNU General Public License (GPLv3)


Written By
Software Developer (Senior) Tech Info Systems
United States United States
I have nearly 20 years of industry experience in software development, architecture, and Microsoft Office products. My company Tech Info Systems provides custom software development services for corporations, governments, and other organizations. Tech Info Systems is a registered member of the Microsoft Partner Program and I am a Microsoft Certified Professional Developer (MCPD).

I am the creator and lead developer of Gallery Server Pro, a free, open source ASP.NET gallery for sharing photos, video, audio, documents, and other files over the web. It has been developed over several years and has involved thousands of hours. The end result is a robust, configurable, and professional grade gallery that can be integrated into your web site, whether you are a large corporation, small business, professional photographer, or a local church.

Comments and Discussions