mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
69 lines
1.9 KiB
C#
69 lines
1.9 KiB
C#
using System;
|
|
using System.Windows.Forms;
|
|
using TweetDuck.Core.Controls;
|
|
using TweetDuck.Updates;
|
|
|
|
namespace TweetDuck.Core.Bridge{
|
|
class UpdateBridge{
|
|
private readonly UpdateHandler updates;
|
|
private readonly Control sync;
|
|
|
|
private UpdateInfo nextUpdate = null;
|
|
|
|
public event EventHandler<UpdateInfo> UpdateAccepted;
|
|
public event EventHandler<UpdateInfo> UpdateDelayed;
|
|
public event EventHandler<UpdateInfo> UpdateDismissed;
|
|
|
|
public UpdateBridge(UpdateHandler updates, Control sync){
|
|
this.sync = sync;
|
|
|
|
this.updates = updates;
|
|
this.updates.CheckFinished += updates_CheckFinished;
|
|
}
|
|
|
|
internal void Cleanup(){
|
|
updates.CheckFinished -= updates_CheckFinished;
|
|
nextUpdate?.DeleteInstaller();
|
|
}
|
|
|
|
private void updates_CheckFinished(object sender, UpdateCheckEventArgs e){
|
|
UpdateInfo foundUpdate = e.Result.HasValue ? e.Result.Value : null;
|
|
|
|
if (nextUpdate != null && !nextUpdate.Equals(foundUpdate)){
|
|
nextUpdate.DeleteInstaller();
|
|
}
|
|
|
|
nextUpdate = foundUpdate;
|
|
}
|
|
|
|
private void HandleInteractionEvent(EventHandler<UpdateInfo> eventHandler){
|
|
UpdateInfo tmpInfo = nextUpdate;
|
|
|
|
if (tmpInfo != null){
|
|
sync.InvokeAsyncSafe(() => eventHandler?.Invoke(this, tmpInfo));
|
|
}
|
|
}
|
|
|
|
// Bridge methods
|
|
|
|
public void TriggerUpdateCheck(){
|
|
updates.Check(false);
|
|
}
|
|
|
|
public void OnUpdateAccepted(){
|
|
HandleInteractionEvent(UpdateAccepted);
|
|
}
|
|
|
|
public void OnUpdateDelayed(){
|
|
HandleInteractionEvent(UpdateDelayed);
|
|
}
|
|
|
|
public void OnUpdateDismissed(){
|
|
HandleInteractionEvent(UpdateDismissed);
|
|
|
|
nextUpdate?.DeleteInstaller();
|
|
nextUpdate = null;
|
|
}
|
|
}
|
|
}
|