class ClientApplication < ActiveRecord::Base
belongs_to :user
has_many :tokens, :class_name => "OauthToken"
+ has_many :access_tokens
validates_presence_of :name, :url, :key, :secret
validates_uniqueness_of :key
before_validation_on_create :generate_keys
RequestToken.create :client_application => self, :callback_url => self.token_callback_url
end
+ def access_token_for_user(user)
+ unless token = access_tokens.find(:first, :conditions => { :user_id => user.id, :invalidated_at => nil })
+ params = { :user => user }
+
+ permissions.each do |p|
+ params[p] = true
+ end
+
+ token = access_tokens.create(params)
+ end
+
+ token
+ end
+
# the permissions that this client would like from the user
def permissions
ClientApplication.all_permissions.select { |p| self[p] }
</div>
<%= javascript_include_tag 'swfobject.js' %>
+
+<% token = @user.access_token(POTLATCH2_KEY) %>
+
<script type="text/javascript" defer="defer">
var brokenContentSize = $("content").offsetWidth == 0;
var fo = new SWFObject("/potlatch2/potlatch2.swf?d="+Math.round(Math.random()*1000), "potlatch", "100%", "100%", "9", "#FFFFFF");
if (lat) { fo.addVariable("lat",lat); }
if (lon) { fo.addVariable("lon",lon); }
fo.addVariable("zoom",zoom);
- fo.addVariable("api","/api/<%= API_VERSION %>/");
- fo.addVariable("policy","/api/crossdomain.xml");
+ fo.addVariable("api","http://<%= SERVER_URL %>/api/<%= API_VERSION %>/");
+ fo.addVariable("policy","http://<%= SERVER_URL %>/api/crossdomain.xml");
fo.addVariable("connection","XML");
+ fo.addVariable("oauth_token","<%= token.token %>");
+ fo.addVariable("oauth_token_secret","<%= token.secret %>");
+ fo.addVariable("oauth_consumer_key","<%= token.client_application.key %>");
+ fo.addVariable("oauth_consumer_secret","<%= token.client_application.secret %>");
fo.write("map");
}