3 class ClientApplication < ActiveRecord::Base
5 has_many :tokens, :class_name => "OauthToken", :dependent => :delete_all
6 has_many :access_tokens
7 has_many :oauth2_verifiers
10 validates_presence_of :name, :url, :key, :secret
11 validates_uniqueness_of :key
12 validates_format_of :url, :with => %r{\Ahttp(s?)://(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(/|/([\w#!:.?+=&%@!\-/]))?}i
13 validates_format_of :support_url, :with => %r{\Ahttp(s?)://(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(/|/([\w#!:.?+=&%@!\-/]))?}i, :allow_blank => true
14 validates_format_of :callback_url, :with => %r{\A[a-z][a-z0-9.+-]*://(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(/|/([\w#!:.?+=&%@!\-/]))?}i, :allow_blank => true
16 before_validation :generate_keys, :on => :create
18 attr_accessor :token_callback_url
20 def self.find_token(token_key)
21 token = OauthToken.find_by_token(token_key, :include => :client_application)
22 token if token && token.authorized?
25 def self.verify_request(request, options = {}, &block)
26 signature = OAuth::Signature.build(request, options, &block)
27 return false unless OauthNonce.remember(signature.request.nonce, signature.request.timestamp)
28 value = signature.verify
30 rescue OAuth::Signature::UnknownSignatureMethod
34 def self.all_permissions
39 @oauth_server ||= OAuth::Server.new("http://" + SERVER_URL)
43 @oauth_client ||= OAuth::Consumer.new(key, secret)
46 def create_request_token(params = {})
47 params = { :client_application => self, :callback_url => token_callback_url }
48 permissions.each do |p|
51 RequestToken.create(params)
54 def access_token_for_user(user)
55 unless token = access_tokens.valid.where(:user_id => user).first
56 params = { :user => user }
58 permissions.each do |p|
62 token = access_tokens.create(params)
68 # the permissions that this client would like from the user
70 ClientApplication.all_permissions.select { |p| self[p] }
75 # this is the set of permissions that the client can ask for. clients
76 # have to say up-front what permissions they want and when users sign up they
77 # can agree or not agree to each of them.
78 PERMISSIONS = [:allow_read_prefs, :allow_write_prefs, :allow_write_diary,
79 :allow_write_api, :allow_read_gpx, :allow_write_gpx,
83 self.key = OAuth::Helper.generate_key(40)[0, 40]
84 self.secret = OAuth::Helper.generate_key(40)[0, 40]