SignIn() private method

private SignIn ( String appKey, String username, String password ) : ApiResponse,
appKey String
username String
password String
return ApiResponse,
Beispiel #1
0
 public async Task Test()
 {
     var username = "******";
     var password = "******";
     var api = new Api();
     await api.SignIn(username, password);
     var missions = await api.GetCommunityMissions(Models.BattlelogGame.BFH);
     Assert.NotNull(missions);
 }
        void SignIn()
        {
            Console.Write("email: ");
            var email = Console.ReadLine();

            Console.Write("password: ");
            var pwd = ReadPassword();

            Console.WriteLine();

            api  = new Api();
            data = api.SignIn(email, pwd);

            StreamCommand();
        }
        void TrySignin()
        {
            var email    = (emailField.Text ?? "").Trim();
            var password = (passwordField.Text ?? "");

            if (string.IsNullOrEmpty(email) || string.IsNullOrEmpty(password))
            {
                failureAlert = new UIAlertView(
                    "Incomplete Information",
                    "Please provide both an email address and password.",
                    null,
                    "OK");
                failureAlert.Show();
                return;
            }

            var cookeisPath = System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments),
                                                     Uri.EscapeDataString("cookies-" + email));
            var api = new Api(cookeisPath);


            NavigationItem.LeftBarButtonItem.Enabled  = false;
            NavigationItem.RightBarButtonItem.Enabled = false;
            UIApplication.SharedApplication.NetworkActivityIndicatorVisible = true;

            ThreadPool.QueueUserWorkItem(delegate {
                try {
                    api.SignIn(email, password);
                    BeginInvokeOnMainThread(delegate {
                        OnSigninSuccess(api);
                    });
                }
                catch (Exception error) {
                    BeginInvokeOnMainThread(delegate {
                        OnSigninFailure(error);
                    });
                }
                finally {
                    BeginInvokeOnMainThread(delegate {
                        NavigationItem.LeftBarButtonItem.Enabled  = true;
                        NavigationItem.RightBarButtonItem.Enabled = true;
                        UIApplication.SharedApplication.NetworkActivityIndicatorVisible = false;
                    });
                }
            });
        }
Beispiel #4
0
        private async Task <Response> LoginUser()
        {
            var dateTimeOffset = Request.Form.DateTimeOffset;
            var username       = Request.Form.username.Value;

            Log.Debug("Username \"{0}\" attempting to login", username);
            if (string.IsNullOrWhiteSpace(username))
            {
                Session["TempMessage"] = Resources.UI.UserLogin_IncorrectUserPass;
                var uri = Linker.BuildRelativeUri(Context, "UserLoginIndex");
                return(Response.AsRedirect(uri.ToString()));  // TODO Check this
            }

            var authenticated = false;

            var settings = await AuthService.GetSettingsAsync();

            var plexSettings = await PlexSettings.GetSettingsAsync();

            if (IsUserInDeniedList(username, settings))
            {
                Log.Debug("User is in denied list, not allowing them to authenticate");
                Session["TempMessage"] = Resources.UI.UserLogin_IncorrectUserPass;
                var uri = Linker.BuildRelativeUri(Context, "UserLoginIndex");
                return(Response.AsRedirect(uri.ToString()));  // TODO Check this
            }

            var password = string.Empty;

            if (settings.UsePassword)
            {
                Log.Debug("Using password");
                password = Request.Form.password.Value;
            }


            if (settings.UserAuthentication && settings.UsePassword) // Authenticate with Plex
            {
                Log.Debug("Need to auth and also provide pass");
                var signedIn = (PlexAuthentication)Api.SignIn(username, password);
                if (signedIn.user?.authentication_token != null)
                {
                    Log.Debug("Correct credentials, checking if the user is account owner or in the friends list");
                    if (CheckIfUserIsOwner(plexSettings.PlexAuthToken, signedIn.user?.username))
                    {
                        Log.Debug("User is the account owner");
                        authenticated = true;
                    }
                    else
                    {
                        authenticated = CheckIfUserIsInPlexFriends(username, plexSettings.PlexAuthToken);
                        Log.Debug("Friends list result = {0}", authenticated);
                    }
                }
            }
            else if (settings.UserAuthentication) // Check against the users in Plex
            {
                Log.Debug("Need to auth");
                authenticated = CheckIfUserIsInPlexFriends(username, plexSettings.PlexAuthToken);
                if (CheckIfUserIsOwner(plexSettings.PlexAuthToken, username))
                {
                    Log.Debug("User is the account owner");
                    authenticated = true;
                }
                Log.Debug("Friends list result = {0}", authenticated);
            }
            else if (!settings.UserAuthentication) // No auth, let them pass!
            {
                Log.Debug("No need to auth");
                authenticated = true;
            }

            if (authenticated)
            {
                Log.Debug("We are authenticated! Setting session.");
                // Add to the session (Used in the BaseModules)
                Session[SessionKeys.UsernameKey] = (string)username;
            }

            Session[SessionKeys.ClientDateTimeOffsetKey] = (int)dateTimeOffset;

            if (!authenticated)
            {
                var uri = Linker.BuildRelativeUri(Context, "UserLoginIndex");
                Session["TempMessage"] = Resources.UI.UserLogin_IncorrectUserPass;
                return(Response.AsRedirect(uri.ToString())); // TODO Check this
            }

            var landingSettings = await LandingPageSettings.GetSettingsAsync();

            if (landingSettings.Enabled)
            {
                if (!landingSettings.BeforeLogin)
                {
                    var uri = Linker.BuildRelativeUri(Context, "LandingPageIndex");
                    return(Response.AsRedirect(uri.ToString()));
                }
            }
            var retVal = Linker.BuildRelativeUri(Context, "SearchIndex");

            return(Response.AsRedirect(retVal.ToString())); // TODO Check this
        }
        void TrySignin()
        {
            var email = (emailField.Text ?? "").Trim ();
            var password = (passwordField.Text ?? "");

            if (string.IsNullOrEmpty (email) || string.IsNullOrEmpty (password)) {
                failureAlert = new UIAlertView (
                    "Incomplete Information",
                    "Please provide both an email address and password.",
                    null,
                    "OK");
                failureAlert.Show ();
                return;
            }

            var cookeisPath = System.IO.Path.Combine (Environment.GetFolderPath (Environment.SpecialFolder.MyDocuments),
                Uri.EscapeDataString ("cookies-" + email));
            var api = new Api (cookeisPath);

            NavigationItem.LeftBarButtonItem.Enabled = false;
            NavigationItem.RightBarButtonItem.Enabled = false;
            UIApplication.SharedApplication.NetworkActivityIndicatorVisible = true;

            ThreadPool.QueueUserWorkItem (delegate {
                try {
                    api.SignIn (email, password);
                    BeginInvokeOnMainThread (delegate {
                        OnSigninSuccess (api);
                    });
                }
                catch (Exception error) {
                    BeginInvokeOnMainThread (delegate {
                        OnSigninFailure (error);
                    });
                }
                finally {
                    BeginInvokeOnMainThread (delegate {
                        NavigationItem.LeftBarButtonItem.Enabled = true;
                        NavigationItem.RightBarButtonItem.Enabled = true;
                        UIApplication.SharedApplication.NetworkActivityIndicatorVisible = false;
                    });
                }
            });
        }
Beispiel #6
0
        private async Task <Response> LoginUser()
        {
            var userId         = string.Empty;
            var loginGuid      = Guid.Empty;
            var dateTimeOffset = Request.Form.DateTimeOffset;
            var username       = Request.Form.username.Value;

            Log.Debug("Username \"{0}\" attempting to login", username);
            if (string.IsNullOrWhiteSpace(username))
            {
                Session["TempMessage"] = Resources.UI.UserLogin_IncorrectUserPass;
                var uri = Linker.BuildRelativeUri(Context, "UserLoginIndex");
                return(Response.AsRedirect(uri.ToString()));
            }

            var authenticated = false;
            var isOwner       = false;

            var settings = await AuthService.GetSettingsAsync();

            var plexSettings = await PlexSettings.GetSettingsAsync();

            if (IsUserInDeniedList(username, settings))
            {
                Log.Debug("User is in denied list, not allowing them to authenticate");
                Session["TempMessage"] = Resources.UI.UserLogin_IncorrectUserPass;
                var uri = Linker.BuildRelativeUri(Context, "UserLoginIndex");
                return(Response.AsRedirect(uri.ToString()));
            }

            var password = string.Empty;

            if (settings.UsePassword)
            {
                Log.Debug("Using password");
                password = Request.Form.password.Value;
            }

            var localUsers = await CustomUserMapper.GetUsersAsync();

            var plexLocalUsers = await PlexUserRepository.GetAllAsync();


            if (settings.UserAuthentication && settings.UsePassword) // Authenticate with Plex
            {
                Log.Debug("Need to auth and also provide pass");
                var signedIn = (PlexAuthentication)Api.SignIn(username, password);
                if (signedIn.user?.authentication_token != null)
                {
                    Log.Debug("Correct credentials, checking if the user is account owner or in the friends list");
                    if (CheckIfUserIsOwner(plexSettings.PlexAuthToken, signedIn.user?.username))
                    {
                        Log.Debug("User is the account owner");
                        authenticated = true;
                        isOwner       = true;
                    }
                    else
                    {
                        authenticated = CheckIfUserIsInPlexFriends(username, plexSettings.PlexAuthToken);
                        Log.Debug("Friends list result = {0}", authenticated);
                    }
                    userId = signedIn.user.uuid;
                }
            }
            else if (settings.UserAuthentication) // Check against the users in Plex
            {
                Log.Debug("Need to auth");
                authenticated = CheckIfUserIsInPlexFriends(username, plexSettings.PlexAuthToken);
                if (authenticated)
                {
                    userId = GetUserIdIsInPlexFriends(username, plexSettings.PlexAuthToken);
                }
                if (CheckIfUserIsOwner(plexSettings.PlexAuthToken, username))
                {
                    Log.Debug("User is the account owner");
                    authenticated = true;
                    isOwner       = true;
                    userId        = GetOwnerId(plexSettings.PlexAuthToken, username);
                }
                Log.Debug("Friends list result = {0}", authenticated);
            }
            else if (!settings.UserAuthentication) // No auth, let them pass!
            {
                Log.Debug("No need to auth");
                authenticated = true;
            }

            if (authenticated)
            {
                UserLogins.Insert(new UserLogins {
                    UserId = userId, Type = UserType.PlexUser, LastLoggedIn = DateTime.UtcNow
                });
                Log.Debug("We are authenticated! Setting session.");
                // Add to the session (Used in the BaseModules)
                Session[SessionKeys.UsernameKey]             = (string)username;
                Session[SessionKeys.ClientDateTimeOffsetKey] = (int)dateTimeOffset;

                var plexLocal = plexLocalUsers.FirstOrDefault(x => x.Username == username);
                if (plexLocal != null)
                {
                    loginGuid = Guid.Parse(plexLocal.LoginId);
                }

                var dbUser = localUsers.FirstOrDefault(x => x.UserName == username);
                if (dbUser != null)
                {
                    loginGuid = Guid.Parse(dbUser.UserGuid);
                }

                if (loginGuid != Guid.Empty)
                {
                    if (!settings.UserAuthentication)// Do not need to auth make admin use login screen for now TODO remove this
                    {
                        if (dbUser != null)
                        {
                            var perms = (Permissions)dbUser.Permissions;
                            if (perms.HasFlag(Permissions.Administrator))
                            {
                                var uri = Linker.BuildRelativeUri(Context, "UserLoginIndex");
                                Session["TempMessage"] = Resources.UI.UserLogin_AdminUsePassword;
                                return(Response.AsRedirect(uri.ToString()));
                            }
                        }
                        if (plexLocal != null)
                        {
                            var perms = (Permissions)plexLocal.Permissions;
                            if (perms.HasFlag(Permissions.Administrator))
                            {
                                var uri = Linker.BuildRelativeUri(Context, "UserLoginIndex");
                                Session["TempMessage"] = Resources.UI.UserLogin_AdminUsePassword;
                                return(Response.AsRedirect(uri.ToString()));
                            }
                        }
                    }
                }

                if (loginGuid == Guid.Empty && settings.UserAuthentication)
                {
                    var defaultSettings = UserManagementSettings.GetSettings();
                    loginGuid = Guid.NewGuid();

                    var defaultPermissions = (Permissions)UserManagementHelper.GetPermissions(defaultSettings);
                    if (isOwner)
                    {
                        // If we are the owner, add the admin permission.
                        if (!defaultPermissions.HasFlag(Permissions.Administrator))
                        {
                            defaultPermissions += (int)Permissions.Administrator;
                        }
                    }

                    // Looks like we still don't have an entry, so this user does not exist
                    await PlexUserRepository.InsertAsync(new PlexUsers
                    {
                        PlexUserId   = userId,
                        UserAlias    = string.Empty,
                        Permissions  = (int)defaultPermissions,
                        Features     = UserManagementHelper.GetPermissions(defaultSettings),
                        Username     = username,
                        EmailAddress = string.Empty, // We don't have it, we will  get it on the next scheduled job run (in 30 mins)
                        LoginId      = loginGuid.ToString()
                    });
                }
            }

            if (!authenticated)
            {
                var uri = Linker.BuildRelativeUri(Context, "UserLoginIndex");
                Session["TempMessage"] = Resources.UI.UserLogin_IncorrectUserPass;
                return(Response.AsRedirect(uri.ToString()));
            }

            var landingSettings = await LandingPageSettings.GetSettingsAsync();

            if (landingSettings.Enabled)
            {
                if (!landingSettings.BeforeLogin)
                {
                    var uri = Linker.BuildRelativeUri(Context, "LandingPageIndex");
                    if (loginGuid != Guid.Empty)
                    {
                        return(CustomModuleExtensions.LoginAndRedirect(this, loginGuid, null, uri.ToString()));
                    }
                    return(Response.AsRedirect(uri.ToString()));
                }
            }


            var retVal = Linker.BuildRelativeUri(Context, "SearchIndex");

            if (loginGuid != Guid.Empty)
            {
                return(CustomModuleExtensions.LoginAndRedirect(this, loginGuid, null, retVal.ToString()));
            }
            return(Response.AsRedirect(retVal.ToString()));
        }
Beispiel #7
0
        private async Task <Response> PasswordLogin()
        {
            var password = Request.Form.password.Value;

            if (string.IsNullOrEmpty(password))
            {
                return(Response.AsJson(new { result = false, message = Resources.UI.UserLogin_IncorrectUserPass }));
            }

            var dateTimeOffset = Request.Form.DateTimeOffset;
            var loginGuid      = Guid.Empty;
            var settings       = await AuthService.GetSettingsAsync();

            var username      = Session[SessionKeys.UserLoginName].ToString();
            var authenticated = false;
            var isOwner       = false;
            var userId        = string.Empty;

            var plexSettings = await PlexSettings.GetSettingsAsync();

            if (settings.UserAuthentication) // Authenticate with Plex
            {
                Log.Debug("Need to auth and also provide pass");
                var signedIn = (PlexAuthentication)Api.SignIn(username, password);
                if (signedIn.user?.authentication_token != null)
                {
                    Log.Debug("Correct credentials, checking if the user is account owner or in the friends list");
                    if (CheckIfUserIsOwner(plexSettings.PlexAuthToken, signedIn.user?.username))
                    {
                        Log.Debug("User is the account owner");
                        authenticated = true;
                        isOwner       = true;
                    }
                    else
                    {
                        authenticated = CheckIfUserIsInPlexFriends(username, plexSettings.PlexAuthToken);
                        Log.Debug("Friends list result = {0}", authenticated);
                    }
                    userId = signedIn.user.uuid;
                }
            }

            if (string.IsNullOrEmpty(userId))
            {
                // Local user?
                userId = CustomUserMapper.ValidateUser(username, password)?.ToString();
                if (userId != null)
                {
                    authenticated = true;
                }
            }

            if (!authenticated)
            {
                return(Response.AsJson(new { result = false, message = Resources.UI.UserLogin_IncorrectUserPass }));
            }


            var m = await AuthenticationSetup(userId, username, dateTimeOffset, loginGuid, isOwner);

            var landingSettings = await LandingPageSettings.GetSettingsAsync();

            if (landingSettings.Enabled)
            {
                if (!landingSettings.BeforeLogin) // After Login
                {
                    var uri = Linker.BuildRelativeUri(Context, "LandingPageIndex");
                    if (m.LoginGuid != Guid.Empty)
                    {
                        return(CustomModuleExtensions.LoginAndRedirect(this, m.LoginGuid, null, uri.ToString()));
                    }
                    return(Response.AsRedirect(uri.ToString()));
                }
            }

            var retVal = Linker.BuildRelativeUri(Context, "SearchIndex");

            if (m.LoginGuid != Guid.Empty)
            {
                return(CustomModuleExtensions.LoginAndRedirect(this, m.LoginGuid, null, retVal.ToString()));
            }
            return(Response.AsJson(new { result = true, url = retVal.ToString() }));
        }
Beispiel #8
0
        void SignIn()
        {
            Console.Write ("email: ");
            var email = Console.ReadLine ();
            Console.Write ("password: ");
            var pwd = ReadPassword ();
            Console.WriteLine ();

            api = new Api ();
            data = api.SignIn (email, pwd);

            StreamCommand ();
        }