un objet UserCredential

vnext
Paul Schneider 7 years ago
parent 4ab22d0e6a
commit 35394e5d54
1 changed files with 11 additions and 1 deletions

@ -36,6 +36,9 @@ namespace Yavsc.Helpers
using Yavsc.Services; using Yavsc.Services;
using Google.Apis.Services; using Google.Apis.Services;
using Google.Apis.Compute.v1; using Google.Apis.Compute.v1;
using Google.Apis.Auth.OAuth2.Flows;
using Google.Apis.Util.Store;
using Google.Apis.Auth.OAuth2.Responses;
@ -116,7 +119,14 @@ namespace Yavsc.Helpers
); );
return googleLogin; return googleLogin;
} }
public static async Task<UserCredential> GetGoogleCredential(IDataStore store, string googleUserLoginKey)
{
if (string.IsNullOrEmpty(googleUserLoginKey))
throw new InvalidOperationException("No Google login");
var flow = new GoogleAuthorizationCodeFlow(new GoogleAuthorizationCodeFlow.Initializer());
var token = await store.GetAsync<TokenResponse>(googleUserLoginKey);
return new UserCredential(flow, googleUserLoginKey, token);
}
public static async Task<Period[]> GetFreeTime (this ICalendarManager manager, string calId, DateTime startDate, DateTime endDate) public static async Task<Period[]> GetFreeTime (this ICalendarManager manager, string calId, DateTime startDate, DateTime endDate)
{ {
var evlist = await manager.GetCalendarAsync(calId, startDate, endDate, null) ; var evlist = await manager.GetCalendarAsync(calId, startDate, endDate, null) ;

Loading…