Test WPF Desktop App with Caliburn And RestSharp
This commit is contained in:
0
LaDOSE.Src/ApiLaunch.bat
Normal file
0
LaDOSE.Src/ApiLaunch.bat
Normal file
@@ -38,26 +38,4 @@ namespace LaDOSE.Api.Controllers
|
|||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[Authorize]
|
|
||||||
[Produces("application/json")]
|
|
||||||
[Route("api/[controller]")]
|
|
||||||
public class UtilController : Controller
|
|
||||||
{
|
|
||||||
private IUtilService _service;
|
|
||||||
|
|
||||||
public UtilController(IUtilService service)
|
|
||||||
{
|
|
||||||
_service = service;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
[HttpGet("UpdateBooking")]
|
|
||||||
public bool UpdateBooking()
|
|
||||||
{
|
|
||||||
return _service.UpdateBooking();
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
28
LaDOSE.Src/LaDOSE.Api/Controllers/UtilController.cs
Normal file
28
LaDOSE.Src/LaDOSE.Api/Controllers/UtilController.cs
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
using LaDOSE.Business.Interface;
|
||||||
|
using Microsoft.AspNetCore.Authorization;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
|
namespace LaDOSE.Api.Controllers
|
||||||
|
{
|
||||||
|
[Authorize]
|
||||||
|
[Produces("application/json")]
|
||||||
|
[Route("api/[controller]")]
|
||||||
|
public class UtilController : Controller
|
||||||
|
{
|
||||||
|
private IUtilService _service;
|
||||||
|
|
||||||
|
public UtilController(IUtilService service)
|
||||||
|
{
|
||||||
|
_service = service;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
[HttpGet("UpdateBooking")]
|
||||||
|
public bool UpdateBooking()
|
||||||
|
{
|
||||||
|
return _service.UpdateBooking();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
30
LaDOSE.Src/LaDOSE.Api/Controllers/WordPressController.cs
Normal file
30
LaDOSE.Src/LaDOSE.Api/Controllers/WordPressController.cs
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using LaDOSE.Business.Interface;
|
||||||
|
using LaDOSE.Entity.Wordpress;
|
||||||
|
using Microsoft.AspNetCore.Authorization;
|
||||||
|
using Microsoft.AspNetCore.Mvc;
|
||||||
|
|
||||||
|
namespace LaDOSE.Api.Controllers
|
||||||
|
{
|
||||||
|
[Authorize]
|
||||||
|
[Produces("application/json")]
|
||||||
|
[Route("api/[controller]")]
|
||||||
|
public class WordPressController : Controller
|
||||||
|
{
|
||||||
|
// GET
|
||||||
|
|
||||||
|
public WordPressController(IWordPressService service)
|
||||||
|
{
|
||||||
|
_service = service;
|
||||||
|
}
|
||||||
|
|
||||||
|
private IWordPressService _service;
|
||||||
|
|
||||||
|
[HttpGet("WPEvent")]
|
||||||
|
public List<WPEvent> Event()
|
||||||
|
{
|
||||||
|
return _service.GetWpEvent();
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -100,6 +100,7 @@ namespace LaDOSE.Api
|
|||||||
services.AddScoped<IEventService, EventService>();
|
services.AddScoped<IEventService, EventService>();
|
||||||
services.AddScoped<ISeasonService, SeasonService>();
|
services.AddScoped<ISeasonService, SeasonService>();
|
||||||
services.AddScoped<IUtilService, UtilService>();
|
services.AddScoped<IUtilService, UtilService>();
|
||||||
|
services.AddScoped<IWordPressService, WordPressService>();
|
||||||
services.AddTransient<IChallongeProvider>(p => new ChallongeProvider(this.Configuration["ApiKey:ChallongeApiKey"]));
|
services.AddTransient<IChallongeProvider>(p => new ChallongeProvider(this.Configuration["ApiKey:ChallongeApiKey"]));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
15
LaDOSE.Src/LaDOSE.DTO/ApplicationUser.cs
Normal file
15
LaDOSE.Src/LaDOSE.DTO/ApplicationUser.cs
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
|
||||||
|
namespace LaDOSE.DTO
|
||||||
|
{
|
||||||
|
public class ApplicationUser
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string FirstName { get; set; }
|
||||||
|
public string LastName { get; set; }
|
||||||
|
public string Username { get; set; }
|
||||||
|
public string Password { get; set; }
|
||||||
|
|
||||||
|
public string Token { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
9
LaDOSE.Src/LaDOSE.DTO/Game.cs
Normal file
9
LaDOSE.Src/LaDOSE.DTO/Game.cs
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
namespace LaDOSE.DTO
|
||||||
|
{
|
||||||
|
public class Game
|
||||||
|
{
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
public string ImgUrl { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
7
LaDOSE.Src/LaDOSE.DTO/LaDOSE.DTO.csproj
Normal file
7
LaDOSE.Src/LaDOSE.DTO/LaDOSE.DTO.csproj
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<Project Sdk="Microsoft.NET.Sdk">
|
||||||
|
|
||||||
|
<PropertyGroup>
|
||||||
|
<TargetFramework>netstandard2.0</TargetFramework>
|
||||||
|
</PropertyGroup>
|
||||||
|
|
||||||
|
</Project>
|
||||||
17
LaDOSE.Src/LaDOSE.DTO/WPEvent.cs
Normal file
17
LaDOSE.Src/LaDOSE.DTO/WPEvent.cs
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
|
||||||
|
namespace LaDOSE.DTO
|
||||||
|
{
|
||||||
|
public class WPEvent
|
||||||
|
{
|
||||||
|
|
||||||
|
// Id, Name, Slug, Date
|
||||||
|
public int Id { get; set; }
|
||||||
|
public string Name { get; set; }
|
||||||
|
public string Slug { get; set; }
|
||||||
|
public DateTime? Date { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
6
LaDOSE.Src/LaDOSE.DesktopApp/App.config
Normal file
6
LaDOSE.Src/LaDOSE.DesktopApp/App.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8" ?>
|
||||||
|
<configuration>
|
||||||
|
<startup>
|
||||||
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.6.1" />
|
||||||
|
</startup>
|
||||||
|
</configuration>
|
||||||
15
LaDOSE.Src/LaDOSE.DesktopApp/App.xaml
Normal file
15
LaDOSE.Src/LaDOSE.DesktopApp/App.xaml
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
<Application x:Class="LaDOSE.DesktopApp.App"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:local="clr-namespace:LaDOSE.DesktopApp"
|
||||||
|
>
|
||||||
|
<Application.Resources>
|
||||||
|
<ResourceDictionary>
|
||||||
|
<ResourceDictionary.MergedDictionaries>
|
||||||
|
<ResourceDictionary>
|
||||||
|
<local:Bootstrapper x:Key="Bootstrapper" />
|
||||||
|
</ResourceDictionary>
|
||||||
|
</ResourceDictionary.MergedDictionaries>
|
||||||
|
</ResourceDictionary>
|
||||||
|
</Application.Resources>
|
||||||
|
</Application>
|
||||||
17
LaDOSE.Src/LaDOSE.DesktopApp/App.xaml.cs
Normal file
17
LaDOSE.Src/LaDOSE.DesktopApp/App.xaml.cs
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Configuration;
|
||||||
|
using System.Data;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
namespace LaDOSE.DesktopApp
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for App.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class App : Application
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
49
LaDOSE.Src/LaDOSE.DesktopApp/Bootstrapper.cs
Normal file
49
LaDOSE.Src/LaDOSE.DesktopApp/Bootstrapper.cs
Normal file
@@ -0,0 +1,49 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Windows;
|
||||||
|
using Caliburn.Micro;
|
||||||
|
using LaDOSE.DesktopApp.Services;
|
||||||
|
using LaDOSE.DesktopApp.ViewModels;
|
||||||
|
|
||||||
|
namespace LaDOSE.DesktopApp
|
||||||
|
{
|
||||||
|
public class Bootstrapper : BootstrapperBase
|
||||||
|
{
|
||||||
|
private SimpleContainer container;
|
||||||
|
|
||||||
|
public Bootstrapper()
|
||||||
|
{
|
||||||
|
Initialize();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void Configure()
|
||||||
|
{
|
||||||
|
container = new SimpleContainer();
|
||||||
|
|
||||||
|
container.Singleton<IWindowManager, WindowManager>();
|
||||||
|
|
||||||
|
container.PerRequest<ShellViewModel>();
|
||||||
|
container.Singleton<RestService>();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void OnStartup(object sender, StartupEventArgs e)
|
||||||
|
{
|
||||||
|
DisplayRootViewFor<ShellViewModel>();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override object GetInstance(Type service, string key)
|
||||||
|
{
|
||||||
|
return container.GetInstance(service, key);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override IEnumerable<object> GetAllInstances(Type service)
|
||||||
|
{
|
||||||
|
return container.GetAllInstances(service);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override void BuildUp(object instance)
|
||||||
|
{
|
||||||
|
container.BuildUp(instance);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
140
LaDOSE.Src/LaDOSE.DesktopApp/LaDOSE.DesktopApp.csproj
Normal file
140
LaDOSE.Src/LaDOSE.DesktopApp/LaDOSE.DesktopApp.csproj
Normal file
@@ -0,0 +1,140 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="15.0" 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>{A76AC851-4D43-4BF9-9034-F496888ADAFD}</ProjectGuid>
|
||||||
|
<OutputType>WinExe</OutputType>
|
||||||
|
<RootNamespace>LaDOSE.DesktopApp</RootNamespace>
|
||||||
|
<AssemblyName>LaDOSE.DesktopApp</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
<Deterministic>true</Deterministic>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<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' ">
|
||||||
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="Caliburn.Micro, Version=3.2.0.0, Culture=neutral, PublicKeyToken=8e5891231f2ed21f, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Caliburn.Micro.Core.3.2.0\lib\net45\Caliburn.Micro.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Caliburn.Micro.Platform, Version=3.2.0.0, Culture=neutral, PublicKeyToken=8e5891231f2ed21f, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Caliburn.Micro.3.2.0\lib\net45\Caliburn.Micro.Platform.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Caliburn.Micro.Platform.Core, Version=3.2.0.0, Culture=neutral, PublicKeyToken=8e5891231f2ed21f, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Caliburn.Micro.3.2.0\lib\net45\Caliburn.Micro.Platform.Core.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="RestSharp, Version=106.6.5.0, Culture=neutral, PublicKeyToken=598062e77f915f75, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\RestSharp.106.6.5\lib\net452\RestSharp.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Web" />
|
||||||
|
<Reference Include="System.Windows.Interactivity, Version=4.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Caliburn.Micro.3.2.0\lib\net45\System.Windows.Interactivity.dll</HintPath>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xaml">
|
||||||
|
<RequiredTargetFramework>4.0</RequiredTargetFramework>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="WindowsBase" />
|
||||||
|
<Reference Include="PresentationCore" />
|
||||||
|
<Reference Include="PresentationFramework" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ApplicationDefinition Include="App.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</ApplicationDefinition>
|
||||||
|
<Compile Include="Bootstrapper.cs" />
|
||||||
|
<Compile Include="Services\RestService.cs" />
|
||||||
|
<Compile Include="ViewModels\ShellViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\GameViewModel.cs" />
|
||||||
|
<Compile Include="ViewModels\WordPressViewModel.cs" />
|
||||||
|
<Compile Include="Views\ShellView.xaml.cs">
|
||||||
|
<DependentUpon>ShellView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\GameView.xaml.cs">
|
||||||
|
<DependentUpon>GameView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Views\WpView.xaml.cs">
|
||||||
|
<DependentUpon>WpView.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="App.xaml.cs">
|
||||||
|
<DependentUpon>App.xaml</DependentUpon>
|
||||||
|
<SubType>Code</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Page Include="Views\ShellView.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
<Page Include="Views\GameView.xaml">
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
</Page>
|
||||||
|
<Page Include="Views\WpView.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs">
|
||||||
|
<SubType>Code</SubType>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Properties\Resources.Designer.cs">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Properties\Settings.Designer.cs">
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DependentUpon>Settings.settings</DependentUpon>
|
||||||
|
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||||
|
</Compile>
|
||||||
|
<EmbeddedResource Include="Properties\Resources.resx">
|
||||||
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
|
</EmbeddedResource>
|
||||||
|
<None Include="packages.config" />
|
||||||
|
<None Include="Properties\Settings.settings">
|
||||||
|
<Generator>SettingsSingleFileGenerator</Generator>
|
||||||
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput>
|
||||||
|
</None>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="App.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ProjectReference Include="..\LaDOSE.DTO\LaDOSE.DTO.csproj">
|
||||||
|
<Project>{61201da6-1bc9-4ba1-ac45-70104d391ecd}</Project>
|
||||||
|
<Name>LaDOSE.DTO</Name>
|
||||||
|
</ProjectReference>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup />
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
</Project>
|
||||||
55
LaDOSE.Src/LaDOSE.DesktopApp/Properties/AssemblyInfo.cs
Normal file
55
LaDOSE.Src/LaDOSE.DesktopApp/Properties/AssemblyInfo.cs
Normal file
@@ -0,0 +1,55 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Resources;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
using System.Windows;
|
||||||
|
|
||||||
|
// 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("LaDOSE.DesktopApp")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("LaDOSE.DesktopApp")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2019")]
|
||||||
|
[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)]
|
||||||
|
|
||||||
|
//In order to begin building localizable applications, set
|
||||||
|
//<UICulture>CultureYouAreCodingWith</UICulture> in your .csproj file
|
||||||
|
//inside a <PropertyGroup>. For example, if you are using US english
|
||||||
|
//in your source files, set the <UICulture> to en-US. Then uncomment
|
||||||
|
//the NeutralResourceLanguage attribute below. Update the "en-US" in
|
||||||
|
//the line below to match the UICulture setting in the project file.
|
||||||
|
|
||||||
|
//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
|
||||||
|
|
||||||
|
|
||||||
|
[assembly: ThemeInfo(
|
||||||
|
ResourceDictionaryLocation.None, //where theme specific resource dictionaries are located
|
||||||
|
//(used if a resource is not found in the page,
|
||||||
|
// or application resource dictionaries)
|
||||||
|
ResourceDictionaryLocation.SourceAssembly //where the generic resource dictionary is located
|
||||||
|
//(used if a resource is not found in the page,
|
||||||
|
// app, or any theme specific resource dictionaries)
|
||||||
|
)]
|
||||||
|
|
||||||
|
|
||||||
|
// 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")]
|
||||||
71
LaDOSE.Src/LaDOSE.DesktopApp/Properties/Resources.Designer.cs
generated
Normal file
71
LaDOSE.Src/LaDOSE.DesktopApp/Properties/Resources.Designer.cs
generated
Normal file
@@ -0,0 +1,71 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace LaDOSE.DesktopApp.Properties
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
|
/// </summary>
|
||||||
|
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||||
|
// class via a tool like ResGen or Visual Studio.
|
||||||
|
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
|
// with the /str option, or rebuild your VS project.
|
||||||
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
internal class Resources
|
||||||
|
{
|
||||||
|
|
||||||
|
private static global::System.Resources.ResourceManager resourceMan;
|
||||||
|
|
||||||
|
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||||
|
|
||||||
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||||
|
internal Resources()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the cached ResourceManager instance used by this class.
|
||||||
|
/// </summary>
|
||||||
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
internal static global::System.Resources.ResourceManager ResourceManager
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
if ((resourceMan == null))
|
||||||
|
{
|
||||||
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("LaDOSE.DesktopApp.Properties.Resources", typeof(Resources).Assembly);
|
||||||
|
resourceMan = temp;
|
||||||
|
}
|
||||||
|
return resourceMan;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Overrides the current thread's CurrentUICulture property for all
|
||||||
|
/// resource lookups using this strongly typed resource class.
|
||||||
|
/// </summary>
|
||||||
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
internal static global::System.Globalization.CultureInfo Culture
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return resourceCulture;
|
||||||
|
}
|
||||||
|
set
|
||||||
|
{
|
||||||
|
resourceCulture = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
117
LaDOSE.Src/LaDOSE.DesktopApp/Properties/Resources.resx
Normal file
117
LaDOSE.Src/LaDOSE.DesktopApp/Properties/Resources.resx
Normal file
@@ -0,0 +1,117 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
</root>
|
||||||
30
LaDOSE.Src/LaDOSE.DesktopApp/Properties/Settings.Designer.cs
generated
Normal file
30
LaDOSE.Src/LaDOSE.DesktopApp/Properties/Settings.Designer.cs
generated
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace LaDOSE.DesktopApp.Properties
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
|
||||||
|
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
|
||||||
|
{
|
||||||
|
|
||||||
|
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||||
|
|
||||||
|
public static Settings Default
|
||||||
|
{
|
||||||
|
get
|
||||||
|
{
|
||||||
|
return defaultInstance;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<SettingsFile xmlns="uri:settings" CurrentProfile="(Default)">
|
||||||
|
<Profiles>
|
||||||
|
<Profile Name="(Default)" />
|
||||||
|
</Profiles>
|
||||||
|
<Settings />
|
||||||
|
</SettingsFile>
|
||||||
47
LaDOSE.Src/LaDOSE.DesktopApp/Services/RestService.cs
Normal file
47
LaDOSE.Src/LaDOSE.DesktopApp/Services/RestService.cs
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Windows;
|
||||||
|
using LaDOSE.DTO;
|
||||||
|
using RestSharp;
|
||||||
|
using RestSharp.Authenticators;
|
||||||
|
using RestSharp.Serialization.Json;
|
||||||
|
|
||||||
|
namespace LaDOSE.DesktopApp.Services
|
||||||
|
{
|
||||||
|
public class RestService
|
||||||
|
{
|
||||||
|
public RestClient Client { get; set; }
|
||||||
|
|
||||||
|
public RestService()
|
||||||
|
{
|
||||||
|
Client = new RestClient("http://localhost:5000/");
|
||||||
|
var restRequest = new RestRequest("users/auth", Method.POST);
|
||||||
|
restRequest.AddJsonBody(new { username = "****", password = "*****" });
|
||||||
|
var response = Client.Post(restRequest);
|
||||||
|
if (response.IsSuccessful)
|
||||||
|
{
|
||||||
|
JsonDeserializer d = new JsonDeserializer();
|
||||||
|
var applicationUser = d.Deserialize<ApplicationUser>(response);
|
||||||
|
Client.Authenticator = new JwtAuthenticator($"{applicationUser.Token}");
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
throw new Exception("No Service Avaliable");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<WPEvent> GetEvents()
|
||||||
|
{
|
||||||
|
var restRequest = new RestRequest("/api/wordpress/WPEvent", Method.GET);
|
||||||
|
var restResponse = Client.Get<List<WPEvent>>(restRequest);
|
||||||
|
return restResponse.Data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Game> GetGames()
|
||||||
|
{
|
||||||
|
var restRequest = new RestRequest("/api/Game", Method.GET);
|
||||||
|
var restResponse = Client.Get<List<Game>>(restRequest);
|
||||||
|
return restResponse.Data;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
24
LaDOSE.Src/LaDOSE.DesktopApp/ViewModels/GameViewModel.cs
Normal file
24
LaDOSE.Src/LaDOSE.DesktopApp/ViewModels/GameViewModel.cs
Normal file
@@ -0,0 +1,24 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using Caliburn.Micro;
|
||||||
|
using LaDOSE.DesktopApp.Services;
|
||||||
|
using LaDOSE.DTO;
|
||||||
|
|
||||||
|
namespace LaDOSE.DesktopApp.ViewModels
|
||||||
|
{
|
||||||
|
public class GameViewModel : Screen
|
||||||
|
{
|
||||||
|
private RestService RestService { get; set; }
|
||||||
|
public GameViewModel(RestService restService)
|
||||||
|
{
|
||||||
|
this.RestService = restService;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void LoadGames()
|
||||||
|
{
|
||||||
|
this.Games = this.RestService.GetGames();
|
||||||
|
NotifyOfPropertyChange("Games");
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<Game> Games { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
18
LaDOSE.Src/LaDOSE.DesktopApp/ViewModels/ShellViewModel.cs
Normal file
18
LaDOSE.Src/LaDOSE.DesktopApp/ViewModels/ShellViewModel.cs
Normal file
@@ -0,0 +1,18 @@
|
|||||||
|
using Caliburn.Micro;
|
||||||
|
using LaDOSE.DesktopApp.Services;
|
||||||
|
|
||||||
|
namespace LaDOSE.DesktopApp.ViewModels
|
||||||
|
{
|
||||||
|
public class ShellViewModel : Conductor<IScreen>.Collection.OneActive
|
||||||
|
{
|
||||||
|
|
||||||
|
public void LoadEvent()
|
||||||
|
{
|
||||||
|
ActivateItem(new WordPressViewModel(IoC.Get<RestService>()));
|
||||||
|
}
|
||||||
|
public void LoadGames()
|
||||||
|
{
|
||||||
|
ActivateItem(new GameViewModel(IoC.Get<RestService>()));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using Caliburn.Micro;
|
||||||
|
using LaDOSE.DesktopApp.Services;
|
||||||
|
using LaDOSE.DTO;
|
||||||
|
|
||||||
|
namespace LaDOSE.DesktopApp.ViewModels
|
||||||
|
{
|
||||||
|
public class WordPressViewModel : Screen
|
||||||
|
{
|
||||||
|
private RestService RestService { get; set; }
|
||||||
|
public WordPressViewModel(RestService restService)
|
||||||
|
{
|
||||||
|
this.RestService = restService;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void LoadEvents()
|
||||||
|
{
|
||||||
|
this.Events = this.RestService.GetEvents();
|
||||||
|
NotifyOfPropertyChange("Events");
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<WPEvent> Events { get; set; }
|
||||||
|
}
|
||||||
|
}
|
||||||
30
LaDOSE.Src/LaDOSE.DesktopApp/Views/GameView.xaml
Normal file
30
LaDOSE.Src/LaDOSE.DesktopApp/Views/GameView.xaml
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<UserControl x:Class="LaDOSE.DesktopApp.Views.GameView"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:local="clr-namespace:LaDOSE.DesktopApp.Views"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
d:DesignHeight="450" d:DesignWidth="800">
|
||||||
|
<Grid Row="4" Column="1">
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="Auto"></RowDefinition>
|
||||||
|
<RowDefinition Height="*"></RowDefinition>
|
||||||
|
<RowDefinition Height="*"></RowDefinition>
|
||||||
|
<RowDefinition Height="Auto"></RowDefinition>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<Button Grid.Row="0" x:Name="LoadGames">Load Games</Button>
|
||||||
|
<ListView Grid.Row="1" ItemsSource="{Binding Games}">
|
||||||
|
<ListView.ItemTemplate>
|
||||||
|
<DataTemplate>
|
||||||
|
<StackPanel>
|
||||||
|
<Label Content="{Binding Id}"></Label>
|
||||||
|
<Label Content="{Binding Name}"></Label>
|
||||||
|
<Label Content="{Binding ImgUrl}"></Label>
|
||||||
|
</StackPanel>
|
||||||
|
</DataTemplate>
|
||||||
|
</ListView.ItemTemplate>
|
||||||
|
|
||||||
|
</ListView>
|
||||||
|
</Grid>
|
||||||
|
</UserControl>
|
||||||
28
LaDOSE.Src/LaDOSE.DesktopApp/Views/GameView.xaml.cs
Normal file
28
LaDOSE.Src/LaDOSE.DesktopApp/Views/GameView.xaml.cs
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
|
||||||
|
namespace LaDOSE.DesktopApp.Views
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for ShellView.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class GameView : UserControl
|
||||||
|
{
|
||||||
|
public GameView()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
46
LaDOSE.Src/LaDOSE.DesktopApp/Views/ShellView.xaml
Normal file
46
LaDOSE.Src/LaDOSE.DesktopApp/Views/ShellView.xaml
Normal file
@@ -0,0 +1,46 @@
|
|||||||
|
<Window x:Class="LaDOSE.DesktopApp.Views.ShellView"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:local="clr-namespace:LaDOSE.DesktopApp.Views"
|
||||||
|
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
|
||||||
|
xmlns:cal="http://www.caliburnproject.org"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
d:DesignHeight="450" d:DesignWidth="800">
|
||||||
|
<Grid Row="4" Column="1">
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="Auto"></RowDefinition>
|
||||||
|
<RowDefinition Height="*"></RowDefinition>
|
||||||
|
<RowDefinition Height="Auto"></RowDefinition>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<Menu Grid.Row="0" DockPanel.Dock="Top">
|
||||||
|
<MenuItem Header="_File">
|
||||||
|
<MenuItem Header="_Events">
|
||||||
|
<i:Interaction.Triggers>
|
||||||
|
<i:EventTrigger EventName="Click">
|
||||||
|
<cal:ActionMessage MethodName="LoadEvent">
|
||||||
|
</cal:ActionMessage>
|
||||||
|
</i:EventTrigger>
|
||||||
|
</i:Interaction.Triggers>
|
||||||
|
</MenuItem>
|
||||||
|
<MenuItem Header="_Games">
|
||||||
|
<i:Interaction.Triggers>
|
||||||
|
<i:EventTrigger EventName="Click">
|
||||||
|
<cal:ActionMessage MethodName="LoadGames">
|
||||||
|
</cal:ActionMessage>
|
||||||
|
</i:EventTrigger>
|
||||||
|
</i:Interaction.Triggers>
|
||||||
|
</MenuItem>
|
||||||
|
<MenuItem Header="_Close" />
|
||||||
|
</MenuItem>
|
||||||
|
</Menu>
|
||||||
|
<ContentControl Grid.Row="1" x:Name="ActiveItem" />
|
||||||
|
|
||||||
|
<StatusBar Grid.Row="2">
|
||||||
|
|
||||||
|
|
||||||
|
</StatusBar>
|
||||||
|
|
||||||
|
</Grid>
|
||||||
|
</Window>
|
||||||
29
LaDOSE.Src/LaDOSE.DesktopApp/Views/ShellView.xaml.cs
Normal file
29
LaDOSE.Src/LaDOSE.DesktopApp/Views/ShellView.xaml.cs
Normal file
@@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
|
||||||
|
namespace LaDOSE.DesktopApp.Views
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for ShellView.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class ShellView : Window
|
||||||
|
{
|
||||||
|
public ShellView()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
30
LaDOSE.Src/LaDOSE.DesktopApp/Views/WpView.xaml
Normal file
30
LaDOSE.Src/LaDOSE.DesktopApp/Views/WpView.xaml
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
<UserControl x:Class="LaDOSE.DesktopApp.Views.WordPressView"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:local="clr-namespace:LaDOSE.DesktopApp.Views"
|
||||||
|
mc:Ignorable="d"
|
||||||
|
d:DesignHeight="450" d:DesignWidth="800">
|
||||||
|
<Grid Row="4" Column="1">
|
||||||
|
<Grid.RowDefinitions>
|
||||||
|
<RowDefinition Height="Auto"></RowDefinition>
|
||||||
|
<RowDefinition Height="*"></RowDefinition>
|
||||||
|
<RowDefinition Height="*"></RowDefinition>
|
||||||
|
<RowDefinition Height="Auto"></RowDefinition>
|
||||||
|
</Grid.RowDefinitions>
|
||||||
|
<Button Grid.Row="0" x:Name="LoadEvents">Load Events</Button>
|
||||||
|
<ListView Grid.Row="1" ItemsSource="{Binding Events}">
|
||||||
|
<ListView.ItemTemplate>
|
||||||
|
<DataTemplate>
|
||||||
|
<StackPanel>
|
||||||
|
<Label Content="{Binding Id}"></Label>
|
||||||
|
<Label Content="{Binding Name}"></Label>
|
||||||
|
<Label Content="{Binding Date}"></Label>
|
||||||
|
</StackPanel>
|
||||||
|
</DataTemplate>
|
||||||
|
</ListView.ItemTemplate>
|
||||||
|
|
||||||
|
</ListView>
|
||||||
|
</Grid>
|
||||||
|
</UserControl>
|
||||||
28
LaDOSE.Src/LaDOSE.DesktopApp/Views/WpView.xaml.cs
Normal file
28
LaDOSE.Src/LaDOSE.DesktopApp/Views/WpView.xaml.cs
Normal file
@@ -0,0 +1,28 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using System.Windows;
|
||||||
|
using System.Windows.Controls;
|
||||||
|
using System.Windows.Data;
|
||||||
|
using System.Windows.Documents;
|
||||||
|
using System.Windows.Input;
|
||||||
|
using System.Windows.Media;
|
||||||
|
using System.Windows.Media.Imaging;
|
||||||
|
using System.Windows.Navigation;
|
||||||
|
using System.Windows.Shapes;
|
||||||
|
|
||||||
|
namespace LaDOSE.DesktopApp.Views
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Interaction logic for ShellView.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class WordPressView : UserControl
|
||||||
|
{
|
||||||
|
public WordPressView()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
6
LaDOSE.Src/LaDOSE.DesktopApp/packages.config
Normal file
6
LaDOSE.Src/LaDOSE.DesktopApp/packages.config
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="Caliburn.Micro" version="3.2.0" targetFramework="net461" />
|
||||||
|
<package id="Caliburn.Micro.Core" version="3.2.0" targetFramework="net461" />
|
||||||
|
<package id="RestSharp" version="106.6.5" targetFramework="net461" />
|
||||||
|
</packages>
|
||||||
@@ -14,7 +14,7 @@ namespace LaDOSE.DiscordBot.Command
|
|||||||
}
|
}
|
||||||
|
|
||||||
[Command("todo")]
|
[Command("todo")]
|
||||||
public async Task TwitchAsync(CommandContext ctx, string command,params string[] todo)
|
public async Task TodoAsync(CommandContext ctx, string command,params string[] todo)
|
||||||
{
|
{
|
||||||
await ctx.TriggerTypingAsync();
|
await ctx.TriggerTypingAsync();
|
||||||
switch (command.ToUpperInvariant())
|
switch (command.ToUpperInvariant())
|
||||||
@@ -34,6 +34,7 @@ namespace LaDOSE.DiscordBot.Command
|
|||||||
};
|
};
|
||||||
await ctx.RespondAsync($"invalid id");
|
await ctx.RespondAsync($"invalid id");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
}
|
}
|
||||||
//await ctx.RespondAsync($"command : {command}, todo: {todo} ");
|
//await ctx.RespondAsync($"command : {command}, todo: {todo} ");
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
using System.IO;
|
using System;
|
||||||
|
using System.IO;
|
||||||
|
|
||||||
namespace LaDOSE.DiscordBot.Service
|
namespace LaDOSE.DiscordBot.Service
|
||||||
{
|
{
|
||||||
@@ -48,7 +49,7 @@ namespace LaDOSE.DiscordBot.Service
|
|||||||
string returnText = "";
|
string returnText = "";
|
||||||
var text = File.ReadAllText(db);
|
var text = File.ReadAllText(db);
|
||||||
var i = 0;
|
var i = 0;
|
||||||
foreach (var line in text.Split('\n'))
|
foreach (var line in text.Split())
|
||||||
{
|
{
|
||||||
if(!string.IsNullOrEmpty(line))
|
if(!string.IsNullOrEmpty(line))
|
||||||
returnText += $"{++i}. {line}";
|
returnText += $"{++i}. {line}";
|
||||||
|
|||||||
@@ -10,6 +10,7 @@
|
|||||||
public int WPUserId { get; set; }
|
public int WPUserId { get; set; }
|
||||||
public WPUser WPUser { get; set; }
|
public WPUser WPUser { get; set; }
|
||||||
public string Message { get; set; }
|
public string Message { get; set; }
|
||||||
|
|
||||||
public string Meta { get; set; }
|
public string Meta { get; set; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ namespace LaDOSE.Entity.Wordpress
|
|||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
public string Name { get; set; }
|
public string Name { get; set; }
|
||||||
public string Slug { get; set; }
|
public string Slug { get; set; }
|
||||||
public DateTime Date { get; set; }
|
public DateTime? Date { get; set; }
|
||||||
|
|
||||||
public virtual IEnumerable<WPBooking> WPBookings { get; set; }
|
public virtual IEnumerable<WPBooking> WPBookings { get; set; }
|
||||||
}
|
}
|
||||||
|
|||||||
10
LaDOSE.Src/LaDOSE.Service/Interface/IWordPressService.cs
Normal file
10
LaDOSE.Src/LaDOSE.Service/Interface/IWordPressService.cs
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using LaDOSE.Entity.Wordpress;
|
||||||
|
|
||||||
|
namespace LaDOSE.Business.Interface
|
||||||
|
{
|
||||||
|
public interface IWordPressService
|
||||||
|
{
|
||||||
|
List<WPEvent> GetWpEvent();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -6,34 +6,37 @@ using Microsoft.EntityFrameworkCore;
|
|||||||
|
|
||||||
namespace LaDOSE.Business.Service
|
namespace LaDOSE.Business.Service
|
||||||
{
|
{
|
||||||
|
public class BaseService<T> : IBaseService<T> where T : class
|
||||||
|
|
||||||
public class BaseService<T> : IBaseService<T> where T : class
|
|
||||||
{
|
{
|
||||||
protected LaDOSEDbContext _context;
|
protected LaDOSEDbContext _context;
|
||||||
|
|
||||||
public BaseService(LaDOSEDbContext context)
|
public BaseService(LaDOSEDbContext context)
|
||||||
{
|
{
|
||||||
this._context = context;
|
_context = context;
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual IEnumerable<T> GetAll()
|
public virtual IEnumerable<T> GetAll()
|
||||||
{
|
{
|
||||||
return _context.Set<T>().ToList();
|
return _context.Set<T>().ToList();
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual T GetById(int id)
|
public virtual T GetById(int id)
|
||||||
{
|
{
|
||||||
return _context.Find<T>(id);
|
return _context.Find<T>(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual T Create(T entity)
|
public virtual T Create(T entity)
|
||||||
{
|
{
|
||||||
var added = _context.Add(entity);
|
var added = _context.Add(entity);
|
||||||
return added.Entity;
|
return added.Entity;
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual bool Update(T entity)
|
public virtual bool Update(T entity)
|
||||||
{
|
{
|
||||||
var entityEntry = _context.Update(entity);
|
var entityEntry = _context.Update(entity);
|
||||||
return _context.Entry(entityEntry).State == EntityState.Unchanged;
|
return _context.Entry(entityEntry).State == EntityState.Unchanged;
|
||||||
}
|
}
|
||||||
|
|
||||||
public virtual bool Delete(int id)
|
public virtual bool Delete(int id)
|
||||||
{
|
{
|
||||||
var find = _context.Find<T>(id);
|
var find = _context.Find<T>(id);
|
||||||
|
|||||||
22
LaDOSE.Src/LaDOSE.Service/Service/WordPressService.cs
Normal file
22
LaDOSE.Src/LaDOSE.Service/Service/WordPressService.cs
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using LaDOSE.Business.Interface;
|
||||||
|
using LaDOSE.Entity.Context;
|
||||||
|
using LaDOSE.Entity.Wordpress;
|
||||||
|
|
||||||
|
namespace LaDOSE.Business.Service
|
||||||
|
{
|
||||||
|
public class WordPressService : IWordPressService
|
||||||
|
{
|
||||||
|
private LaDOSEDbContext _context;
|
||||||
|
public WordPressService(LaDOSEDbContext context)
|
||||||
|
{
|
||||||
|
this._context = context;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<WPEvent> GetWpEvent()
|
||||||
|
{
|
||||||
|
return _context.Set<WPEvent>().ToList();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -11,6 +11,16 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LaDOSE.Entity", "LaDOSE.Ent
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LaDOSE.Business", "LaDOSE.Service\LaDOSE.Business.csproj", "{952DE665-70B5-492B-BE91-D0111E3BD907}"
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LaDOSE.Business", "LaDOSE.Service\LaDOSE.Business.csproj", "{952DE665-70B5-492B-BE91-D0111E3BD907}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LaDOSE.DesktopApp", "LaDOSE.DesktopApp\LaDOSE.DesktopApp.csproj", "{A76AC851-4D43-4BF9-9034-F496888ADAFD}"
|
||||||
|
EndProject
|
||||||
|
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "LaDOSE.DTO", "LaDOSE.DTO\LaDOSE.DTO.csproj", "{61201DA6-1BC9-4BA1-AC45-70104D391ECD}"
|
||||||
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Api", "Api", "{6FC9438E-D93E-4E63-9342-F8A966EE2D06}"
|
||||||
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Desktop", "Desktop", "{DD52FE00-B822-4DE3-B369-2BFB5F808130}"
|
||||||
|
EndProject
|
||||||
|
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Bot", "Bot", "{8B9C38FB-2A83-482D-966C-06A5EA1749EB}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@@ -33,10 +43,26 @@ Global
|
|||||||
{952DE665-70B5-492B-BE91-D0111E3BD907}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{952DE665-70B5-492B-BE91-D0111E3BD907}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{952DE665-70B5-492B-BE91-D0111E3BD907}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{952DE665-70B5-492B-BE91-D0111E3BD907}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{952DE665-70B5-492B-BE91-D0111E3BD907}.Release|Any CPU.Build.0 = Release|Any CPU
|
{952DE665-70B5-492B-BE91-D0111E3BD907}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{A76AC851-4D43-4BF9-9034-F496888ADAFD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{A76AC851-4D43-4BF9-9034-F496888ADAFD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{A76AC851-4D43-4BF9-9034-F496888ADAFD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{A76AC851-4D43-4BF9-9034-F496888ADAFD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{61201DA6-1BC9-4BA1-AC45-70104D391ECD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{61201DA6-1BC9-4BA1-AC45-70104D391ECD}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{61201DA6-1BC9-4BA1-AC45-70104D391ECD}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{61201DA6-1BC9-4BA1-AC45-70104D391ECD}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
|
GlobalSection(NestedProjects) = preSolution
|
||||||
|
{C1E8FAF6-3A75-44AC-938D-CA56A5322D1C} = {8B9C38FB-2A83-482D-966C-06A5EA1749EB}
|
||||||
|
{4D7ED4CC-F78F-4860-B8CE-DA01DCACCBB9} = {6FC9438E-D93E-4E63-9342-F8A966EE2D06}
|
||||||
|
{B32A4AD5-9A4B-4D12-AAD5-55541F170E2A} = {6FC9438E-D93E-4E63-9342-F8A966EE2D06}
|
||||||
|
{952DE665-70B5-492B-BE91-D0111E3BD907} = {6FC9438E-D93E-4E63-9342-F8A966EE2D06}
|
||||||
|
{A76AC851-4D43-4BF9-9034-F496888ADAFD} = {DD52FE00-B822-4DE3-B369-2BFB5F808130}
|
||||||
|
{61201DA6-1BC9-4BA1-AC45-70104D391ECD} = {6FC9438E-D93E-4E63-9342-F8A966EE2D06}
|
||||||
|
EndGlobalSection
|
||||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
SolutionGuid = {D47DEDD0-C906-439D-81E4-D86BBE723B8C}
|
SolutionGuid = {D47DEDD0-C906-439D-81E4-D86BBE723B8C}
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
|
|||||||
Reference in New Issue
Block a user