Add Geni Provider
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
# Visual Studio 14
|
# Visual Studio 14
|
||||||
VisualStudioVersion = 14.0.24720.0
|
VisualStudioVersion = 14.0.25123.0
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Security.Providers.ArcGISOnline", "src\Owin.Security.Providers.ArcGISOnline\Owin.Security.Providers.ArcGISOnline.csproj", "{8A49FAEF-D365-4D25-942C-1CAD03845A5E}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Security.Providers.ArcGISOnline", "src\Owin.Security.Providers.ArcGISOnline\Owin.Security.Providers.ArcGISOnline.csproj", "{8A49FAEF-D365-4D25-942C-1CAD03845A5E}"
|
||||||
EndProject
|
EndProject
|
||||||
@@ -94,6 +94,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Security.Providers.Orc
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OwinOAuthProvidersDemo", "OwinOAuthProvidersDemo\OwinOAuthProvidersDemo.csproj", "{5A438007-0C90-4DAC-BAA1-54A32164067F}"
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "OwinOAuthProvidersDemo", "OwinOAuthProvidersDemo\OwinOAuthProvidersDemo.csproj", "{5A438007-0C90-4DAC-BAA1-54A32164067F}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Owin.Security.Providers.Geni", "src\Owin.Security.Providers.Geni\Owin.Security.Providers.Geni.csproj", "{9DE25431-F935-48D7-8EB5-ACB6F918111C}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
@@ -284,6 +286,10 @@ Global
|
|||||||
{5A438007-0C90-4DAC-BAA1-54A32164067F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{5A438007-0C90-4DAC-BAA1-54A32164067F}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
{5A438007-0C90-4DAC-BAA1-54A32164067F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{5A438007-0C90-4DAC-BAA1-54A32164067F}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{5A438007-0C90-4DAC-BAA1-54A32164067F}.Release|Any CPU.Build.0 = Release|Any CPU
|
{5A438007-0C90-4DAC-BAA1-54A32164067F}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{9DE25431-F935-48D7-8EB5-ACB6F918111C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
|
{9DE25431-F935-48D7-8EB5-ACB6F918111C}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{9DE25431-F935-48D7-8EB5-ACB6F918111C}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
|
{9DE25431-F935-48D7-8EB5-ACB6F918111C}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|||||||
@@ -3,8 +3,6 @@ using Microsoft.Owin;
|
|||||||
using Microsoft.Owin.Security.Cookies;
|
using Microsoft.Owin.Security.Cookies;
|
||||||
using Owin;
|
using Owin;
|
||||||
|
|
||||||
//using Owin.Security.Providers.Orcid;
|
|
||||||
|
|
||||||
namespace OwinOAuthProvidersDemo
|
namespace OwinOAuthProvidersDemo
|
||||||
{
|
{
|
||||||
public partial class Startup
|
public partial class Startup
|
||||||
@@ -20,262 +18,264 @@ namespace OwinOAuthProvidersDemo
|
|||||||
});
|
});
|
||||||
// Use a cookie to temporarily store information about a user logging in with a third party login provider
|
// Use a cookie to temporarily store information about a user logging in with a third party login provider
|
||||||
app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);
|
app.UseExternalSignInCookie(DefaultAuthenticationTypes.ExternalCookie);
|
||||||
//app.UseDeviantArtAuthentication("id", "secret");
|
//app.UseDeviantArtAuthentication("id", "secret");
|
||||||
//app.UseUntappdAuthentication("id", "secret");
|
//app.UseUntappdAuthentication("id", "secret");
|
||||||
// Uncomment the following lines to enable logging in with third party login providers
|
// Uncomment the following lines to enable logging in with third party login providers
|
||||||
//app.UseMicrosoftAccountAuthentication(
|
//app.UseMicrosoftAccountAuthentication(
|
||||||
// clientId: "",
|
// clientId: "",
|
||||||
// clientSecret: "");
|
// clientSecret: "");
|
||||||
|
|
||||||
//app.UseTwitterAuthentication(
|
//app.UseTwitterAuthentication(
|
||||||
// consumerKey: "",
|
// consumerKey: "",
|
||||||
// consumerSecret: "");
|
// consumerSecret: "");
|
||||||
|
|
||||||
//app.UseFacebookAuthentication(
|
//app.UseFacebookAuthentication(
|
||||||
// appId: "",
|
// appId: "",
|
||||||
// appSecret: "");
|
// appSecret: "");
|
||||||
|
|
||||||
//app.UseGoogleAuthentication();
|
//app.UseGoogleAuthentication();
|
||||||
|
|
||||||
//app.UseLinkedInAuthentication("", "");
|
//app.UseLinkedInAuthentication("", "");
|
||||||
|
|
||||||
//app.UseYahooAuthentication("", "");
|
//app.UseYahooAuthentication("", "");
|
||||||
|
|
||||||
//app.UseTripItAuthentication("", "");
|
//app.UseTripItAuthentication("", "");
|
||||||
|
|
||||||
//app.UseGitHubAuthentication("", "");
|
//app.UseGitHubAuthentication("", "");
|
||||||
|
|
||||||
//app.UseBufferAuthentication("", "");
|
//app.UseBufferAuthentication("", "");
|
||||||
|
|
||||||
//app.UseRedditAuthentication("", "");
|
//app.UseRedditAuthentication("", "");
|
||||||
|
|
||||||
//app.UseStackExchangeAuthentication(
|
//app.UseStackExchangeAuthentication(
|
||||||
// clientId: "",
|
// clientId: "",
|
||||||
// clientSecret: "",
|
// clientSecret: "",
|
||||||
// key: "");
|
// key: "");
|
||||||
|
|
||||||
//app.UseInstagramInAuthentication("", "");
|
//app.UseInstagramInAuthentication("", "");
|
||||||
|
|
||||||
//var options = new GooglePlusAuthenticationOptions
|
//var options = new GooglePlusAuthenticationOptions
|
||||||
//{
|
//{
|
||||||
// ClientId = "",
|
// ClientId = "",
|
||||||
// ClientSecret = "",
|
// ClientSecret = "",
|
||||||
// RequestOfflineAccess = true,
|
// RequestOfflineAccess = true,
|
||||||
// Provider = new GooglePlusAuthenticationProvider
|
// Provider = new GooglePlusAuthenticationProvider
|
||||||
// {
|
// {
|
||||||
// OnAuthenticated = async context => System.Diagnostics.Debug.WriteLine(String.Format("Refresh Token: {0}", context.RefreshToken))
|
// OnAuthenticated = async context => System.Diagnostics.Debug.WriteLine(String.Format("Refresh Token: {0}", context.RefreshToken))
|
||||||
// }
|
// }
|
||||||
//};
|
//};
|
||||||
//options.MomentTypes.Add("http://schemas.google.com/AddActivity");
|
//options.MomentTypes.Add("http://schemas.google.com/AddActivity");
|
||||||
//options.MomentTypes.Add("http://schemas.google.com/CheckInActivity");
|
//options.MomentTypes.Add("http://schemas.google.com/CheckInActivity");
|
||||||
//options.MomentTypes.Add("http://schemas.google.com/BuyActivity");
|
//options.MomentTypes.Add("http://schemas.google.com/BuyActivity");
|
||||||
//app.UseGooglePlusAuthentication(options);
|
//app.UseGooglePlusAuthentication(options);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Twitch sign-ins use /signin-Twitch as the URL for authentication
|
* Twitch sign-ins use /signin-Twitch as the URL for authentication
|
||||||
*
|
*
|
||||||
|
|
||||||
*/
|
*/
|
||||||
|
|
||||||
////Simple Twitch Sign-in
|
////Simple Twitch Sign-in
|
||||||
//app.UseTwitchAuthentication("", "");
|
//app.UseTwitchAuthentication("", "");
|
||||||
|
|
||||||
////More complex Twitch Sign-in
|
////More complex Twitch Sign-in
|
||||||
//var opt = new TwitchAuthenticationOptions()
|
//var opt = new TwitchAuthenticationOptions()
|
||||||
//{
|
//{
|
||||||
// ClientId = "",
|
// ClientId = "",
|
||||||
// ClientSecret = "",
|
// ClientSecret = "",
|
||||||
// Provider = new TwitchAuthenticationProvider()
|
// Provider = new TwitchAuthenticationProvider()
|
||||||
// {
|
// {
|
||||||
// OnAuthenticated = async z =>
|
// OnAuthenticated = async z =>
|
||||||
// {
|
// {
|
||||||
//// Getting the twitch users picture
|
//// Getting the twitch users picture
|
||||||
// z.Identity.AddClaim(new Claim("Picture", z.User.GetValue("logo").ToString()));
|
// z.Identity.AddClaim(new Claim("Picture", z.User.GetValue("logo").ToString()));
|
||||||
// }
|
// }
|
||||||
//// You should be able to access these claims with HttpContext.GetOwinContext().Authentication.GetExternalLoginInfoAsync().Claims in your Account Controller
|
//// You should be able to access these claims with HttpContext.GetOwinContext().Authentication.GetExternalLoginInfoAsync().Claims in your Account Controller
|
||||||
// // Commonly used in the ExternalLoginCallback() in AccountController.cs
|
// // Commonly used in the ExternalLoginCallback() in AccountController.cs
|
||||||
// /*
|
// /*
|
||||||
|
|
||||||
// if (user != null)
|
// if (user != null)
|
||||||
// {
|
// {
|
||||||
// var claim = (await AuthenticationManager.GetExternalLoginInfoAsync()).ExternalIdentity.Claims.First(
|
// var claim = (await AuthenticationManager.GetExternalLoginInfoAsync()).ExternalIdentity.Claims.First(
|
||||||
// a => a.Type == "Picture");
|
// a => a.Type == "Picture");
|
||||||
// user.Claims.Add(new IdentityUserClaim() { ClaimType = claim.Type, ClaimValue = claim.Value });
|
// user.Claims.Add(new IdentityUserClaim() { ClaimType = claim.Type, ClaimValue = claim.Value });
|
||||||
// await SignInAsync(user, isPersistent: false);
|
// await SignInAsync(user, isPersistent: false);
|
||||||
// return RedirectToLocal(returnUrl);
|
// return RedirectToLocal(returnUrl);
|
||||||
// }
|
// }
|
||||||
// */
|
// */
|
||||||
// }
|
// }
|
||||||
//};
|
//};
|
||||||
//app.UseTwitchAuthentication(opt);
|
//app.UseTwitchAuthentication(opt);
|
||||||
|
|
||||||
//app.UseOpenIDAuthentication("http://me.yahoo.com/", "Yahoo");
|
//app.UseOpenIDAuthentication("http://me.yahoo.com/", "Yahoo");
|
||||||
|
|
||||||
//app.UseOpenIDAuthentication("https://openid.stackexchange.com/", "StackExchange");
|
//app.UseOpenIDAuthentication("https://openid.stackexchange.com/", "StackExchange");
|
||||||
|
|
||||||
//app.UseOpenIDAuthentication("https://www.google.com/accounts/o8/id", "Google");
|
//app.UseOpenIDAuthentication("https://www.google.com/accounts/o8/id", "Google");
|
||||||
|
|
||||||
//app.UseSteamAuthentication(applicationKey: "");
|
//app.UseSteamAuthentication(applicationKey: "");
|
||||||
|
|
||||||
//app.UseOpenIDAuthentication("http://orange.fr", "Orange");
|
//app.UseOpenIDAuthentication("http://orange.fr", "Orange");
|
||||||
// Use OpenId provider login uri instead of discovery uri
|
// Use OpenId provider login uri instead of discovery uri
|
||||||
//app.UseOpenIDAuthentication("http://openid.orange.fr/server", "Orange", true);
|
//app.UseOpenIDAuthentication("http://openid.orange.fr/server", "Orange", true);
|
||||||
|
|
||||||
//app.UseSalesforceAuthentication(
|
//app.UseSalesforceAuthentication(
|
||||||
// clientId: "",
|
// clientId: "",
|
||||||
// clientSecret: "");
|
// clientSecret: "");
|
||||||
|
|
||||||
//in scenarios where a sandbox URL needs to be used
|
//in scenarios where a sandbox URL needs to be used
|
||||||
//var salesforceOptions = new SalesforceAuthenticationOptions
|
//var salesforceOptions = new SalesforceAuthenticationOptions
|
||||||
//{
|
//{
|
||||||
// Endpoints =
|
// Endpoints =
|
||||||
// new SalesforceAuthenticationOptions.SalesforceAuthenticationEndpoints
|
// new SalesforceAuthenticationOptions.SalesforceAuthenticationEndpoints
|
||||||
// {
|
// {
|
||||||
// AuthorizationEndpoint =
|
// AuthorizationEndpoint =
|
||||||
// "https://ap1.salesforce.com/services/oauth2/authorize",
|
// "https://ap1.salesforce.com/services/oauth2/authorize",
|
||||||
// TokenEndpoint = "https://ap1.salesforce.com/services/oauth2/token"
|
// TokenEndpoint = "https://ap1.salesforce.com/services/oauth2/token"
|
||||||
// },
|
// },
|
||||||
// ClientId = "",
|
// ClientId = "",
|
||||||
// ClientSecret = "",
|
// ClientSecret = "",
|
||||||
// Provider = new SalesforceAuthenticationProvider()
|
// Provider = new SalesforceAuthenticationProvider()
|
||||||
// {
|
// {
|
||||||
// OnAuthenticated = async context =>
|
// OnAuthenticated = async context =>
|
||||||
// {
|
// {
|
||||||
// System.Diagnostics.Debug.WriteLine(context.AccessToken);
|
// System.Diagnostics.Debug.WriteLine(context.AccessToken);
|
||||||
// System.Diagnostics.Debug.WriteLine(context.RefreshToken);
|
// System.Diagnostics.Debug.WriteLine(context.RefreshToken);
|
||||||
// System.Diagnostics.Debug.WriteLine(context.OrganizationId);
|
// System.Diagnostics.Debug.WriteLine(context.OrganizationId);
|
||||||
// }
|
// }
|
||||||
// }
|
// }
|
||||||
//};
|
//};
|
||||||
//app.UseSalesforceAuthentication(salesforceOptions);
|
//app.UseSalesforceAuthentication(salesforceOptions);
|
||||||
|
|
||||||
////app.UseShopifyAuthentication("", "");
|
////app.UseShopifyAuthentication("", "");
|
||||||
|
|
||||||
//app.UseArcGISOnlineAuthentication(
|
//app.UseArcGISOnlineAuthentication(
|
||||||
// clientId: "",
|
// clientId: "",
|
||||||
// clientSecret: "");
|
// clientSecret: "");
|
||||||
|
|
||||||
//app.UseWordPressAuthentication(
|
//app.UseWordPressAuthentication(
|
||||||
// clientId: "",
|
// clientId: "",
|
||||||
// clientSecret: "");
|
// clientSecret: "");
|
||||||
|
|
||||||
//app.UseDropboxAuthentication(
|
//app.UseDropboxAuthentication(
|
||||||
// appKey: "",
|
// appKey: "",
|
||||||
// appSecret: "");
|
// appSecret: "");
|
||||||
|
|
||||||
//app.UseHealthGraphAuthentication(
|
//app.UseHealthGraphAuthentication(
|
||||||
// clientId: "",
|
// clientId: "",
|
||||||
// clientSecret: "");
|
// clientSecret: "");
|
||||||
|
|
||||||
//app.UseBattleNetAuthentication(new BattleNetAuthenticationOptions
|
//app.UseBattleNetAuthentication(new BattleNetAuthenticationOptions
|
||||||
//{
|
//{
|
||||||
// ClientId = "",
|
// ClientId = "",
|
||||||
// ClientSecret = ""
|
// ClientSecret = ""
|
||||||
//});
|
//});
|
||||||
//app.UseBattleNetAuthentication(
|
//app.UseBattleNetAuthentication(
|
||||||
// clientId: "",
|
// clientId: "",
|
||||||
// clientSecret: "");
|
// clientSecret: "");
|
||||||
|
|
||||||
//app.UseAsanaAuthentication("", "");
|
//app.UseAsanaAuthentication("", "");
|
||||||
|
|
||||||
//app.UseEveOnlineAuthentication("", "");
|
//app.UseEveOnlineAuthentication("", "");
|
||||||
|
|
||||||
//app.UseSoundCloudAuthentication("", "");
|
//app.UseSoundCloudAuthentication("", "");
|
||||||
|
|
||||||
//app.UseFoursquareAuthentication(
|
//app.UseFoursquareAuthentication(
|
||||||
// clientId: "",
|
// clientId: "",
|
||||||
// clientSecret: "");
|
// clientSecret: "");
|
||||||
|
|
||||||
//app.UsePayPalAuthentication(
|
//app.UsePayPalAuthentication(
|
||||||
// clientId: "",
|
// clientId: "",
|
||||||
// clientSecret: "",
|
// clientSecret: "",
|
||||||
// isSandbox: false);
|
// isSandbox: false);
|
||||||
|
|
||||||
//app.UseWargamingAccountAuthentication("", WargamingAuthenticationOptions.Region.NorthAmerica);
|
//app.UseWargamingAccountAuthentication("", WargamingAuthenticationOptions.Region.NorthAmerica);
|
||||||
|
|
||||||
//app.UseFlickrAuthentication("", "");
|
//app.UseFlickrAuthentication("", "");
|
||||||
//app.UseVisualStudioAuthentication(
|
//app.UseVisualStudioAuthentication(
|
||||||
// appId: "",
|
// appId: "",
|
||||||
// appSecret: "");
|
// appSecret: "");
|
||||||
|
|
||||||
//app.UseSpotifyAuthentication(
|
//app.UseSpotifyAuthentication(
|
||||||
// clientId: "",
|
// clientId: "",
|
||||||
// clientSecret: "");
|
// clientSecret: "");
|
||||||
|
|
||||||
//var options = new SlackAuthenticationOptions
|
//var options = new SlackAuthenticationOptions
|
||||||
//{
|
//{
|
||||||
// ClientId = "",
|
// ClientId = "",
|
||||||
// ClientSecret = "",
|
// ClientSecret = "",
|
||||||
// TeamId = "" // optional
|
// TeamId = "" // optional
|
||||||
//};
|
//};
|
||||||
//options.Scope.Add("identify");
|
//options.Scope.Add("identify");
|
||||||
//app.UseSlackAuthentication(options);
|
//app.UseSlackAuthentication(options);
|
||||||
|
|
||||||
//app.UseGitterAuthentication(
|
//app.UseGitterAuthentication(
|
||||||
// clientId: "",
|
// clientId: "",
|
||||||
// clientSecret: ""
|
// clientSecret: ""
|
||||||
//);
|
//);
|
||||||
|
|
||||||
//app.UseImgurAuthentication(
|
//app.UseImgurAuthentication(
|
||||||
// new ImgurAuthenticationOptions
|
// new ImgurAuthenticationOptions
|
||||||
// {
|
// {
|
||||||
// ClientId = "",
|
// ClientId = "",
|
||||||
// ClientSecret = ""
|
// ClientSecret = ""
|
||||||
// });
|
// });
|
||||||
|
|
||||||
//var options = new BacklogAuthenticationOptions
|
//var options = new BacklogAuthenticationOptions
|
||||||
//{
|
//{
|
||||||
// ClientId = "",
|
// ClientId = "",
|
||||||
// ClientSecret = "",
|
// ClientSecret = "",
|
||||||
// ContractName = "",
|
// ContractName = "",
|
||||||
// CallbackPath = new PathString(""), // ex.new PathString("/OauthTokenRequest")
|
// CallbackPath = new PathString(""), // ex.new PathString("/OauthTokenRequest")
|
||||||
// Provider = new BacklogAuthenticationProvider
|
// Provider = new BacklogAuthenticationProvider
|
||||||
// {
|
// {
|
||||||
// OnAuthenticated = async context => await System.Threading.Tasks.Task.Run(()=> { System.Diagnostics.Debug.WriteLine(String.Format("Refresh Token: {0}", context.RefreshToken)); })
|
// OnAuthenticated = async context => await System.Threading.Tasks.Task.Run(()=> { System.Diagnostics.Debug.WriteLine(String.Format("Refresh Token: {0}", context.RefreshToken)); })
|
||||||
// }
|
// }
|
||||||
//};
|
//};
|
||||||
|
|
||||||
//app.UseBacklogAuthentication(options);
|
//app.UseBacklogAuthentication(options);
|
||||||
|
|
||||||
//var cosignOptions = new CosignAuthenticationOptions
|
//var cosignOptions = new CosignAuthenticationOptions
|
||||||
//{
|
//{
|
||||||
// AuthenticationType = "Cosign",
|
// AuthenticationType = "Cosign",
|
||||||
// SignInAsAuthenticationType = signInAsType,
|
// SignInAsAuthenticationType = signInAsType,
|
||||||
// CosignServer = "weblogin.umich.edu",
|
// CosignServer = "weblogin.umich.edu",
|
||||||
// CosignServicePort = 6663,
|
// CosignServicePort = 6663,
|
||||||
// IdentityServerHostInstance = "core1",
|
// IdentityServerHostInstance = "core1",
|
||||||
// ClientServer = "cosignservername"
|
// ClientServer = "cosignservername"
|
||||||
//};
|
//};
|
||||||
//app.UseCosignAuthentication(cosignOptions);
|
//app.UseCosignAuthentication(cosignOptions);
|
||||||
|
|
||||||
//app.UseVimeoAuthentication("", "");
|
//app.UseVimeoAuthentication("", "");
|
||||||
|
|
||||||
//app.UseFitbitAuthentication(new FitbitAuthenticationOptions
|
//app.UseFitbitAuthentication(new FitbitAuthenticationOptions
|
||||||
//{
|
//{
|
||||||
// ClientId = "",
|
// ClientId = "",
|
||||||
// ClientSecret = ""
|
// ClientSecret = ""
|
||||||
//});
|
//});
|
||||||
|
|
||||||
//app.UseOnshapeAuthentication(
|
//app.UseOnshapeAuthentication(
|
||||||
// appKey: "",
|
// appKey: "",
|
||||||
// appSecret: "");
|
// appSecret: "");
|
||||||
//
|
//
|
||||||
//
|
//
|
||||||
//app.UseOnshapeAuthentication(new OnshapeAuthenticationOptions()
|
//app.UseOnshapeAuthentication(new OnshapeAuthenticationOptions()
|
||||||
//{
|
//{
|
||||||
// AppKey = "",
|
// AppKey = "",
|
||||||
// AppSecret = "",
|
// AppSecret = "",
|
||||||
// CallbackPath = new PathString("/oauthRedirect"),
|
// CallbackPath = new PathString("/oauthRedirect"),
|
||||||
// Hostname = "partner.dev.onshape.com"
|
// Hostname = "partner.dev.onshape.com"
|
||||||
//});
|
//});
|
||||||
|
|
||||||
//app.UseVKontakteAuthentication("", "");
|
//app.UseVKontakteAuthentication("", "");
|
||||||
|
|
||||||
//app.UseXingAuthentication("", "");
|
//app.UseXingAuthentication("", "");
|
||||||
|
|
||||||
//app.UseDoYouBuzzAuthentication("", "");
|
//app.UseDoYouBuzzAuthentication("", "");
|
||||||
//app.("", "");
|
//app.("", "");
|
||||||
//app.UseOrcidAuthentication("","");
|
//app.UseOrcidAuthentication("","");
|
||||||
}
|
|
||||||
}
|
//app.UseGeniAuthentication("", "");
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
7
src/Owin.Security.Providers.Geni/Constants.cs
Normal file
7
src/Owin.Security.Providers.Geni/Constants.cs
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
namespace Owin.Security.Providers.Geni
|
||||||
|
{
|
||||||
|
internal static class Constants
|
||||||
|
{
|
||||||
|
public const string DefaultAuthenticationType = "Geni";
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,29 @@
|
|||||||
|
using System;
|
||||||
|
|
||||||
|
namespace Owin.Security.Providers.Geni
|
||||||
|
{
|
||||||
|
public static class GeniAuthenticationExtensions
|
||||||
|
{
|
||||||
|
public static IAppBuilder UseGeniAuthentication(this IAppBuilder app,
|
||||||
|
GeniAuthenticationOptions options)
|
||||||
|
{
|
||||||
|
if (app == null)
|
||||||
|
throw new ArgumentNullException(nameof(app));
|
||||||
|
if (options == null)
|
||||||
|
throw new ArgumentNullException(nameof(options));
|
||||||
|
|
||||||
|
app.Use(typeof(GeniAuthenticationMiddleware), app, options);
|
||||||
|
|
||||||
|
return app;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static IAppBuilder UseGeniAuthentication(this IAppBuilder app, string appKey, string appSecret)
|
||||||
|
{
|
||||||
|
return app.UseGeniAuthentication(new GeniAuthenticationOptions
|
||||||
|
{
|
||||||
|
AppKey = appKey,
|
||||||
|
AppSecret = appSecret
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
226
src/Owin.Security.Providers.Geni/GeniAuthenticationHandler.cs
Normal file
226
src/Owin.Security.Providers.Geni/GeniAuthenticationHandler.cs
Normal file
@@ -0,0 +1,226 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Net.Http;
|
||||||
|
using System.Net.Http.Headers;
|
||||||
|
using System.Security.Claims;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
using Microsoft.Owin.Infrastructure;
|
||||||
|
using Microsoft.Owin.Logging;
|
||||||
|
using Microsoft.Owin.Security;
|
||||||
|
using Microsoft.Owin.Security.DataHandler.Encoder;
|
||||||
|
using Microsoft.Owin.Security.Infrastructure;
|
||||||
|
using Newtonsoft.Json;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
using Owin.Security.Providers.Geni.Provider;
|
||||||
|
|
||||||
|
namespace Owin.Security.Providers.Geni
|
||||||
|
{
|
||||||
|
public class GeniAuthenticationHandler : AuthenticationHandler<GeniAuthenticationOptions>
|
||||||
|
{
|
||||||
|
private const string XmlSchemaString = "http://www.w3.org/2001/XMLSchema#string";
|
||||||
|
|
||||||
|
private readonly ILogger _logger;
|
||||||
|
private readonly HttpClient _httpClient;
|
||||||
|
|
||||||
|
public GeniAuthenticationHandler(HttpClient httpClient, ILogger logger)
|
||||||
|
{
|
||||||
|
_httpClient = httpClient;
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override async Task<AuthenticationTicket> AuthenticateCoreAsync()
|
||||||
|
{
|
||||||
|
AuthenticationProperties properties = null;
|
||||||
|
|
||||||
|
try
|
||||||
|
{
|
||||||
|
string code = null;
|
||||||
|
string state = null;
|
||||||
|
|
||||||
|
var query = Request.Query;
|
||||||
|
var values = query.GetValues("code");
|
||||||
|
if (values != null && values.Count == 1)
|
||||||
|
{
|
||||||
|
code = values[0];
|
||||||
|
}
|
||||||
|
values = query.GetValues("state");
|
||||||
|
if (values != null && values.Count == 1)
|
||||||
|
{
|
||||||
|
state = values[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
properties = Options.StateDataFormat.Unprotect(state);
|
||||||
|
if (properties == null)
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
// OAuth2 10.12 CSRF
|
||||||
|
if (!ValidateCorrelationId(properties, _logger))
|
||||||
|
{
|
||||||
|
return new AuthenticationTicket(null, properties);
|
||||||
|
}
|
||||||
|
|
||||||
|
var requestPrefix = Request.Scheme + "://" + Request.Host;
|
||||||
|
var redirectUri = requestPrefix + Request.PathBase + Options.CallbackPath;
|
||||||
|
|
||||||
|
// Build up the body for the token request
|
||||||
|
var body = new List<KeyValuePair<string, string>>
|
||||||
|
{
|
||||||
|
new KeyValuePair<string, string>("code", code),
|
||||||
|
new KeyValuePair<string, string>("grant_type", "authorization_code"),
|
||||||
|
new KeyValuePair<string, string>("client_id", Options.AppKey),
|
||||||
|
new KeyValuePair<string, string>("redirect_uri", redirectUri)
|
||||||
|
};
|
||||||
|
|
||||||
|
// Request the token
|
||||||
|
var requestMessage = new HttpRequestMessage(HttpMethod.Post, Options.Endpoints.TokenEndpoint);
|
||||||
|
requestMessage.Headers.Authorization = new AuthenticationHeaderValue("Basic", new Base64TextEncoder().Encode(Encoding.ASCII.GetBytes(Options.AppKey + ":" + Options.AppSecret)));
|
||||||
|
requestMessage.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||||
|
requestMessage.Content = new FormUrlEncodedContent(body);
|
||||||
|
var tokenResponse = await _httpClient.SendAsync(requestMessage);
|
||||||
|
tokenResponse.EnsureSuccessStatusCode();
|
||||||
|
var text = await tokenResponse.Content.ReadAsStringAsync();
|
||||||
|
|
||||||
|
// Deserializes the token response
|
||||||
|
dynamic response = JsonConvert.DeserializeObject<dynamic>(text);
|
||||||
|
var accessToken = (string)response.access_token;
|
||||||
|
var refreshToken = (string) response.refresh_token;
|
||||||
|
|
||||||
|
// Get the user info
|
||||||
|
var userInfoRequest = new HttpRequestMessage(HttpMethod.Get, Options.Endpoints.UserEndpoint);
|
||||||
|
userInfoRequest.Headers.Authorization = new AuthenticationHeaderValue("Bearer", accessToken);
|
||||||
|
userInfoRequest.Headers.Accept.Add(new MediaTypeWithQualityHeaderValue("application/json"));
|
||||||
|
var userInfoResponse = await _httpClient.SendAsync(userInfoRequest);
|
||||||
|
userInfoResponse.EnsureSuccessStatusCode();
|
||||||
|
text = await userInfoResponse.Content.ReadAsStringAsync();
|
||||||
|
var user = JObject.Parse(text);
|
||||||
|
|
||||||
|
var context = new GeniAuthenticatedContext(Context, user, accessToken, refreshToken)
|
||||||
|
{
|
||||||
|
Identity = new ClaimsIdentity(
|
||||||
|
Options.AuthenticationType,
|
||||||
|
ClaimsIdentity.DefaultNameClaimType,
|
||||||
|
ClaimsIdentity.DefaultRoleClaimType)
|
||||||
|
};
|
||||||
|
if (!string.IsNullOrEmpty(context.Id))
|
||||||
|
{
|
||||||
|
context.Identity.AddClaim(new Claim(ClaimTypes.NameIdentifier, context.Id, XmlSchemaString, Options.AuthenticationType));
|
||||||
|
}
|
||||||
|
if (!string.IsNullOrEmpty(context.Name))
|
||||||
|
{
|
||||||
|
context.Identity.AddClaim(new Claim(ClaimsIdentity.DefaultNameClaimType, context.Name, XmlSchemaString, Options.AuthenticationType));
|
||||||
|
}
|
||||||
|
context.Properties = properties;
|
||||||
|
|
||||||
|
await Options.Provider.Authenticated(context);
|
||||||
|
|
||||||
|
return new AuthenticationTicket(context.Identity, context.Properties);
|
||||||
|
}
|
||||||
|
catch (Exception ex)
|
||||||
|
{
|
||||||
|
_logger.WriteError(ex.Message);
|
||||||
|
}
|
||||||
|
return new AuthenticationTicket(null, properties);
|
||||||
|
}
|
||||||
|
|
||||||
|
protected override Task ApplyResponseChallengeAsync()
|
||||||
|
{
|
||||||
|
if (Response.StatusCode != 401)
|
||||||
|
{
|
||||||
|
return Task.FromResult<object>(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
var challenge = Helper.LookupChallenge(Options.AuthenticationType, Options.AuthenticationMode);
|
||||||
|
|
||||||
|
if (challenge == null) return Task.FromResult<object>(null);
|
||||||
|
var baseUri =
|
||||||
|
Request.Scheme +
|
||||||
|
Uri.SchemeDelimiter +
|
||||||
|
Request.Host +
|
||||||
|
Request.PathBase;
|
||||||
|
|
||||||
|
var currentUri =
|
||||||
|
baseUri +
|
||||||
|
Request.Path +
|
||||||
|
Request.QueryString;
|
||||||
|
|
||||||
|
var redirectUri =
|
||||||
|
baseUri +
|
||||||
|
Options.CallbackPath;
|
||||||
|
|
||||||
|
var properties = challenge.Properties;
|
||||||
|
if (string.IsNullOrEmpty(properties.RedirectUri))
|
||||||
|
{
|
||||||
|
properties.RedirectUri = currentUri;
|
||||||
|
}
|
||||||
|
|
||||||
|
// OAuth2 10.12 CSRF
|
||||||
|
GenerateCorrelationId(properties);
|
||||||
|
|
||||||
|
var state = Options.StateDataFormat.Protect(properties);
|
||||||
|
|
||||||
|
var authorizationEndpoint =
|
||||||
|
Options.Endpoints.AuthorizationEndpoint +
|
||||||
|
"?client_id=" + Uri.EscapeDataString(Options.AppKey) +
|
||||||
|
"&response_type=" + Uri.EscapeDataString("code") +
|
||||||
|
"&redirect_uri=" + Uri.EscapeDataString(redirectUri) +
|
||||||
|
"&state=" + Uri.EscapeDataString(state);
|
||||||
|
|
||||||
|
Response.Redirect(authorizationEndpoint);
|
||||||
|
|
||||||
|
return Task.FromResult<object>(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public override async Task<bool> InvokeAsync()
|
||||||
|
{
|
||||||
|
return await InvokeReplyPathAsync();
|
||||||
|
}
|
||||||
|
|
||||||
|
private async Task<bool> InvokeReplyPathAsync()
|
||||||
|
{
|
||||||
|
if (!Options.CallbackPath.HasValue || Options.CallbackPath != Request.Path) return false;
|
||||||
|
// TODO: error responses
|
||||||
|
|
||||||
|
var ticket = await AuthenticateAsync();
|
||||||
|
if (ticket == null)
|
||||||
|
{
|
||||||
|
_logger.WriteWarning("Invalid return state, unable to redirect.");
|
||||||
|
Response.StatusCode = 500;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
var context = new GeniReturnEndpointContext(Context, ticket)
|
||||||
|
{
|
||||||
|
SignInAsAuthenticationType = Options.SignInAsAuthenticationType,
|
||||||
|
RedirectUri = ticket.Properties.RedirectUri
|
||||||
|
};
|
||||||
|
|
||||||
|
await Options.Provider.ReturnEndpoint(context);
|
||||||
|
|
||||||
|
if (context.SignInAsAuthenticationType != null &&
|
||||||
|
context.Identity != null)
|
||||||
|
{
|
||||||
|
var grantIdentity = context.Identity;
|
||||||
|
if (!string.Equals(grantIdentity.AuthenticationType, context.SignInAsAuthenticationType, StringComparison.Ordinal))
|
||||||
|
{
|
||||||
|
grantIdentity = new ClaimsIdentity(grantIdentity.Claims, context.SignInAsAuthenticationType, grantIdentity.NameClaimType, grantIdentity.RoleClaimType);
|
||||||
|
}
|
||||||
|
Context.Authentication.SignIn(context.Properties, grantIdentity);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (context.IsRequestCompleted || context.RedirectUri == null) return context.IsRequestCompleted;
|
||||||
|
var redirectUri = context.RedirectUri;
|
||||||
|
if (context.Identity == null)
|
||||||
|
{
|
||||||
|
// add a redirect hint that sign-in failed in some way
|
||||||
|
redirectUri = WebUtilities.AddQueryString(redirectUri, "error", "access_denied");
|
||||||
|
}
|
||||||
|
Response.Redirect(redirectUri);
|
||||||
|
context.RequestCompleted();
|
||||||
|
|
||||||
|
return context.IsRequestCompleted;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
using System;
|
||||||
|
using System.Globalization;
|
||||||
|
using System.Net.Http;
|
||||||
|
using Microsoft.Owin;
|
||||||
|
using Microsoft.Owin.Logging;
|
||||||
|
using Microsoft.Owin.Security;
|
||||||
|
using Microsoft.Owin.Security.DataHandler;
|
||||||
|
using Microsoft.Owin.Security.DataProtection;
|
||||||
|
using Microsoft.Owin.Security.Infrastructure;
|
||||||
|
using Owin.Security.Providers.Geni.Provider;
|
||||||
|
|
||||||
|
namespace Owin.Security.Providers.Geni
|
||||||
|
{
|
||||||
|
public class GeniAuthenticationMiddleware : AuthenticationMiddleware<GeniAuthenticationOptions>
|
||||||
|
{
|
||||||
|
private readonly HttpClient _httpClient;
|
||||||
|
private readonly ILogger _logger;
|
||||||
|
|
||||||
|
public GeniAuthenticationMiddleware(OwinMiddleware next, IAppBuilder app,
|
||||||
|
GeniAuthenticationOptions options)
|
||||||
|
: base(next, options)
|
||||||
|
{
|
||||||
|
if (string.IsNullOrWhiteSpace(Options.AppKey))
|
||||||
|
throw new ArgumentException(string.Format(CultureInfo.CurrentCulture,
|
||||||
|
Resources.Exception_OptionMustBeProvided, "AppKey"));
|
||||||
|
if (string.IsNullOrWhiteSpace(Options.AppSecret))
|
||||||
|
throw new ArgumentException(string.Format(CultureInfo.CurrentCulture,
|
||||||
|
Resources.Exception_OptionMustBeProvided, "AppSecret"));
|
||||||
|
|
||||||
|
_logger = app.CreateLogger<GeniAuthenticationMiddleware>();
|
||||||
|
|
||||||
|
if (Options.Provider == null)
|
||||||
|
Options.Provider = new GeniAuthenticationProvider();
|
||||||
|
|
||||||
|
if (Options.StateDataFormat == null)
|
||||||
|
{
|
||||||
|
var dataProtector = app.CreateDataProtector(
|
||||||
|
typeof (GeniAuthenticationMiddleware).FullName,
|
||||||
|
Options.AuthenticationType, "v1");
|
||||||
|
Options.StateDataFormat = new PropertiesDataFormat(dataProtector);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (string.IsNullOrEmpty(Options.SignInAsAuthenticationType))
|
||||||
|
Options.SignInAsAuthenticationType = app.GetDefaultSignInAsAuthenticationType();
|
||||||
|
|
||||||
|
_httpClient = new HttpClient(new WebRequestHandler())
|
||||||
|
{
|
||||||
|
Timeout = Options.BackchannelTimeout,
|
||||||
|
MaxResponseContentBufferSize = 1024*1024*10,
|
||||||
|
};
|
||||||
|
_httpClient.DefaultRequestHeaders.UserAgent.ParseAdd("Microsoft Owin Geni middleware");
|
||||||
|
_httpClient.DefaultRequestHeaders.ExpectContinue = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Provides the <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler" /> object for processing
|
||||||
|
/// authentication-related requests.
|
||||||
|
/// </summary>
|
||||||
|
/// <returns>
|
||||||
|
/// An <see cref="T:Microsoft.Owin.Security.Infrastructure.AuthenticationHandler" /> configured with the
|
||||||
|
/// <see cref="T:Owin.Security.Providers.Geni.GeniAuthenticationOptions" /> supplied to the constructor.
|
||||||
|
/// </returns>
|
||||||
|
protected override AuthenticationHandler<GeniAuthenticationOptions> CreateHandler()
|
||||||
|
{
|
||||||
|
return new GeniAuthenticationHandler(_httpClient, _logger);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
110
src/Owin.Security.Providers.Geni/GeniAuthenticationOptions.cs
Normal file
110
src/Owin.Security.Providers.Geni/GeniAuthenticationOptions.cs
Normal file
@@ -0,0 +1,110 @@
|
|||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using Microsoft.Owin;
|
||||||
|
using Microsoft.Owin.Security;
|
||||||
|
using Owin.Security.Providers.Geni.Provider;
|
||||||
|
|
||||||
|
namespace Owin.Security.Providers.Geni
|
||||||
|
{
|
||||||
|
public class GeniAuthenticationOptions : AuthenticationOptions
|
||||||
|
{
|
||||||
|
public class GeniAuthenticationEndpoints
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Endpoint which is used to redirect users to request Geni access
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// Defaults to https://www.geni.com/oauth2/authorize
|
||||||
|
/// </remarks>
|
||||||
|
public string AuthorizationEndpoint { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Endpoint which is used to exchange code for access token
|
||||||
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// Defaults to https://api.geni.com/oauth2/token
|
||||||
|
/// </remarks>
|
||||||
|
public string TokenEndpoint { get; set; }
|
||||||
|
|
||||||
|
public string UserEndpoint { get; set; }
|
||||||
|
}
|
||||||
|
|
||||||
|
private const string AuthorizationEndPoint = "https://www.geni.com/platform/oauth/authorize";
|
||||||
|
private const string TokenEndpoint = "https://www.geni.com/platform/oauth/request_token";
|
||||||
|
private const string UserEndpoint = "https://geni.com/api/user";
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets timeout value in milliseconds for back channel communications with Geni.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>
|
||||||
|
/// The back channel timeout in milliseconds.
|
||||||
|
/// </value>
|
||||||
|
public TimeSpan BackchannelTimeout { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// The request path within the application's base path where the user-agent will be returned.
|
||||||
|
/// The middleware will process this request when it arrives.
|
||||||
|
/// Default value is "/signin-Geni".
|
||||||
|
/// </summary>
|
||||||
|
public PathString CallbackPath { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Get or sets the text that the user can display on a sign in user interface.
|
||||||
|
/// </summary>
|
||||||
|
public string Caption
|
||||||
|
{
|
||||||
|
get { return Description.Caption; }
|
||||||
|
set { Description.Caption = value; }
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the Geni supplied App Key
|
||||||
|
/// </summary>
|
||||||
|
public string AppKey { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the Geni supplied App Secret
|
||||||
|
/// </summary>
|
||||||
|
public string AppSecret { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the sets of OAuth endpoints used to authenticate against Geni. Overriding these endpoints allows you to use Geni Enterprise for
|
||||||
|
/// authentication.
|
||||||
|
/// </summary>
|
||||||
|
public GeniAuthenticationEndpoints Endpoints { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the <see cref="IGeniAuthenticationProvider" /> used in the authentication events
|
||||||
|
/// </summary>
|
||||||
|
public IGeniAuthenticationProvider Provider { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the name of another authentication middleware which will be responsible for actually issuing a user
|
||||||
|
/// <see cref="System.Security.Claims.ClaimsIdentity" />.
|
||||||
|
/// </summary>
|
||||||
|
public string SignInAsAuthenticationType { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the type used to secure data handled by the middleware.
|
||||||
|
/// </summary>
|
||||||
|
public ISecureDataFormat<AuthenticationProperties> StateDataFormat { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a new <see cref="GeniAuthenticationOptions" />
|
||||||
|
/// </summary>
|
||||||
|
public GeniAuthenticationOptions()
|
||||||
|
: base("Geni")
|
||||||
|
{
|
||||||
|
Caption = Constants.DefaultAuthenticationType;
|
||||||
|
CallbackPath = new PathString("/signin-Geni");
|
||||||
|
AuthenticationMode = AuthenticationMode.Passive;
|
||||||
|
BackchannelTimeout = TimeSpan.FromSeconds(60);
|
||||||
|
Endpoints = new GeniAuthenticationEndpoints
|
||||||
|
{
|
||||||
|
AuthorizationEndpoint = AuthorizationEndPoint,
|
||||||
|
TokenEndpoint = TokenEndpoint,
|
||||||
|
UserEndpoint = UserEndpoint,
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,103 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||||
|
<ProjectGuid>{9DE25431-F935-48D7-8EB5-ACB6F918111C}</ProjectGuid>
|
||||||
|
<OutputType>Library</OutputType>
|
||||||
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
|
<RootNamespace>Owin.Security.Providers.Geni</RootNamespace>
|
||||||
|
<AssemblyName>Owin.Security.Providers.Geni</AssemblyName>
|
||||||
|
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
||||||
|
<FileAlignment>512</FileAlignment>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
|
<DebugSymbols>true</DebugSymbols>
|
||||||
|
<DebugType>full</DebugType>
|
||||||
|
<Optimize>false</Optimize>
|
||||||
|
<OutputPath>bin\Debug\</OutputPath>
|
||||||
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
|
<DebugType>pdbonly</DebugType>
|
||||||
|
<Optimize>true</Optimize>
|
||||||
|
<OutputPath>bin\Release\</OutputPath>
|
||||||
|
<DefineConstants>TRACE</DefineConstants>
|
||||||
|
<ErrorReport>prompt</ErrorReport>
|
||||||
|
<WarningLevel>4</WarningLevel>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Reference Include="Microsoft.Owin, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\packages\Microsoft.Owin.3.0.1\lib\net45\Microsoft.Owin.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Microsoft.Owin.Security, Version=3.0.1.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\packages\Microsoft.Owin.Security.3.0.1\lib\net45\Microsoft.Owin.Security.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Newtonsoft.Json, Version=8.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\packages\Newtonsoft.Json.8.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="Owin, Version=1.0.0.0, Culture=neutral, PublicKeyToken=f0ebd12fd5e55cc5, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\..\packages\Owin.1.0\lib\net40\Owin.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
|
<Reference Include="System" />
|
||||||
|
<Reference Include="System.Core" />
|
||||||
|
<Reference Include="System.Net.Http.WebRequest" />
|
||||||
|
<Reference Include="System.Xml.Linq" />
|
||||||
|
<Reference Include="System.Data.DataSetExtensions" />
|
||||||
|
<Reference Include="Microsoft.CSharp" />
|
||||||
|
<Reference Include="System.Data" />
|
||||||
|
<Reference Include="System.Net.Http" />
|
||||||
|
<Reference Include="System.Xml" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Constants.cs" />
|
||||||
|
<Compile Include="GeniAuthenticationExtensions.cs" />
|
||||||
|
<Compile Include="GeniAuthenticationHandler.cs" />
|
||||||
|
<Compile Include="GeniAuthenticationMiddleware.cs" />
|
||||||
|
<Compile Include="GeniAuthenticationOptions.cs" />
|
||||||
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
|
<Compile Include="Provider\GeniAuthenticatedContext.cs" />
|
||||||
|
<Compile Include="Provider\GeniAuthenticationProvider.cs" />
|
||||||
|
<Compile Include="Provider\GeniReturnEndpointContext.cs" />
|
||||||
|
<Compile Include="Provider\IGeniAuthenticationProvider.cs" />
|
||||||
|
<Compile Include="Resources.Designer.cs">
|
||||||
|
<DependentUpon>Resources.resx</DependentUpon>
|
||||||
|
<AutoGen>True</AutoGen>
|
||||||
|
<DesignTime>True</DesignTime>
|
||||||
|
</Compile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<None Include="packages.config" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<EmbeddedResource Include="Resources.resx">
|
||||||
|
<Generator>ResXFileCodeGenerator</Generator>
|
||||||
|
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
|
||||||
|
</EmbeddedResource>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup />
|
||||||
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
|
<Target Name="PostBuildMacros">
|
||||||
|
<GetAssemblyIdentity AssemblyFiles="$(TargetPath)">
|
||||||
|
<Output TaskParameter="Assemblies" ItemName="Targets" />
|
||||||
|
</GetAssemblyIdentity>
|
||||||
|
<ItemGroup>
|
||||||
|
<VersionNumber Include="@(Targets->'%(Version)')" />
|
||||||
|
</ItemGroup>
|
||||||
|
</Target>
|
||||||
|
<PropertyGroup>
|
||||||
|
<PreBuildEvent>
|
||||||
|
</PreBuildEvent>
|
||||||
|
<PostBuildEventDependsOn>
|
||||||
|
$(PostBuildEventDependsOn);
|
||||||
|
PostBuildMacros;
|
||||||
|
</PostBuildEventDependsOn>
|
||||||
|
</PropertyGroup>
|
||||||
|
</Project>
|
||||||
36
src/Owin.Security.Providers.Geni/Properties/AssemblyInfo.cs
Normal file
36
src/Owin.Security.Providers.Geni/Properties/AssemblyInfo.cs
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
using System.Reflection;
|
||||||
|
using System.Runtime.CompilerServices;
|
||||||
|
using System.Runtime.InteropServices;
|
||||||
|
|
||||||
|
// General Information about an assembly is controlled through the following
|
||||||
|
// set of attributes. Change these attribute values to modify the information
|
||||||
|
// associated with an assembly.
|
||||||
|
[assembly: AssemblyTitle("Owin.Security.Providers.Geni")]
|
||||||
|
[assembly: AssemblyDescription("")]
|
||||||
|
[assembly: AssemblyConfiguration("")]
|
||||||
|
[assembly: AssemblyCompany("")]
|
||||||
|
[assembly: AssemblyProduct("Owin.Security.Providers.Geni")]
|
||||||
|
[assembly: AssemblyCopyright("Copyright © 2016")]
|
||||||
|
[assembly: AssemblyTrademark("")]
|
||||||
|
[assembly: AssemblyCulture("")]
|
||||||
|
|
||||||
|
// Setting ComVisible to false makes the types in this assembly not visible
|
||||||
|
// to COM components. If you need to access a type in this assembly from
|
||||||
|
// COM, set the ComVisible attribute to true on that type.
|
||||||
|
[assembly: ComVisible(false)]
|
||||||
|
|
||||||
|
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||||
|
[assembly: Guid("9de25431-f935-48d7-8eb5-acb6f918111c")]
|
||||||
|
|
||||||
|
// Version information for an assembly consists of the following four values:
|
||||||
|
//
|
||||||
|
// Major Version
|
||||||
|
// Minor Version
|
||||||
|
// Build Number
|
||||||
|
// Revision
|
||||||
|
//
|
||||||
|
// You can specify all the values or you can default the Build and Revision Numbers
|
||||||
|
// by using the '*' as shown below:
|
||||||
|
// [assembly: AssemblyVersion("1.0.*")]
|
||||||
|
[assembly: AssemblyVersion("1.0.0.0")]
|
||||||
|
[assembly: AssemblyFileVersion("1.0.0.0")]
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
|
||||||
|
|
||||||
|
using System.Security.Claims;
|
||||||
|
using Microsoft.Owin;
|
||||||
|
using Microsoft.Owin.Security;
|
||||||
|
using Microsoft.Owin.Security.Provider;
|
||||||
|
using Newtonsoft.Json.Linq;
|
||||||
|
|
||||||
|
namespace Owin.Security.Providers.Geni.Provider
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Contains information about the login session as well as the user <see cref="System.Security.Claims.ClaimsIdentity"/>.
|
||||||
|
/// </summary>
|
||||||
|
public class GeniAuthenticatedContext : BaseContext
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a <see cref="GeniAuthenticatedContext"/>
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="context">The OWIN environment</param>
|
||||||
|
/// <param name="user">The Geni user information</param>
|
||||||
|
/// <param name="accessToken">Geni Access token</param>
|
||||||
|
/// <param name="refreshToken">Geni Refresh token</param>
|
||||||
|
public GeniAuthenticatedContext(IOwinContext context, JObject user, string accessToken, string refreshToken)
|
||||||
|
: base(context)
|
||||||
|
{
|
||||||
|
AccessToken = accessToken;
|
||||||
|
RefreshToken = refreshToken;
|
||||||
|
User = user;
|
||||||
|
Name = user.SelectToken("user.name").ToString();
|
||||||
|
Id = user.SelectToken("user.translator_id").ToString();
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the user json object that was retrieved from Geni
|
||||||
|
/// during the authorization process.
|
||||||
|
/// </summary>
|
||||||
|
public JObject User { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the user name extracted from the Geni API during
|
||||||
|
/// the authorization process.
|
||||||
|
/// </summary>
|
||||||
|
public string Name { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the user id extracted from the GeniAPI during the
|
||||||
|
/// authorization process.
|
||||||
|
/// </summary>
|
||||||
|
public string Id { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the Geni access token
|
||||||
|
/// </summary>
|
||||||
|
public string AccessToken { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the Geni refresh token
|
||||||
|
/// </summary>
|
||||||
|
public string RefreshToken { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the <see cref="ClaimsIdentity"/> representing the user
|
||||||
|
/// </summary>
|
||||||
|
public ClaimsIdentity Identity { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets a property bag for common authentication properties
|
||||||
|
/// </summary>
|
||||||
|
public AuthenticationProperties Properties { get; set; }
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
using System;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Owin.Security.Providers.Geni.Provider
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Default <see cref="IGeniAuthenticationProvider"/> implementation.
|
||||||
|
/// </summary>
|
||||||
|
public class GeniAuthenticationProvider : IGeniAuthenticationProvider
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Initializes a <see cref="GeniAuthenticationProvider"/>
|
||||||
|
/// </summary>
|
||||||
|
public GeniAuthenticationProvider()
|
||||||
|
{
|
||||||
|
OnAuthenticated = context => Task.FromResult<object>(null);
|
||||||
|
OnReturnEndpoint = context => Task.FromResult<object>(null);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the function that is invoked when the Authenticated method is invoked.
|
||||||
|
/// </summary>
|
||||||
|
public Func<GeniAuthenticatedContext, Task> OnAuthenticated { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets or sets the function that is invoked when the ReturnEndpoint method is invoked.
|
||||||
|
/// </summary>
|
||||||
|
public Func<GeniReturnEndpointContext, Task> OnReturnEndpoint { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Invoked whenever Geni successfully authenticates a user
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="context">Contains information about the login session as well as the user <see cref="System.Security.Claims.ClaimsIdentity"/>.</param>
|
||||||
|
/// <returns>A <see cref="Task"/> representing the completed operation.</returns>
|
||||||
|
public virtual Task Authenticated(GeniAuthenticatedContext context)
|
||||||
|
{
|
||||||
|
return OnAuthenticated(context);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Invoked prior to the <see cref="System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="context"></param>
|
||||||
|
/// <returns>A <see cref="Task"/> representing the completed operation.</returns>
|
||||||
|
public virtual Task ReturnEndpoint(GeniReturnEndpointContext context)
|
||||||
|
{
|
||||||
|
return OnReturnEndpoint(context);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,26 @@
|
|||||||
|
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved. See License.txt in the project root for license information.
|
||||||
|
|
||||||
|
using Microsoft.Owin;
|
||||||
|
using Microsoft.Owin.Security;
|
||||||
|
using Microsoft.Owin.Security.Provider;
|
||||||
|
|
||||||
|
namespace Owin.Security.Providers.Geni.Provider
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Provides context information to middleware providers.
|
||||||
|
/// </summary>
|
||||||
|
public class GeniReturnEndpointContext : ReturnEndpointContext
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
///
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="context">OWIN environment</param>
|
||||||
|
/// <param name="ticket">The authentication ticket</param>
|
||||||
|
public GeniReturnEndpointContext(
|
||||||
|
IOwinContext context,
|
||||||
|
AuthenticationTicket ticket)
|
||||||
|
: base(context, ticket)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,24 @@
|
|||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
|
namespace Owin.Security.Providers.Geni.Provider
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Specifies callback methods which the <see cref="GeniAuthenticationMiddleware"></see> invokes to enable developer control over the authentication process. />
|
||||||
|
/// </summary>
|
||||||
|
public interface IGeniAuthenticationProvider
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Invoked whenever Geni successfully authenticates a user
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="context">Contains information about the login session as well as the user <see cref="System.Security.Claims.ClaimsIdentity"/>.</param>
|
||||||
|
/// <returns>A <see cref="Task"/> representing the completed operation.</returns>
|
||||||
|
Task Authenticated(GeniAuthenticatedContext context);
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Invoked prior to the <see cref="System.Security.Claims.ClaimsIdentity"/> being saved in a local cookie and the browser being redirected to the originally requested URL.
|
||||||
|
/// </summary>
|
||||||
|
/// <param name="context"></param>
|
||||||
|
/// <returns>A <see cref="Task"/> representing the completed operation.</returns>
|
||||||
|
Task ReturnEndpoint(GeniReturnEndpointContext context);
|
||||||
|
}
|
||||||
|
}
|
||||||
81
src/Owin.Security.Providers.Geni/Resources.Designer.cs
generated
Normal file
81
src/Owin.Security.Providers.Geni/Resources.Designer.cs
generated
Normal file
@@ -0,0 +1,81 @@
|
|||||||
|
//------------------------------------------------------------------------------
|
||||||
|
// <auto-generated>
|
||||||
|
// This code was generated by a tool.
|
||||||
|
// Runtime Version:4.0.30319.42000
|
||||||
|
//
|
||||||
|
// Changes to this file may cause incorrect behavior and will be lost if
|
||||||
|
// the code is regenerated.
|
||||||
|
// </auto-generated>
|
||||||
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
namespace Owin.Security.Providers.Geni {
|
||||||
|
using System;
|
||||||
|
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// A strongly-typed resource class, for looking up localized strings, etc.
|
||||||
|
/// </summary>
|
||||||
|
// This class was auto-generated by the StronglyTypedResourceBuilder
|
||||||
|
// class via a tool like ResGen or Visual Studio.
|
||||||
|
// To add or remove a member, edit your .ResX file then rerun ResGen
|
||||||
|
// with the /str option, or rebuild your VS project.
|
||||||
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||||
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
|
internal class Resources {
|
||||||
|
|
||||||
|
private static global::System.Resources.ResourceManager resourceMan;
|
||||||
|
|
||||||
|
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||||
|
|
||||||
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||||
|
internal Resources() {
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Returns the cached ResourceManager instance used by this class.
|
||||||
|
/// </summary>
|
||||||
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||||
|
get {
|
||||||
|
if (object.ReferenceEquals(resourceMan, null)) {
|
||||||
|
var temp = new global::System.Resources.ResourceManager("Owin.Security.Providers.Geni.Resources", typeof(Resources).Assembly);
|
||||||
|
resourceMan = temp;
|
||||||
|
}
|
||||||
|
return resourceMan;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Overrides the current thread's CurrentUICulture property for all
|
||||||
|
/// resource lookups using this strongly typed resource class.
|
||||||
|
/// </summary>
|
||||||
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
|
internal static global::System.Globalization.CultureInfo Culture {
|
||||||
|
get {
|
||||||
|
return resourceCulture;
|
||||||
|
}
|
||||||
|
set {
|
||||||
|
resourceCulture = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to The '{0}' option must be provided..
|
||||||
|
/// </summary>
|
||||||
|
internal static string Exception_OptionMustBeProvided {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Exception_OptionMustBeProvided", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Looks up a localized string similar to An ICertificateValidator cannot be specified at the same time as an HttpMessageHandler unless it is a WebRequestHandler..
|
||||||
|
/// </summary>
|
||||||
|
internal static string Exception_ValidatorHandlerMismatch {
|
||||||
|
get {
|
||||||
|
return ResourceManager.GetString("Exception_ValidatorHandlerMismatch", resourceCulture);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
126
src/Owin.Security.Providers.Geni/Resources.resx
Normal file
126
src/Owin.Security.Providers.Geni/Resources.resx
Normal file
@@ -0,0 +1,126 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<root>
|
||||||
|
<!--
|
||||||
|
Microsoft ResX Schema
|
||||||
|
|
||||||
|
Version 2.0
|
||||||
|
|
||||||
|
The primary goals of this format is to allow a simple XML format
|
||||||
|
that is mostly human readable. The generation and parsing of the
|
||||||
|
various data types are done through the TypeConverter classes
|
||||||
|
associated with the data types.
|
||||||
|
|
||||||
|
Example:
|
||||||
|
|
||||||
|
... ado.net/XML headers & schema ...
|
||||||
|
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||||
|
<resheader name="version">2.0</resheader>
|
||||||
|
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||||
|
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||||
|
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||||
|
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||||
|
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||||
|
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||||
|
</data>
|
||||||
|
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||||
|
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||||
|
<comment>This is a comment</comment>
|
||||||
|
</data>
|
||||||
|
|
||||||
|
There are any number of "resheader" rows that contain simple
|
||||||
|
name/value pairs.
|
||||||
|
|
||||||
|
Each data row contains a name, and value. The row also contains a
|
||||||
|
type or mimetype. Type corresponds to a .NET class that support
|
||||||
|
text/value conversion through the TypeConverter architecture.
|
||||||
|
Classes that don't support this are serialized and stored with the
|
||||||
|
mimetype set.
|
||||||
|
|
||||||
|
The mimetype is used for serialized objects, and tells the
|
||||||
|
ResXResourceReader how to depersist the object. This is currently not
|
||||||
|
extensible. For a given mimetype the value must be set accordingly:
|
||||||
|
|
||||||
|
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||||
|
that the ResXResourceWriter will generate, however the reader can
|
||||||
|
read any of the formats listed below.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.binary.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.soap.base64
|
||||||
|
value : The object must be serialized with
|
||||||
|
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
|
||||||
|
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||||
|
value : The object must be serialized into a byte array
|
||||||
|
: using a System.ComponentModel.TypeConverter
|
||||||
|
: and then encoded with base64 encoding.
|
||||||
|
-->
|
||||||
|
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||||
|
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
|
||||||
|
<xsd:element name="root" msdata:IsDataSet="true">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:choice maxOccurs="unbounded">
|
||||||
|
<xsd:element name="metadata">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" use="required" type="xsd:string" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="assembly">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:attribute name="alias" type="xsd:string" />
|
||||||
|
<xsd:attribute name="name" type="xsd:string" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="data">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
|
||||||
|
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||||
|
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||||
|
<xsd:attribute ref="xml:space" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
<xsd:element name="resheader">
|
||||||
|
<xsd:complexType>
|
||||||
|
<xsd:sequence>
|
||||||
|
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||||
|
</xsd:sequence>
|
||||||
|
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:choice>
|
||||||
|
</xsd:complexType>
|
||||||
|
</xsd:element>
|
||||||
|
</xsd:schema>
|
||||||
|
<resheader name="resmimetype">
|
||||||
|
<value>text/microsoft-resx</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="version">
|
||||||
|
<value>2.0</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="reader">
|
||||||
|
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<resheader name="writer">
|
||||||
|
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||||
|
</resheader>
|
||||||
|
<data name="Exception_OptionMustBeProvided" xml:space="preserve">
|
||||||
|
<value>The '{0}' option must be provided.</value>
|
||||||
|
</data>
|
||||||
|
<data name="Exception_ValidatorHandlerMismatch" xml:space="preserve">
|
||||||
|
<value>An ICertificateValidator cannot be specified at the same time as an HttpMessageHandler unless it is a WebRequestHandler.</value>
|
||||||
|
</data>
|
||||||
|
</root>
|
||||||
7
src/Owin.Security.Providers.Geni/packages.config
Normal file
7
src/Owin.Security.Providers.Geni/packages.config
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<packages>
|
||||||
|
<package id="Microsoft.Owin" version="3.0.1" targetFramework="net452" />
|
||||||
|
<package id="Microsoft.Owin.Security" version="3.0.1" targetFramework="net452" />
|
||||||
|
<package id="Newtonsoft.Json" version="8.0.3" targetFramework="net452" />
|
||||||
|
<package id="Owin" version="1.0" targetFramework="net452" />
|
||||||
|
</packages>
|
||||||
Reference in New Issue
Block a user