Secondary initial commit

This commit is contained in:
Aaron Yarborough 2017-01-25 16:57:06 +00:00
parent e8b4cf9f66
commit 32d5624c7a
37 changed files with 123417 additions and 0 deletions

28
BankingBot.sln Normal file
View file

@ -0,0 +1,28 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BankingBot", "BankingBot\BankingBot.csproj", "{ED9159EE-D75C-4E04-B99D-E2364493B841}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "Client\Client.csproj", "{5D22A7BD-CF77-43DD-99AE-949ACB1E45C6}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{ED9159EE-D75C-4E04-B99D-E2364493B841}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{ED9159EE-D75C-4E04-B99D-E2364493B841}.Debug|Any CPU.Build.0 = Debug|Any CPU
{ED9159EE-D75C-4E04-B99D-E2364493B841}.Release|Any CPU.ActiveCfg = Release|Any CPU
{ED9159EE-D75C-4E04-B99D-E2364493B841}.Release|Any CPU.Build.0 = Release|Any CPU
{5D22A7BD-CF77-43DD-99AE-949ACB1E45C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5D22A7BD-CF77-43DD-99AE-949ACB1E45C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5D22A7BD-CF77-43DD-99AE-949ACB1E45C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5D22A7BD-CF77-43DD-99AE-949ACB1E45C6}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal

View file

@ -0,0 +1,28 @@
using System;
using BankingBot.Enums;
namespace BankingBot.Attributes
{
internal class ProviderIdentifier : Attribute
{
public readonly Provider Provider;
public ProviderIdentifier(Provider provider)
{
Provider = provider;
}
public static Provider? GetProviderFromType(Type t)
{
foreach (var attr in t.GetCustomAttributes(false))
{
if ((ProviderIdentifier)attr != null)
{
return ((ProviderIdentifier)attr).Provider;
}
}
return null;
}
}
}

View file

@ -0,0 +1,81 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{ED9159EE-D75C-4E04-B99D-E2364493B841}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>BankingBot</RootNamespace>
<AssemblyName>BankingBot</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Ninject, Version=3.2.0.0, Culture=neutral, PublicKeyToken=c7192dc5380945e7, processorArchitecture=MSIL">
<HintPath>..\packages\Ninject.3.2.2.0\lib\net45-full\Ninject.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Drawing" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="WebDriver, Version=3.0.1.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Selenium.WebDriver.3.0.1\lib\net40\WebDriver.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
<ItemGroup>
<Compile Include="Attributes\ProviderIdentifier.cs" />
<Compile Include="BrowserBot.cs" />
<Compile Include="Client.cs" />
<Compile Include="Contracts\IBrowserBot.cs" />
<Compile Include="Contracts\IClient.cs" />
<Compile Include="Contracts\ILoginCredentials.cs" />
<Compile Include="Contracts\ILoginManager.cs" />
<Compile Include="Contracts\IProviderLoginManager.cs" />
<Compile Include="Enums\Provider.cs" />
<Compile Include="LoginCredentials\LloydsLoginCredentials.cs" />
<Compile Include="LoginCredentials\LoginCredentials.cs" />
<Compile Include="LoginManagers\LloydsLoginManager.cs" />
<Compile Include="LoginManagers\LoginManager.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Responses\LoginResponse.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>

21
BankingBot/BrowserBot.cs Normal file
View file

@ -0,0 +1,21 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Contracts;
using OpenQA.Selenium;
namespace BankingBot
{
public class BrowserBot<T> : IBrowserBot
where T : IWebDriver
{
public IWebDriver WebDriver { get; private set; }
public BrowserBot()
{
WebDriver = (IWebDriver)Activator.CreateInstance(typeof(T));
}
}
}

35
BankingBot/Client.cs Normal file
View file

@ -0,0 +1,35 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Contracts;
using BankingBot.LoginManagers;
using OpenQA.Selenium;
namespace BankingBot
{
public class Client <T> : IClient
where T : IWebDriver
{
#region Dependencies
private readonly ILoginManager _loginManager;
protected readonly IBrowserBot BrowserBot;
#endregion
public ILoginCredentials LoginCredentials { get; private set; }
public Client()
{
BrowserBot = new BrowserBot<T>();
_loginManager = new LoginManager(BrowserBot);
}
public void Login(ILoginCredentials credentials)
{
this.LoginCredentials = credentials;
_loginManager.Login(credentials);
}
}
}

View file

@ -0,0 +1,9 @@
using OpenQA.Selenium;
namespace BankingBot.Contracts
{
public interface IBrowserBot
{
IWebDriver WebDriver { get; }
}
}

View file

@ -0,0 +1,7 @@
namespace BankingBot.Contracts
{
public interface IClient
{
void Login(ILoginCredentials credentials);
}
}

View file

@ -0,0 +1,9 @@
using BankingBot.Enums;
namespace BankingBot.Contracts
{
public interface ILoginCredentials
{
Provider? GetProvider();
}
}

View file

@ -0,0 +1,7 @@
namespace BankingBot.Contracts
{
public interface ILoginManager
{
void Login(ILoginCredentials credentials);
}
}

View file

@ -0,0 +1,7 @@
namespace BankingBot.Contracts
{
public interface IProviderLoginManager
{
void Login(ILoginCredentials credentials);
}
}

View file

@ -0,0 +1,7 @@
namespace BankingBot.Enums
{
public enum Provider
{
Lloyds
}
}

View file

@ -0,0 +1,18 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Attributes;
using BankingBot.Contracts;
namespace BankingBot.LoginCredentials
{
[ProviderIdentifier(Enums.Provider.Lloyds)]
public class LloydsLoginCredentials : LoginCredentials
{
public string Username { get; set; }
public string Password { get; set; }
public string Passphrase { get; set; }
}
}

View file

@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using BankingBot.Attributes;
using BankingBot.Contracts;
using BankingBot.Enums;
namespace BankingBot.LoginCredentials
{
public abstract class LoginCredentials : ILoginCredentials
{
public Provider? GetProvider()
{
return ProviderIdentifier.GetProviderFromType(GetType());
}
}
}

View file

@ -0,0 +1,26 @@
using System;
using BankingBot.Attributes;
using BankingBot.Contracts;
using BankingBot.LoginCredentials;
using OpenQA.Selenium;
namespace BankingBot.LoginManagers
{
[ProviderIdentifier(Enums.Provider.Lloyds)]
public class LloydsLoginManager : IProviderLoginManager
{
//private LloydsLoginCredentials _credentials;
private readonly IBrowserBot _browserBot;
public LloydsLoginManager(IBrowserBot browserBot)
{
_browserBot = browserBot;
}
public void Login(ILoginCredentials credentials)
{
_browserBot.WebDriver.Url = "https://online.lloydsbank.co.uk/personal/logon/login.jsp";
_browserBot.WebDriver.Navigate();
}
}
}

View file

@ -0,0 +1,49 @@
using System;
using System.Linq;
using BankingBot.Attributes;
using BankingBot.Contracts;
using OpenQA.Selenium;
namespace BankingBot.LoginManagers
{
public class LoginManager : ILoginManager
{
private readonly IBrowserBot _browserBot;
public LoginManager(IBrowserBot browserBot)
{
_browserBot = browserBot;
}
public void Login(ILoginCredentials credentials)
{
var provLoginManagerType = GetProviderLoginManagerType(credentials);
var provLoginManager = (IProviderLoginManager)Activator.CreateInstance(provLoginManagerType, _browserBot);
provLoginManager.Login(credentials);
}
private Type GetProviderLoginManagerType(ILoginCredentials credentials)
{
// Get all "provider login manager" classes in the assembly
// (any class that implements IProviderLoginManager)
var providerLoginManagerTypes = AppDomain.CurrentDomain.GetAssemblies()
.SelectMany(s => s.GetTypes())
.Where(p =>
typeof(IProviderLoginManager).IsAssignableFrom(p) &&
p != typeof(IProviderLoginManager));
var credentialsProvider = credentials.GetProvider();
foreach (var type in providerLoginManagerTypes)
{
// Get associated provider for each "provider login manager" class
var provider = ProviderIdentifier.GetProviderFromType(type);
if (provider == credentialsProvider)
{
return type;
}
}
return null;
}
}
}

View file

@ -0,0 +1,36 @@
using System.Reflection;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices;
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("BankingBot")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("BankingBot")]
[assembly: AssemblyCopyright("Copyright © 2017")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]
// Setting ComVisible to false makes the types in this assembly not visible
// to COM components. If you need to access a type in this assembly from
// COM, set the ComVisible attribute to true on that type.
[assembly: ComVisible(false)]
// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("ed9159ee-d75c-4e04-b99d-e2364493b841")]
// Version information for an assembly consists of the following four values:
//
// Major Version
// Minor Version
// Build Number
// Revision
//
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyFileVersion("1.0.0.0")]

View file

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace BankingBot.Responses
{
public class LoginResponse
{
}
}

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,9 @@
C:\src\aaron\BankingBot\BankingBot\bin\Debug\BankingBot.dll
C:\src\aaron\BankingBot\BankingBot\bin\Debug\BankingBot.pdb
C:\src\aaron\BankingBot\BankingBot\bin\Debug\Ninject.dll
C:\src\aaron\BankingBot\BankingBot\bin\Debug\Ninject.xml
C:\src\aaron\BankingBot\BankingBot\obj\Debug\BankingBot.dll
C:\src\aaron\BankingBot\BankingBot\obj\Debug\BankingBot.pdb
C:\src\aaron\BankingBot\BankingBot\obj\Debug\BankingBot.csprojResolveAssemblyReference.cache
C:\src\aaron\BankingBot\BankingBot\bin\Debug\WebDriver.dll
C:\src\aaron\BankingBot\BankingBot\bin\Debug\WebDriver.xml

View file

@ -0,0 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Ninject" version="3.2.2.0" targetFramework="net452" />
<package id="Selenium.WebDriver" version="3.0.1" targetFramework="net461" />
</packages>

Binary file not shown.

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff

Binary file not shown.

File diff suppressed because it is too large Load diff

File diff suppressed because it is too large Load diff