//----------------------------------------------------------------------- // // Copyright (c) Andrew Arnott. All rights reserved. // //----------------------------------------------------------------------- using System; using System.Linq; using System.Data.Linq; using System.Collections.Generic; using System.Diagnostics; using DotNetOAuth.ChannelElements; using DotNetOAuth.Messaging; public class DatabaseTokenManager : ITokenManager { #region ITokenManager Members public string GetConsumerSecret(string consumerKey) { var consumerRow = Global.DataContext.OAuthConsumers.SingleOrDefault( consumerCandidate => consumerCandidate.ConsumerKey == consumerKey); if (consumerRow == null) { throw new ArgumentException(); } return consumerRow.ConsumerSecret; } public string GetTokenSecret(string token) { var tokenRow = Global.DataContext.OAuthTokens.SingleOrDefault( tokenCandidate => tokenCandidate.Token == token); if (tokenRow == null) { throw new ArgumentException(); } return tokenRow.TokenSecret; } public void StoreNewRequestToken(string consumerKey, string requestToken, string requestTokenSecret, IDictionary parameters) { var consumer = Global.DataContext.OAuthConsumers.Single(consumerRow => consumerRow.ConsumerKey == consumerKey); string scope = parameters["scope"]; OAuthToken newToken = new OAuthToken { OAuthConsumer = consumer, Token = requestToken, TokenSecret = requestTokenSecret, IssueDate = DateTime.UtcNow, Scope = scope, }; Global.DataContext.OAuthTokens.InsertOnSubmit(newToken); } /// /// Checks whether a given request token has already been authorized /// by some user for use by the Consumer that requested it. /// /// The Consumer's request token. /// /// True if the request token has already been fully authorized by the user /// who owns the relevant protected resources. False if the token has not yet /// been authorized, has expired or does not exist. /// public bool IsRequestTokenAuthorized(string requestToken) { var tokenFound = Global.DataContext.OAuthTokens.SingleOrDefault( token => token.Token == requestToken && token.State == TokenAuthorizationState.AuthorizedRequestToken); return tokenFound != null; } public void ExpireRequestTokenAndStoreNewAccessToken(string consumerKey, string requestToken, string accessToken, string accessTokenSecret) { var data = Global.DataContext; var consumerRow = data.OAuthConsumers.Single(consumer => consumer.ConsumerKey == consumerKey); var tokenRow = data.OAuthTokens.Single(token => token.Token == requestToken && token.OAuthConsumer == consumerRow); Debug.Assert(tokenRow.State == TokenAuthorizationState.AuthorizedRequestToken, "The token should be authorized already!"); // Update the existing row to be an access token. tokenRow.IssueDate = DateTime.UtcNow; tokenRow.State = TokenAuthorizationState.AccessToken; tokenRow.Token = accessToken; tokenRow.TokenSecret = accessTokenSecret; } /// /// Classifies a token as a request token or an access token. /// /// The token to classify. /// Request or Access token, or invalid if the token is not recognized. public TokenType GetTokenType(string token) { var tokenRow = Global.DataContext.OAuthTokens.SingleOrDefault(tokenCandidate => tokenCandidate.Token == token); if (tokenRow == null) { return TokenType.InvalidToken; } else if (tokenRow.State == TokenAuthorizationState.AccessToken) { return TokenType.AccessToken; } else { return TokenType.RequestToken; } } #endregion public void AuthorizeRequestToken(string requestToken, User user) { if (requestToken == null) { throw new ArgumentNullException("requestToken"); } if (user == null) { throw new ArgumentNullException("user"); } var tokenRow = Global.DataContext.OAuthTokens.SingleOrDefault( tokenCandidate => tokenCandidate.Token == requestToken && tokenCandidate.State == TokenAuthorizationState.UnauthorizedRequestToken); if (tokenRow == null) { throw new ArgumentException(); } tokenRow.State = TokenAuthorizationState.AuthorizedRequestToken; tokenRow.User = user; } }