X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/fa11baf5c348d6eb4ca00d6d15cf9893626fa2d6..406b46e49b786fab879286d77735b2a16c1cfcc5:/vendor/plugins/oauth-plugin/generators/oauth_provider/templates/oauth_token.rb diff --git a/vendor/plugins/oauth-plugin/generators/oauth_provider/templates/oauth_token.rb b/vendor/plugins/oauth-plugin/generators/oauth_provider/templates/oauth_token.rb new file mode 100644 index 000000000..5fca40ce2 --- /dev/null +++ b/vendor/plugins/oauth-plugin/generators/oauth_provider/templates/oauth_token.rb @@ -0,0 +1,31 @@ +class OauthToken < ActiveRecord::Base + belongs_to :client_application + belongs_to :user + validates_uniqueness_of :token + validates_presence_of :client_application, :token, :secret + before_validation_on_create :generate_keys + + def invalidated? + invalidated_at != nil + end + + def invalidate! + update_attribute(:invalidated_at, Time.now) + end + + def authorized? + authorized_at != nil && !invalidated? + end + + def to_query + "oauth_token=#{token}&oauth_token_secret=#{secret}" + end + +protected + + def generate_keys + @oauth_token = client_application.oauth_server.generate_credentials + self.token = @oauth_token[0] + self.secret = @oauth_token[1] + end +end