]> git.openstreetmap.org Git - rails.git/blob - app/models/client_application.rb
b1d3d945e2e79146a079daaf4004c53dcdf35696
[rails.git] / app / models / client_application.rb
1 require 'oauth'
2
3 class ClientApplication < ActiveRecord::Base
4   belongs_to :user
5   has_many :tokens, :class_name => "OauthToken", :dependent => :delete_all
6   has_many :access_tokens
7   has_many :oauth2_verifiers
8   has_many :oauth_tokens
9
10   validates_presence_of :name, :url, :key, :secret
11   validates_uniqueness_of :key
12   validates_format_of :url, :with => /\Ahttp(s?):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/i
13   validates_format_of :support_url, :with => /\Ahttp(s?):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/i, :allow_blank => true
14   validates_format_of :callback_url, :with => /\A[a-z][a-z0-9.+-]*:\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?/i, :allow_blank => true
15
16   before_validation :generate_keys, :on => :create
17
18   attr_accessor :token_callback_url
19
20   def self.find_token(token_key)
21     token = OauthToken.find_by_token(token_key, :include => :client_application)
22     if token && token.authorized?
23       token
24     else
25       nil
26     end
27   end
28
29   def self.verify_request(request, options = {}, &block)
30     signature = OAuth::Signature.build(request, options, &block)
31     return false unless OauthNonce.remember(signature.request.nonce, signature.request.timestamp)
32     value = signature.verify
33     value
34   rescue OAuth::Signature::UnknownSignatureMethod
35     false
36   end
37
38   def self.all_permissions
39     PERMISSIONS
40   end
41
42   def oauth_server
43     @oauth_server ||= OAuth::Server.new("http://" + SERVER_URL)
44   end
45
46   def credentials
47     @oauth_client ||= OAuth::Consumer.new(key, secret)
48   end
49
50   def create_request_token(params = {})
51     params = { :client_application => self, :callback_url => token_callback_url }
52     permissions.each do |p|
53       params[p] = true
54     end
55     RequestToken.create(params)
56   end
57
58   def access_token_for_user(user)
59     unless token = access_tokens.valid.where(:user_id => user).first
60       params = { :user => user }
61
62       permissions.each do |p|
63         params[p] = true
64       end
65
66       token = access_tokens.create(params)
67     end
68
69     token
70   end
71
72   # the permissions that this client would like from the user
73   def permissions
74     ClientApplication.all_permissions.select { |p| self[p] }
75   end
76
77   protected
78
79   # this is the set of permissions that the client can ask for. clients
80   # have to say up-front what permissions they want and when users sign up they
81   # can agree or not agree to each of them.
82   PERMISSIONS = [:allow_read_prefs, :allow_write_prefs, :allow_write_diary,
83                  :allow_write_api, :allow_read_gpx, :allow_write_gpx,
84                  :allow_write_notes]
85
86   def generate_keys
87     self.key = OAuth::Helper.generate_key(40)[0, 40]
88     self.secret = OAuth::Helper.generate_key(40)[0, 40]
89   end
90 end