using System;
using System.Data;
using System.Text;
using System.Web;
using System.Web.UI;
using System.Xml;
using CMS.CMSHelper;
using CMS.GlobalHelper;
using CMS.MembershipProvider;
using CMS.PortalControls;
using CMS.PortalEngine;
using CMS.SettingsProvider;
using CMS.SiteProvider;
using CMS.DocumentEngine;
using CMS.URLRewritingEngine;
using CMS.WebAnalytics;
public partial class CMSWebParts_Membership_LinkedIn_LinkedInUsersRequiredData : CMSAbstractWebPart
{
#region "Constants"
protected const string SESSION_NAME_USERDATA = "LinkedInUserData";
#endregion
#region "Private variables"
private LinkedInHelper linkedInHelper = null;
#endregion
#region "Public properties"
///
/// Gets or sets the value that indicates whether email to user should be sent.
///
public bool SendWelcomeEmail
{
get
{
return ValidationHelper.GetBoolean(GetValue("SendWelcomeEmail"), true);
}
set
{
SetValue("SendWelcomeEmail", value);
}
}
///
/// Gets or sets registration approval page URL.
///
public string ApprovalPage
{
get
{
return DataHelper.GetNotEmpty(GetValue("ApprovalPage"), "");
}
set
{
SetValue("ApprovalPage", value);
}
}
///
/// Gets or sets the sender email (from).
///
public string FromAddress
{
get
{
return DataHelper.GetNotEmpty(GetValue("FromAddress"), SettingsKeyProvider.GetStringValue(CMSContext.CurrentSiteName + ".CMSNoreplyEmailAddress"));
}
set
{
SetValue("FromAddress", value);
}
}
///
/// Gets or sets the recipient email (to).
///
public string ToAddress
{
get
{
return DataHelper.GetNotEmpty(GetValue("ToAddress"), SettingsKeyProvider.GetStringValue(CMSContext.CurrentSiteName + ".CMSAdminEmailAddress"));
}
set
{
SetValue("ToAddress", value);
}
}
///
/// Gets or sets the value that indicates whether after successful registration is
/// notification email sent to the administrator.
///
public bool NotifyAdministrator
{
get
{
return ValidationHelper.GetBoolean(GetValue("NotifyAdministrator"), false);
}
set
{
SetValue("NotifyAdministrator", value);
}
}
///
/// Gets or sets the message which is displayed after successful registration.
///
public string DisplayMessage
{
get
{
return ValidationHelper.GetString(GetValue("DisplayMessage"), "");
}
set
{
SetValue("DisplayMessage", value);
}
}
///
/// Gets or sets the value which enables abitity of new user to set password.
///
public bool AllowFormsAuthentication
{
get
{
return ValidationHelper.GetBoolean(GetValue("AllowFormsAuthentication"), false);
}
set
{
SetValue("AllowFormsAuthentication", value);
plcPasswordNew.Visible = value;
}
}
///
/// Gets or sets the value which enables abitity join liveid with existing account.
///
public bool AllowExistingUser
{
get
{
return ValidationHelper.GetBoolean(GetValue("AllowExistingUser"), true);
}
set
{
SetValue("AllowExistingUser", value);
plcPasswordNew.Visible = value;
}
}
///
/// Gets or sets the default target url (redirection when the user is logged in).
///
public string DefaultTargetUrl
{
get
{
return ValidationHelper.GetString(GetValue("DefaultTargetUrl"), "");
}
set
{
SetValue("DefaultTargetUrl", value);
}
}
///
/// Gets or sets the value which determines the behaviour for no LinkedIn users.
///
public bool HideForNoLinkedInUserID
{
get
{
return ValidationHelper.GetBoolean(GetValue("HideForNoLinkedInUserID"), true);
}
set
{
SetValue("HideForNoLinkedInUserID", value);
}
}
#endregion
#region "Conversion properties"
///
/// Gets or sets the conversion track name used after successful registration.
///
public string TrackConversionName
{
get
{
return ValidationHelper.GetString(GetValue("TrackConversionName"), "");
}
set
{
if ((value != null) && (value.Length > 400))
{
value = value.Substring(0, 400);
}
SetValue("TrackConversionName", value);
}
}
///
/// Gets or sets the conversion value used after successful registration.
///
public double ConversionValue
{
get
{
return ValidationHelper.GetDoubleSystem(GetValue("ConversionValue"), 0);
}
set
{
SetValue("ConversionValue", value);
}
}
#endregion
#region "Page events"
///
/// Content loaded event handler.
///
public override void OnContentLoaded()
{
base.OnContentLoaded();
SetupControl();
}
///
/// Initializes the control properties.
///
protected void SetupControl()
{
if (!StopProcessing)
{
plcError.Visible = false;
// Check renamed DLL library
if (!CMSOpenIDHelper.CheckOpenIdDLL())
{
// Error label is displayed when OpenID library is not enabled
lblError.ResourceString = "mem.openid.library";
plcError.Visible = true;
plcContent.Visible = false;
}
string currentSiteName = CMSContext.CurrentSiteName;
// Check if LinkedIn module is enabled
if (!LinkedInHelper.LinkedInIsAvailable(CMSContext.CurrentSiteName) && !plcError.Visible)
{
// Error label is displayed only in Design mode
if (CMSContext.ViewMode == ViewModeEnum.Design)
{
StringBuilder parameter = new StringBuilder();
parameter.Append(GetString("header.sitemanager") + " -> ");
parameter.Append(GetString("settingscategory.cmssettings") + " -> ");
parameter.Append(GetString("settingscategory.socialnetworks") + " -> ");
parameter.Append(GetString("settingscategory.cmslinkedin"));
if (CMSContext.CurrentUser.UserSiteManagerAdmin)
{
// Make it link for SiteManager Admin
parameter.Insert(0, "");
parameter.Append("");
}
lblError.Text = String.Format(GetString("mem.linkedin.disabled"), parameter.ToString());
plcError.Visible = true;
plcContent.Visible = false;
}
// In other modes is webpart hidden
else
{
Visible = false;
}
}
// Display webpart when no error occured
if (!plcError.Visible && Visible)
{
// Hide webpart if user is authenticated
if (CMSContext.CurrentUser.IsAuthenticated())
{
Visible = false;
return;
}
plcPasswordNew.Visible = AllowFormsAuthentication;
pnlExistingUser.Visible = AllowExistingUser;
linkedInHelper = new LinkedInHelper();
linkedInHelper.Initialize(SessionHelper.GetValue(SESSION_NAME_USERDATA) as XmlDocument);
// There is no LinkedIn user ID stored in session - hide all
if (string.IsNullOrEmpty(linkedInHelper.MemberId) && HideForNoLinkedInUserID)
{
Visible = false;
}
else if (!RequestHelper.IsPostBack())
{
LoadData();
}
}
}
else
{
Visible = false;
}
}
///
/// Handles btnOkExist click, joins existing user with LinkedIn member id.
///
protected void btnOkExist_Click(object sender, EventArgs e)
{
if (!String.IsNullOrEmpty(linkedInHelper.MemberId))
{
if (!String.IsNullOrEmpty(txtUserName.Text))
{
// Try to authenticate user
UserInfo ui = AuthenticationHelper.AuthenticateUser(txtUserName.Text, txtPassword.Text, CMSContext.CurrentSiteName);
// Check banned IPs
BannedIPInfoProvider.CheckIPandRedirect(CMSContext.CurrentSiteName, BanControlEnum.Login);
if (ui != null)
{
// Add LinkedIn profile member id to user
ui.UserSettings.UserLinkedInID = linkedInHelper.MemberId;
UserInfoProvider.SetUserInfo(ui);
// Set authentication cookie and redirect to page
SetAuthCookieAndRedirect(ui);
}
else // Invalid credentials
{
lblError.Text = GetString("Login_FailureText");
plcError.Visible = true;
}
}
else // User did not fill the form
{
lblError.Text = GetString("mem.linkedin.fillloginform");
plcError.Visible = true;
}
}
}
///
/// Handles btnOkNew click, creates new user and joins it with LinkedIn member id.
///
protected void btnOkNew_Click(object sender, EventArgs e)
{
if (!String.IsNullOrEmpty(linkedInHelper.MemberId))
{
string currentSiteName = CMSContext.CurrentSiteName;
// Validate entered values
string errorMessage = new Validator().IsRegularExp(txtUserNameNew.Text, "^([a-zA-Z0-9_\\-\\.@]+)$", GetString("mem.linkedin.fillcorrectusername"))
.IsEmail(txtEmail.Text, GetString("mem.linkedin.fillvalidemail")).Result;
string password = passStrength.Text;
// If password is enabled to set, check it
if (plcPasswordNew.Visible && (String.IsNullOrEmpty(errorMessage)))
{
if (String.IsNullOrEmpty(password))
{
errorMessage = GetString("mem.linkedin.specifyyourpass");
}
else if (password != txtConfirmPassword.Text.Trim())
{
errorMessage = GetString("webparts_membership_registrationform.passwordonotmatch");
}
// Check policy
if (!passStrength.IsValid())
{
errorMessage = AuthenticationHelper.GetPolicyViolationMessage(CMSContext.CurrentSiteName);
}
}
// Check whether email is unique if it is required
if ((String.IsNullOrEmpty(errorMessage)) && !UserInfoProvider.IsEmailUnique(txtEmail.Text.Trim(), currentSiteName, 0))
{
errorMessage = GetString("UserInfo.EmailAlreadyExist");
}
// Check reserved names
if ((String.IsNullOrEmpty(errorMessage)) && UserInfoProvider.NameIsReserved(currentSiteName, txtUserNameNew.Text.Trim()))
{
errorMessage = GetString("Webparts_Membership_RegistrationForm.UserNameReserved").Replace("%%name%%", HTMLHelper.HTMLEncode(txtUserNameNew.Text.Trim()));
}
if (String.IsNullOrEmpty(errorMessage))
{
// Check if user with given username already exists
UserInfo ui = UserInfoProvider.GetUserInfo(txtUserNameNew.Text.Trim());
// User with given username is already registered
if (ui != null)
{
plcError.Visible = true;
lblError.Text = GetString("mem.openid.usernameregistered");
}
else
{
// Register new user
string error = DisplayMessage;
ui = AuthenticationHelper.AuthenticateLinkedInUser(linkedInHelper.MemberId, linkedInHelper.FirstName, linkedInHelper.LastName, currentSiteName, true, false, ref error);
DisplayMessage = error;
if (ui != null)
{
// Set additional information
ui.UserName = ui.UserNickName = txtUserNameNew.Text.Trim();
ui.Email = txtEmail.Text;
if (linkedInHelper.BirthDate != DateTimeHelper.ZERO_TIME)
{
ui.UserSettings.UserDateOfBirth = linkedInHelper.BirthDate;
}
// Set password
if (plcPasswordNew.Visible)
{
UserInfoProvider.SetPassword(ui, password);
// If user can choose password then is not considered external(external user can't login in common way)
ui.IsExternal = false;
}
UserInfoProvider.SetUserInfo(ui);
// Remove live user object from session, won't be needed
SessionHelper.Remove(SESSION_NAME_USERDATA);
// Notify administrator
bool requiresConfirmation = SettingsKeyProvider.GetBoolValue(CMSContext.CurrentSiteName + ".CMSRegistrationEmailConfirmation");
if (!requiresConfirmation && NotifyAdministrator && (FromAddress != String.Empty) && (ToAddress != String.Empty))
{
AuthenticationHelper.NotifyAdministrator(ui, FromAddress, ToAddress);
}
// Send registration e-mails
AuthenticationHelper.SendRegistrationEmails(ui, ApprovalPage, password, true, SendWelcomeEmail);
// Log registration into analytics
AuthenticationHelper.TrackUserRegistration(TrackConversionName, ConversionValue, currentSiteName, ui);
Activity activity = new ActivityRegistration(ui, CMSContext.CurrentDocument, CMSContext.ActivityEnvironmentVariables);
if (activity.Data != null)
{
activity.Data.ContactID = ModuleCommands.OnlineMarketingGetUserLoginContactID(ui);
activity.Log();
}
// Set authentication cookie and redirect to page
SetAuthCookieAndRedirect(ui);
if (!String.IsNullOrEmpty(DisplayMessage))
{
lblInfo.Visible = true;
lblInfo.Text = DisplayMessage;
plcForm.Visible = false;
}
else
{
URLHelper.Redirect(ResolveUrl("~/Default.aspx"));
}
}
}
}
// Validation failed - display error message
else
{
lblError.Text = errorMessage;
plcError.Visible = true;
}
}
}
#endregion
#region "Private methods"
///
/// Helper method, sets authentication cookie and redirects to return URL or default page.
///
/// User info
private void SetAuthCookieAndRedirect(UserInfo ui)
{
// Create autentification cookie
if (ui.Enabled)
{
AuthenticationHelper.SetAuthCookieWithUserData(ui.UserName, true, Session.Timeout, new string[] { "linkedinlogin" });
int contactID = ModuleCommands.OnlineMarketingGetUserLoginContactID(ui);
Activity activityLogin = new ActivityUserLogin(contactID, ui, CMSContext.CurrentDocument, CMSContext.ActivityEnvironmentVariables);
activityLogin.Log();
string returnUrl = QueryHelper.GetString("returnurl", null);
// Redirect to ReturnURL
if (!String.IsNullOrEmpty(returnUrl))
{
URLHelper.Redirect(ResolveUrl(HttpUtility.UrlDecode(returnUrl)));
}
// Redirect to default page
else if (!String.IsNullOrEmpty(DefaultTargetUrl))
{
URLHelper.Redirect(ResolveUrl(DefaultTargetUrl));
}
// Otherwise refresh current page
else
{
URLHelper.Redirect(URLRewriter.CurrentURL);
}
}
}
///
/// Loads textboxes with LinkedIn data.
///
private void LoadData()
{
string userName = linkedInHelper.FirstName;
if (!String.IsNullOrEmpty(linkedInHelper.LastName))
{
if (String.IsNullOrEmpty(userName))
{
userName = linkedInHelper.LastName;
}
else
{
userName += "_" + linkedInHelper.LastName;
}
}
txtUserNameNew.Text = userName;
}
#endregion
}