ShareX/ShareX.HelpersLib/UpdateChecker/GitHubUpdateChecker.cs

174 lines
5.8 KiB
C#
Raw Normal View History

2013-11-14 21:01:21 +13:00
#region License Information (GPL v3)
/*
ShareX - A program that allows you to take screenshots and share any file type
2014-05-13 21:06:40 +12:00
Copyright (C) 2007-2014 ShareX Developers
2013-11-14 21:01:21 +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 Newtonsoft.Json;
using System;
using System.Collections.Generic;
using System.Net;
using System.Net.Cache;
namespace HelpersLib
{
public class GitHubUpdateChecker : UpdateChecker
2013-11-14 21:01:21 +13:00
{
2013-11-15 18:30:54 +13:00
public string Owner { get; private set; }
public string Repo { get; private set; }
private const string APIURL = "https://api.github.com";
2013-11-14 21:01:21 +13:00
2013-11-15 18:30:54 +13:00
private string ReleasesURL
2013-11-14 21:01:21 +13:00
{
get
{
return string.Format("{0}/repos/{1}/{2}/releases", APIURL, Owner, Repo);
}
}
public GitHubUpdateChecker(string owner, string repo)
2013-11-14 21:01:21 +13:00
{
Owner = owner;
Repo = repo;
}
public override void CheckUpdate()
2013-11-14 21:01:21 +13:00
{
2013-11-14 22:31:38 +13:00
try
2013-11-14 21:01:21 +13:00
{
2013-11-14 22:31:38 +13:00
List<GitHubRelease> releases = GetReleases();
2013-11-14 21:01:21 +13:00
2013-11-14 22:31:38 +13:00
if (releases != null && releases.Count > 0)
2013-11-14 21:01:21 +13:00
{
2013-11-14 22:31:38 +13:00
GitHubRelease latestRelease = releases[0];
2013-11-14 21:01:21 +13:00
2013-11-15 18:30:54 +13:00
if (latestRelease != null && !string.IsNullOrEmpty(latestRelease.tag_name) && latestRelease.tag_name.Length > 1 &&
latestRelease.tag_name[0] == 'v')
2013-11-14 21:01:21 +13:00
{
2014-07-23 12:18:49 +12:00
LatestVersion = new Version(latestRelease.tag_name.Substring(1));
if (latestRelease.assets != null && latestRelease.assets.Count > 0)
{
foreach (GitHubAsset asset in latestRelease.assets)
{
if (asset != null && !string.IsNullOrEmpty(asset.name) && asset.name.EndsWith(".exe", StringComparison.InvariantCultureIgnoreCase))
{
2014-07-23 12:18:49 +12:00
Filename = asset.name;
DownloadURL = asset.url;
RefreshStatus();
return;
}
}
}
2013-11-14 21:01:21 +13:00
}
}
}
2013-11-14 22:31:38 +13:00
catch (Exception e)
{
2014-06-15 22:29:09 +12:00
DebugHelper.WriteException(e, "GitHub update check failed");
2013-11-14 22:31:38 +13:00
}
2014-07-23 12:18:49 +12:00
Status = UpdateStatus.UpdateCheckFailed;
2013-11-14 21:01:21 +13:00
}
public string GetLatestDownloadURL()
{
List<GitHubRelease> releases = GetReleases();
if (releases != null && releases.Count > 0)
{
2014-05-08 04:26:14 +12:00
return GetDownloadURL(releases[0]);
}
return null;
}
2013-11-15 18:30:54 +13:00
private string GetDownloadURL(GitHubRelease release)
2013-11-14 21:01:21 +13:00
{
if (release.assets != null && release.assets.Count > 0)
{
GitHubAsset asset = release.assets[0];
if (asset != null && !string.IsNullOrEmpty(asset.name))
{
return string.Format("https://github.com/{0}/{1}/releases/download/{2}/{3}", Owner, Repo, release.tag_name, asset.name);
}
}
return null;
}
2013-11-15 18:30:54 +13:00
private List<GitHubRelease> GetReleases()
2013-11-14 21:01:21 +13:00
{
2013-11-28 09:04:12 +13:00
using (WebClient wc = new WebClient())
2013-11-14 21:01:21 +13:00
{
2013-11-28 09:04:12 +13:00
wc.CachePolicy = new RequestCachePolicy(RequestCacheLevel.NoCacheNoStore);
wc.Headers.Add("user-agent", "ShareX");
wc.Proxy = Proxy;
2013-11-14 21:01:21 +13:00
string response = wc.DownloadString(ReleasesURL);
if (!string.IsNullOrEmpty(response))
{
return JsonConvert.DeserializeObject<List<GitHubRelease>>(response);
}
}
return null;
}
}
public class GitHubRelease
{
public string url { get; set; }
public string assets_url { get; set; }
public string upload_url { get; set; }
public string html_url { get; set; }
public int id { get; set; }
public string tag_name { get; set; }
public string target_commitish { get; set; }
public string name { get; set; }
public string body { get; set; }
public bool draft { get; set; }
public bool prerelease { get; set; }
public string created_at { get; set; }
public string published_at { get; set; }
public List<GitHubAsset> assets { get; set; }
public string tarball_url { get; set; }
public string zipball_url { get; set; }
}
public class GitHubAsset
{
public string url { get; set; }
public int id { get; set; }
public string name { get; set; }
public string label { get; set; }
public string content_type { get; set; }
public string state { get; set; }
public int size { get; set; }
public int download_count { get; set; }
public string created_at { get; set; }
2013-11-14 23:50:25 +13:00
public string updated_at { get; set; }
2013-11-14 21:01:21 +13:00
}
}