banking-bot/BankingBot/ActionManagers/LoginManagers/LoginManager.cs
Aaron Yarborough a39b20484f Changed login to not return respose
The login method now throws specific exceptions if something goes wrong during the login process. This is the ideal way for a developer using this API to handle errors.
2017-02-13 13:05:48 +00:00

27 lines
875 B
C#

using System;
using System.Linq;
using BankingBot.Attributes;
using BankingBot.Contracts;
using BankingBot.Responses;
using BankingBot.ScriptManagement;
namespace BankingBot.ActionManagers.LoginManagers
{
public class LoginManager : ActionManager, ILoginManager
{
public LoginManager(IBrowserBot browserBot)
: base(browserBot)
{ }
public void Login(ILoginCredentials credentials)
{
// TODO: THIS NEEDS TO BE MOVED
var scriptManager = new ScriptManager(BrowserBot);
var providerLoginManagerType = GetTypeFromInterface(credentials.GetProvider(), typeof(IProviderLoginManager));
var provLoginManager = (IProviderLoginManager)Activator.CreateInstance(providerLoginManagerType, BrowserBot, scriptManager);
provLoginManager.Login(credentials);
}
}
}