wabbajack/Wabbajack.BuildServer/Extensions.cs

46 lines
1.6 KiB
C#
Raw Normal View History

2020-01-08 04:41:50 +00:00
using System;
2020-01-16 05:06:25 +00:00
using System.IO;
2020-01-08 04:41:50 +00:00
using System.Linq;
using System.Linq.Expressions;
using System.Threading.Tasks;
2020-01-16 05:06:25 +00:00
using Microsoft.AspNetCore.Authentication;
2020-01-09 04:42:25 +00:00
using Microsoft.AspNetCore.Builder;
2020-01-08 04:41:50 +00:00
using MongoDB.Driver;
using MongoDB.Driver.Linq;
2020-01-16 05:06:25 +00:00
using File = Alphaleonis.Win32.Filesystem.File;
2020-01-08 04:41:50 +00:00
namespace Wabbajack.BuildServer
{
public static class Extensions
{
public static async Task<T> FindOneAsync<T>(this IMongoCollection<T> coll, Expression<Func<T, bool>> expr)
{
return (await coll.AsQueryable().Where(expr).Take(1).ToListAsync()).FirstOrDefault();
}
2020-01-09 04:42:25 +00:00
public static void UseJobManager(this IApplicationBuilder b)
{
var manager = (JobManager)b.ApplicationServices.GetService(typeof(JobManager));
var tsk = manager.JobScheduler();
manager.StartJobRunners();
}
2020-01-16 05:06:25 +00:00
public static async Task CopyFileAsync(string sourcePath, string destinationPath)
{
using (Stream source = File.OpenRead(sourcePath))
{
using(Stream destination = File.Create(destinationPath))
{
await source.CopyToAsync(destination);
}
}
}
2020-01-16 05:06:25 +00:00
public static AuthenticationBuilder AddApiKeySupport(this AuthenticationBuilder authenticationBuilder, Action<ApiKeyAuthenticationOptions> options)
{
return authenticationBuilder.AddScheme<ApiKeyAuthenticationOptions, ApiKeyAuthenticationHandler>(ApiKeyAuthenticationOptions.DefaultScheme, options);
}
2020-01-08 04:41:50 +00:00
}
}