-
Notifications
You must be signed in to change notification settings - Fork 1
Add support for extension assemblies; NO SECURITY IMPLEMENTED YET #39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| using JetBrains.Annotations; | ||
|
|
||
| namespace Oma.WndwCtrl.Core.Model.Settings; | ||
|
|
||
| [UsedImplicitly] | ||
| [PublicAPI] | ||
| public record AssemblyInfo2 | ||
| { | ||
| public string AssemblyName { get; set; } = string.Empty; | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| using System.Reflection; | ||
|
|
||
| namespace Oma.WndwCtrl.Core.Model.Settings; | ||
|
|
||
| public class ExtensionSettings : List<AssemblyInfo2> | ||
| { | ||
| public const string SectionName = "Extensions"; | ||
|
|
||
| public List<Assembly> GetAssemblies() | ||
| { | ||
| // TODO: [Required for MVP] Obvious security concerns.. | ||
| return this.Select(assemblyInfo => Assembly.LoadFrom($"{assemblyInfo.AssemblyName}")).ToList(); | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
58 changes: 58 additions & 0 deletions
58
...ensions/Windows/Oma.WndwCtrl.Ext.Windows.Media/Executors/Commands/MediaCommandExecutor.cs
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| using System.Diagnostics.CodeAnalysis; | ||
| using System.Runtime.InteropServices; | ||
| using JetBrains.Annotations; | ||
| using LanguageExt; | ||
| using Oma.WndwCtrl.Abstractions; | ||
| using Oma.WndwCtrl.Abstractions.Errors; | ||
| using Oma.WndwCtrl.Abstractions.Model; | ||
| using Oma.WndwCtrl.Ext.Windows.Media.Model.Commands; | ||
| using static LanguageExt.Prelude; | ||
|
|
||
| namespace Oma.WndwCtrl.Ext.Windows.Media.Executors.Commands; | ||
|
|
||
| [UsedImplicitly] | ||
| public partial class MediaCommandExecutor : ICommandExecutor<MediaCommand> | ||
| { | ||
| private const int KEYEVENTF_EXTENTEDKEY = 1; | ||
|
|
||
| private const int VK_MEDIA_NEXT_TRACK = 0xB0; | ||
| private const int VK_MEDIA_PREV_TRACK = 0xB1; | ||
| private const int VK_MEDIA_STOP = 0xB2; | ||
| private const int VK_MEDIA_PLAY_PAUSE = 0xB3; | ||
|
|
||
| [SuppressMessage( | ||
| "Reliability", | ||
| "CA2000:Dispose objects before losing scope", | ||
| Justification = "Must be disposed by caller." | ||
| )] | ||
| [MustDisposeResource] | ||
| [SuppressMessage("ReSharper", "NotDisposedResource", Justification = "Method flagged as must-dispose.")] | ||
| public Task<Either<FlowError, CommandOutcome>> ExecuteAsync( | ||
| MediaCommand command, | ||
| CancellationToken cancelToken = default | ||
| ) | ||
| { | ||
| byte keyToSend = command.Action switch | ||
| { | ||
| MediaAction.Play or MediaAction.Pause => VK_MEDIA_PLAY_PAUSE, | ||
| MediaAction.Next => VK_MEDIA_NEXT_TRACK, | ||
| MediaAction.Previous => VK_MEDIA_PREV_TRACK, | ||
| MediaAction.Stop => VK_MEDIA_STOP, | ||
| var err => throw new InvalidOperationException($"Unhandled media action {err.ToString()}."), | ||
| }; | ||
|
|
||
| keybd_event(keyToSend, scanCode: 0, KEYEVENTF_EXTENTEDKEY, IntPtr.Zero); | ||
|
|
||
| return Task.FromResult<Either<FlowError, CommandOutcome>>( | ||
| Right( | ||
| new CommandOutcome | ||
| { | ||
| Success = true, | ||
| } | ||
| ) | ||
| ); | ||
| } | ||
|
|
||
| [LibraryImport("user32.dll")] | ||
| private static partial void keybd_event(byte virtualKey, byte scanCode, uint flags, IntPtr extraInfo); | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.