ShareX/ShareX.HelpersLib/UpdateChecker/GitHubUpdateManager.cs

115 lines
3.7 KiB
C#
Raw Normal View History

2016-09-29 13:33:12 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2024-01-03 12:57:14 +13:00
Copyright (c) 2007-2024 ShareX Team
2016-09-29 13:33:12 +13:00
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
Optionally you can also view the license at <http://www.gnu.org/licenses/>.
*/
#endregion License Information (GPL v3)
using System;
using System.Threading.Tasks;
2016-09-29 13:33:12 +13:00
using System.Windows.Forms;
using Timer = System.Threading.Timer;
namespace ShareX.HelpersLib
2016-09-29 13:33:12 +13:00
{
public class GitHubUpdateManager : IDisposable
2016-09-29 13:33:12 +13:00
{
public bool AllowAutoUpdate { get; set; } // ConfigureAutoUpdate function must be called after change this
public bool AutoUpdateEnabled { get; set; } = true;
public TimeSpan UpdateCheckInterval { get; private set; } = TimeSpan.FromHours(1);
public string GitHubOwner { get; set; }
public string GitHubRepo { get; set; }
public bool IsPortable { get; set; } // If current build is portable then download URL will be opened in browser instead of downloading it
public bool CheckPreReleaseUpdates { get; set; }
2016-09-29 13:33:12 +13:00
private bool firstUpdateCheck = true;
private Timer updateTimer = null;
private readonly object updateTimerLock = new object();
2024-04-02 18:29:07 +13:00
public GitHubUpdateManager()
{
}
2023-03-12 20:08:26 +13:00
public GitHubUpdateManager(string owner, string repo, bool portable = false)
2016-09-29 13:33:12 +13:00
{
GitHubOwner = owner;
GitHubRepo = repo;
IsPortable = portable;
2016-09-29 13:33:12 +13:00
}
public void ConfigureAutoUpdate()
{
lock (updateTimerLock)
{
if (AllowAutoUpdate)
2016-09-29 13:33:12 +13:00
{
if (updateTimer == null)
{
updateTimer = new Timer(TimerCallback, null, TimeSpan.Zero, UpdateCheckInterval);
2016-09-29 13:33:12 +13:00
}
}
else
{
Dispose();
}
}
}
private async void TimerCallback(object state)
{
await CheckUpdate();
}
private async Task CheckUpdate()
2016-09-29 13:33:12 +13:00
{
if (AutoUpdateEnabled && !UpdateMessageBox.IsOpen)
2016-09-29 13:33:12 +13:00
{
UpdateChecker updateChecker = CreateUpdateChecker();
await updateChecker.CheckUpdateAsync();
2016-09-29 13:33:12 +13:00
2022-09-22 09:57:04 +12:00
if (UpdateMessageBox.Start(updateChecker, firstUpdateCheck) == DialogResult.No)
2016-09-29 13:33:12 +13:00
{
AutoUpdateEnabled = false;
2016-09-29 13:33:12 +13:00
}
firstUpdateCheck = false;
}
}
2024-04-02 18:29:07 +13:00
public virtual GitHubUpdateChecker CreateUpdateChecker()
2016-09-29 13:33:12 +13:00
{
return new GitHubUpdateChecker(GitHubOwner, GitHubRepo)
2016-09-29 13:33:12 +13:00
{
IsPortable = IsPortable,
2022-08-25 17:35:33 +12:00
IncludePreRelease = CheckPreReleaseUpdates
2016-09-29 13:33:12 +13:00
};
}
public void Dispose()
{
if (updateTimer != null)
{
updateTimer.Dispose();
updateTimer = null;
}
}
}
}