mirror of https://github.com/Ombi-app/Ombi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
231 lines
8.3 KiB
231 lines
8.3 KiB
#region Copyright
|
|
// /************************************************************************
|
|
// Copyright (c) 2016 Jamie Rees
|
|
// File: StatusChecker.cs
|
|
// Created By: Jamie Rees
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining
|
|
// a copy of this software and associated documentation files (the
|
|
// "Software"), to deal in the Software without restriction, including
|
|
// without limitation the rights to use, copy, modify, merge, publish,
|
|
// distribute, sublicense, and/or sell copies of the Software, and to
|
|
// permit persons to whom the Software is furnished to do so, subject to
|
|
// the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be
|
|
// included in all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
// ************************************************************************/
|
|
#endregion
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Security.Policy;
|
|
using System.Threading.Tasks;
|
|
using Nancy.Session;
|
|
using Octokit;
|
|
using Octokit.Internal;
|
|
using Ombi.Api;
|
|
using Ombi.Core.Models;
|
|
using Ombi.Core.SettingModels;
|
|
using Ombi.Helpers;
|
|
using RestSharp;
|
|
|
|
namespace Ombi.Core.StatusChecker
|
|
{
|
|
public class StatusChecker : IStatusChecker
|
|
{
|
|
public StatusChecker(ISettingsService<SystemSettings> ss)
|
|
{
|
|
SystemSettings = ss;
|
|
Git = new GitHubClient(new ProductHeaderValue("Ombi"));
|
|
}
|
|
|
|
private ISettingsService<SystemSettings> SystemSettings { get; }
|
|
|
|
private IGitHubClient Git { get; }
|
|
private const string Owner = "tidusjar";
|
|
private const string RepoName = "Ombi";
|
|
private const string AppveyorApiUrl = "https://ci.appveyor.com/api";
|
|
|
|
private const string Api =
|
|
"48Ku58C0794nBrXra8IxWav+dc6NqgkRw+PZB3/bQwbt/D0IrnJQkgtjzo0bd6nkooLMKsC8M+Ab7jyBO+ROjY14VRuxffpDopX9r0iG/fjBl6mZVvqkm+VTDNstDtzp";
|
|
|
|
public async Task<StatusModel> GetStatus()
|
|
{
|
|
var settings = await SystemSettings.GetSettingsAsync();
|
|
var stable = settings.Branch == Branches.Stable;
|
|
|
|
if (!stable)
|
|
{
|
|
// Early Access Preview Releases
|
|
return GetAppveyorRelease(settings.Branch);
|
|
}
|
|
|
|
// Stable releases
|
|
return await GetLatestGithubRelease();
|
|
}
|
|
|
|
private async Task<StatusModel> GetLatestGithubRelease()
|
|
{
|
|
var assemblyVersion = AssemblyHelper.GetProductVersion();
|
|
var model = new StatusModel
|
|
{
|
|
CurrentVersion = assemblyVersion,
|
|
};
|
|
|
|
var releases = await Git.Repository.Release.GetAll(Owner, RepoName);
|
|
var latestRelease = releases.FirstOrDefault();
|
|
|
|
if (latestRelease == null)
|
|
{
|
|
return new StatusModel { NewVersion = "Unknown" };
|
|
}
|
|
var latestVersionArray = latestRelease.Name.Split(new[] { 'v' }, StringSplitOptions.RemoveEmptyEntries);
|
|
var latestVersion = latestVersionArray.Length > 1 ? latestVersionArray[1] : string.Empty;
|
|
|
|
if (!latestVersion.Equals(assemblyVersion, StringComparison.InvariantCultureIgnoreCase))
|
|
{
|
|
model.UpdateAvailable = true;
|
|
model.UpdateUri = latestRelease.HtmlUrl;
|
|
model.NewVersion = latestVersion;
|
|
}
|
|
|
|
model.ReleaseNotes = latestRelease.Body;
|
|
model.DownloadUri = latestRelease.Assets[0].BrowserDownloadUrl;
|
|
model.ReleaseTitle = latestRelease.Name;
|
|
|
|
return model;
|
|
}
|
|
|
|
private StatusModel GetAppveyorRelease(Branches branch)
|
|
{
|
|
var request = new ApiRequest();
|
|
|
|
// Get latest EAP Build
|
|
var eapBranchRequest = new RestRequest
|
|
{
|
|
Method = Method.GET
|
|
};
|
|
|
|
|
|
switch (branch)
|
|
{
|
|
case Branches.Dev:
|
|
eapBranchRequest.Resource = "/projects/tidusjar/requestplex/branch/dev";
|
|
break;
|
|
case Branches.EarlyAccessPreview:
|
|
eapBranchRequest.Resource = "/projects/tidusjar/requestplex/branch/EAP";
|
|
break;
|
|
}
|
|
|
|
var api = StringCipher.Decrypt(Api,"Appveyor");
|
|
eapBranchRequest.AddHeader("Authorization", $"Bearer {api}");
|
|
eapBranchRequest.AddHeader("Content-Type", "application/json");
|
|
|
|
var branchResult = request.ExecuteJson<AppveyorBranchResult>(eapBranchRequest, new Uri(AppveyorApiUrl));
|
|
|
|
var jobId = branchResult.build.jobs.FirstOrDefault()?.jobId ?? string.Empty;
|
|
|
|
if (string.IsNullOrEmpty(jobId))
|
|
{
|
|
return new StatusModel {UpdateAvailable = false};
|
|
}
|
|
|
|
// Get artifacts from the EAP Build
|
|
var eapAtrifactRequest = new RestRequest
|
|
{
|
|
Resource = $"/buildjobs/{jobId}/artifacts",
|
|
Method = Method.GET
|
|
};
|
|
eapAtrifactRequest.AddHeader("Authorization", $"Bearer {api}");
|
|
eapAtrifactRequest.AddHeader("Content-Type", "application/json");
|
|
|
|
var artifactResults = request.ExecuteJson<List<AppveyorArtifactResult>>(eapAtrifactRequest, new Uri(AppveyorApiUrl));
|
|
|
|
var artifactResult = artifactResults.FirstOrDefault();
|
|
|
|
if (artifactResult == null)
|
|
{
|
|
return new StatusModel
|
|
{
|
|
UpdateAvailable = false
|
|
};
|
|
}
|
|
var downloadLink = $"{AppveyorApiUrl}/buildjobs/{jobId}/artifacts/{artifactResult.fileName}";
|
|
|
|
var branchDisplay = EnumHelper<Branches>.GetBranchValue<BranchAttribute>(branch).DisplayName;
|
|
var fileversion = AssemblyHelper.GetFileVersion();
|
|
|
|
var model = new StatusModel
|
|
{
|
|
DownloadUri = downloadLink,
|
|
ReleaseNotes = $"{branchDisplay} (See Recent Changes tab for more details)",
|
|
ReleaseTitle = $"Ombi {branchDisplay}",
|
|
NewVersion = branchResult.build.version,
|
|
UpdateUri = downloadLink,
|
|
CurrentVersion = fileversion
|
|
};
|
|
|
|
if (!fileversion.Equals(branchResult.build.version, StringComparison.CurrentCultureIgnoreCase))
|
|
{
|
|
model.UpdateAvailable = true;
|
|
}
|
|
|
|
return model;
|
|
}
|
|
|
|
public async Task<Issue> ReportBug(string title, string body, string oauthToken)
|
|
{
|
|
Git.Connection.Credentials = new Credentials(oauthToken);
|
|
var issue = new NewIssue(title)
|
|
{
|
|
Body = body
|
|
};
|
|
|
|
var result = await Git.Issue.Create(Owner, RepoName, issue);
|
|
|
|
return result;
|
|
}
|
|
|
|
|
|
string clientId = "f407108cdb1e660f68c5";
|
|
string clientSecret = "84b56e22002da2929c34fc773d89f3402a19098a";
|
|
|
|
public async Task<Uri> OAuth(string url, ISession session)
|
|
{
|
|
await Task.Yield();
|
|
|
|
var csrf = StringCipher.Encrypt(Guid.NewGuid().ToString("N"), "CSRF");
|
|
session[SessionKeys.CSRF] = csrf;
|
|
|
|
var request = new OauthLoginRequest(clientId)
|
|
{
|
|
Scopes = { "public_repo", "user" },
|
|
State = csrf,
|
|
RedirectUri = new Uri(url)
|
|
};
|
|
|
|
// NOTE: user must be navigated to this URL
|
|
var oauthLoginUrl = Git.Oauth.GetGitHubLoginUrl(request);
|
|
|
|
return oauthLoginUrl;
|
|
}
|
|
|
|
public async Task<OauthToken> OAuthAccessToken(string code)
|
|
{
|
|
var request = new OauthTokenRequest(clientId, clientSecret, code);
|
|
var token = await Git.Oauth.CreateAccessToken(request);
|
|
|
|
return token;
|
|
}
|
|
}
|
|
} |