Module: Facebooker::Rails::Helpers
- Includes:
- FbConnect
- Defined in:
- lib/facebooker/rails/helpers.rb,
lib/facebooker/rails/helpers/fb_connect.rb
Overview
Facebook specific helpers for creating FBML
All helpers that take a user as a parameter will get the Facebook UID from the facebook_id attribute if it exists. It will use to_s if the facebook_id attribute is not present.
Defined Under Namespace
Modules: FbConnect
Constant Summary collapse
- FB_DIALOG_BUTTON_VALID_OPTION_KEYS =
[:close_dialog, :href, :form_id, :clickrewriteurl, :clickrewriteid, :clickrewriteform]
- FB_NAME_OPTION_KEYS_TO_TRANSFORM =
{:first_name_only => :firstnameonly, :last_name_only => :lastnameonly, :show_network => :shownetwork, :use_you => :useyou, :if_cant_see => :ifcantsee, :subject_id => :subjectid}
- FB_NAME_VALID_OPTION_KEYS =
[:firstnameonly, :linked, :lastnameonly, :possessive, :reflexive, :shownetwork, :useyou, :ifcantsee, :capitalize, :subjectid]
- FB_PRONOUN_OPTION_KEYS_TO_TRANSFORM =
{:use_you => :useyou, :use_they => :usethey}
- FB_PRONOUN_VALID_OPTION_KEYS =
[:useyou, :possessive, :reflexive, :objective, :usethey, :capitalize]
- FB_REF_VALID_OPTION_KEYS =
[:url, :handle]
- FB_PROFILE_PIC_OPTION_KEYS_TO_TRANSFORM =
{:facebook_logo => 'facebook-logo'}
- FB_PROFILE_PIC_VALID_OPTION_KEYS =
[:size, :linked, 'facebook-logo', :width, :height]
- FB_PHOTO_VALID_OPTION_KEYS =
[:uid, :size, :align]
- VALID_FB_SHARED_PHOTO_SIZES =
[:thumb, :small, :normal, :square]
- VALID_FB_PHOTO_SIZES =
VALID_FB_SHARED_PHOTO_SIZES
- VALID_FB_PROFILE_PIC_SIZES =
VALID_FB_SHARED_PHOTO_SIZES
- VALID_PERMISSIONS =
[:email, :offline_access, :status_update, :photo_upload, :create_listing, :create_event, :rsvp_event, :sms, :video_upload, :publish_stream, :read_stream]
- FB_TAB_ITEM_VALID_OPTION_KEYS =
[:align, :selected]
- VALID_FB_SHARED_ALIGN_VALUES =
[:left, :right]
- VALID_FB_PHOTO_ALIGN_VALUES =
VALID_FB_SHARED_ALIGN_VALUES
- VALID_FB_TAB_ITEM_ALIGN_VALUES =
VALID_FB_SHARED_ALIGN_VALUES
Instance Method Summary collapse
- #cast_to_photo_id(object) ⇒ Object
-
#facebook_form_for(record_or_name_or_array, *args, &proc) ⇒ Object
Create a facebook form using <fb:editor>.
-
#facebook_messages ⇒ Object
Render flash values as <fb:message> and <fb:error> tags.
-
#fb_about_url ⇒ Object
Return the URL for the about page of the application.
-
#fb_action(name, url) ⇒ Object
Renders an action using the <fb:action> tag.
-
#fb_add_info_section ⇒ Object
Renders an ‘Add to Info’ button The button allows a user to add an application info section to her Info tab.
-
#fb_add_profile_section ⇒ Object
Renders an ‘Add to Profile’ button The button allows a user to add condensed profile box to the main profile.
-
#fb_application_name(options = {}) ⇒ Object
Render an fb:application-name tag.
-
#fb_board(xid, options = {}) ⇒ Object
Embed a discussion board named xid on the current page <em>See</em wiki.developers.facebook.com/index.php/Fb:board for more details Options are: * canpost * candelete * canmark * cancreatet * numtopics * callbackurl * returnurl.
-
#fb_bookmark_button ⇒ Object
Renders the Facebook bookmark button.
-
#fb_comments(xid, canpost = true, candelete = false, numposts = 5, options = {}) ⇒ Object
Create a comment area All the data for this content area is stored on the facebook servers.
- #fb_container(options = {}, &proc) ⇒ Object
-
#fb_create_button(name, url) ⇒ Object
Render a <fb:create-button> tag For use inside <fb:dashboard>.
-
#fb_dashboard(&proc) ⇒ Object
Create a dashboard.
-
#fb_date(time, options = {}) ⇒ Object
Renders a fb:date element.
-
#fb_dialog(id, cancel_button, &block) ⇒ Object
Create an fb:dialog id must be a unique name e.g.
- #fb_dialog_button(type, value, options = {}) ⇒ Object
- #fb_dialog_content(&block) ⇒ Object
- #fb_dialog_title(title) ⇒ Object
-
#fb_else(&proc) ⇒ Object
Render fb:else tag Must be used within if block such as fb_if_is_user or fb_if_is_app_user .
-
#fb_error(message, text = nil) ⇒ Object
Render an <fb:error> tag If message and text are present then this will render fb:error and fb:message tag TODO: Optionally takes a decoration tag with value of ‘no_padding’ or ‘shorten’.
-
#fb_eventlink(eid) ⇒ Object
Renders an <fb:eventlink /> tag that displays the event name and links to the event’s page.
-
#fb_explanation(message, text = nil) ⇒ Object
Render an <fb:explanation> tag If message and text are present then this will render fb:error and fb:message tag TODO: Optionally takes a decoration tag with value of ‘no_padding’ or ‘shorten’.
-
#fb_fbml_attribute(name, text, options = {}) ⇒ Object
Renders a fb:fbml-attribute element.
-
#fb_friend_selector(options = {}) ⇒ Object
Render an <fb:friend-selector> element See: wiki.developers.facebook.com/index.php/Fb:friend-selector for options.
-
#fb_google_analytics(uacct, options = {}) ⇒ Object
Create a Google Analytics tag.
-
#fb_grouplink(gid) ⇒ Object
Renders an <fb:grouplink /> tag that displays the group name and links to the group’s page.
-
#fb_help(name, url) ⇒ Object
Render a <fb:help> tag For use inside <fb:dashboard>.
-
#fb_if_is_app_user(user = nil, options = {}, &proc) ⇒ Object
Render if-is-app-user tag This tag renders the enclosing content only if the user specified has accepted the terms of service for the application.
-
#fb_if_is_user(user, &proc) ⇒ Object
Render fb:if-is-user tag This tag only renders enclosing content if the user is one of those specified user can be a single user or an Array of users Example: <% fb_if_is_user(@check_user) do %> <%= fb_name(@facebook_user) %> are one of the users.
-
#fb_if_user_has_added_app(user, options = {}, &proc) ⇒ Object
Render if-user-has-added-app tag This tag renders the enclosing content only if the user specified has installed the application .
- #fb_iframe(src, options = {}) ⇒ Object
-
#fb_intl(text = nil, options = {}, &proc) ⇒ Object
Renders a fb:intl element.
-
#fb_intl_token(name, text = nil, &proc) ⇒ Object
Renders a fb:intl-token element.
-
#fb_multi_friend_input(options = {}) ⇒ Object
Render an <fb:multi-friend-input> element See: wiki.developers.facebook.com/index.php/Fb:multi-friend-input for options.
-
#fb_multi_friend_request(type, friend_selector_message, url, fb_multi_friend_selector_options = {}, &block) ⇒ Object
Create an fb:request-form with an fb_multi_friend_selector inside.
-
#fb_multi_friend_selector(message, options = {}, &block) ⇒ Object
Render an <fb:multi-friend-selector> with the passed in welcome message Full version shows all profile pics for friends.
-
#fb_multi_friend_selector_condensed(options = {}, &block) ⇒ Object
Render a condensed <fb:multi-friend-selector> with the passed in welcome message Condensed version show checkboxes for each friend.
-
#fb_name(user, options = {}) ⇒ Object
Render an fb:name tag for the given user This renders the name of the user specified.
-
#fb_narrow(&proc) ⇒ Object
Content for the narrow profile box goes in this tag.
-
#fb_photo(photo, options = {}) ⇒ Object
Render an fb:photo tag.
-
#fb_profile_pic(user, options = {}) ⇒ Object
Render an <fb:profile-pic> for the specified user.
-
#fb_prompt_permission(permission, message, callback = nil) ⇒ Object
Renders a link that, when clicked, initiates a dialog requesting the specified extended permission from the user.
-
#fb_prompt_permissions(permissions, message, callback = nil) ⇒ Object
Renders a link to prompt for multiple permissions at once.
-
#fb_pronoun(user, options = {}) ⇒ Object
Render an <fb:pronoun> tag for the specified user Options give flexibility for placing in any part of a sentence.
-
#fb_ref(options) ⇒ Object
Render an fb:ref tag.
-
#fb_req_choice(label, url) ⇒ Object
Render a button in a request using the <fb:req-choice> tag url must be an absolute url This should be used inside the block of an fb_multi_friend_request.
-
#fb_request_form(type, message_param, url, options = {}, &block) ⇒ Object
Create an fb:request-form without a selector.
-
#fb_request_form_submit(options = {}) ⇒ Object
Create a submit button for an <fb:request-form> If the request is for an individual user you can optionally Provide the user and a label for the request button.
-
#fb_serverfbml(options = {}, &proc) ⇒ Object
Renders the FBML on a Facebook server inside an iframe.
-
#fb_share_button(url) ⇒ Object
Renders a standard ‘Share’ button for the specified URL.
- #fb_show_feed_dialog(action, user_message = "", prompt = "", callback = nil) ⇒ Object
-
#fb_success(message, text = nil) ⇒ Object
Render an <fb:success> tag If message and text are present then this will render fb:error and fb:message tag TODO: Optionally takes a decoration tag with value of ‘no_padding’ or ‘shorten’.
- #fb_swf(src, options = {}) ⇒ Object
-
#fb_tab_item(title, url, options = {}) ⇒ Object
Render an fb:tab_item tag.
-
#fb_tabs(&block) ⇒ Object
Render an fb:tabs tag containing some number of fb:tab_item tags.
-
#fb_time(time, options = {}) ⇒ Object
Renders an fb:time element.
-
#fb_title(title) ⇒ Object
Adds a title to the title bar.
-
#fb_user_status(user, linked = true) ⇒ Object
Returns the status of the user.
-
#fb_wall(&proc) ⇒ Object
Create a Facebook wall.
-
#fb_wallpost(user, message) ⇒ Object
(also: #fb_wall_post)
Render an <fb:wallpost> tag TODO: Optionally takes a time parameter t = int The current time, which is displayed in epoch seconds.
-
#fb_wide(&proc) ⇒ Object
Content for the wide profile box goes in this tag.
- #fbjs_library ⇒ Object
- #validate_fb_photo_align_value(options) ⇒ Object
- #validate_fb_ref_does_not_have_both_url_and_handle(options) ⇒ Object
- #validate_fb_ref_has_either_url_or_handle(options) ⇒ Object
- #validate_fb_tab_item_align_value(options) ⇒ Object
- #versioned_concat(string, binding) ⇒ Object
Methods included from FbConnect
#fb_bookmark_link, #fb_connect_javascript_tag, #fb_connect_stream_publish, #fb_login_and_redirect, #fb_login_button, #fb_logout_link, #fb_unconnected_friends_count, #fb_user_action, #init_fb_connect
Instance Method Details
#cast_to_photo_id(object) ⇒ Object
331 332 333 |
# File 'lib/facebooker/rails/helpers.rb', line 331 def cast_to_photo_id(object) object.respond_to?(:photo_id) ? object.photo_id : object end |
#facebook_form_for(record_or_name_or_array, *args, &proc) ⇒ Object
Create a facebook form using <fb:editor>
It yields a form builder that will convert the standard rails form helpers into the facebook specific version.
Example:
<% facebook_form_for(:poke,@poke,:url => create_poke_path) do |f| %>
<%= f.text_field :message, :label=>"message" %>
<%= f.buttons "Save Poke" %>
<% end %>
will generate
<fb:editor action="/pokes/create">
<fb:editor-text name="poke[message]" id="poke_message" value="" label="message" />
<fb:editor-buttonset>
<fb:editor-button label="Save Poke"
</fb:editor-buttonset>
</fb:editor>
184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 |
# File 'lib/facebooker/rails/helpers.rb', line 184 def facebook_form_for( record_or_name_or_array,*args, &proc) raise ArgumentError, "Missing block" unless block_given? = args.last.is_a?(Hash) ? args.pop : {} case record_or_name_or_array when String, Symbol object_name = record_or_name_or_array when Array object = record_or_name_or_array.last object_name = ActionController::RecordIdentifier.singular_class_name(object) (record_or_name_or_array, ) args.unshift object else object = record_or_name_or_array object_name = ActionController::RecordIdentifier.singular_class_name(object) ([object], ) args.unshift object end method = ([:html]||{})[:method] [:builder] ||= Facebooker::Rails::FacebookFormBuilder ={} action=.delete(:url) [:action]= action unless action.blank? width=.delete(:width) [:width]=width unless width.blank? width=.delete(:labelwidth) [:labelwidth]=width unless width.blank? versioned_concat(tag("fb:editor",,true) , proc.binding) versioned_concat(tag(:input,{:type=>"hidden",:name=>:_method, :value=>method},false), proc.binding) unless method.blank? versioned_concat(token_tag, proc.binding) fields_for( object_name,*(args << ), &proc) versioned_concat("</fb:editor>",proc.binding) end |
#facebook_messages ⇒ Object
429 430 431 432 433 434 435 436 437 438 |
# File 'lib/facebooker/rails/helpers.rb', line 429 def ="" unless flash[:notice].blank? += fb_success(*flash[:notice]) end unless flash[:error].blank? += fb_error(*flash[:error]) end end |
#fb_about_url ⇒ Object
Return the URL for the about page of the application
573 574 575 |
# File 'lib/facebooker/rails/helpers.rb', line 573 def fb_about_url "http://#{Facebooker.www_server_base_url}/apps/application.php?api_key=#{Facebooker.api_key}" end |
#fb_action(name, url) ⇒ Object
Renders an action using the <fb:action> tag
471 472 473 |
# File 'lib/facebooker/rails/helpers.rb', line 471 def fb_action(name, url) "<fb:action href=\"#{url_for(url)}\">#{name}</fb:action>" end |
#fb_add_info_section ⇒ Object
Renders an ‘Add to Info’ button The button allows a user to add an application info section to her Info tab
603 604 605 |
# File 'lib/facebooker/rails/helpers.rb', line 603 def fb_add_info_section tag "fb:add-section-button",:section=>"info" end |
#fb_add_profile_section ⇒ Object
Renders an ‘Add to Profile’ button The button allows a user to add condensed profile box to the main profile
597 598 599 |
# File 'lib/facebooker/rails/helpers.rb', line 597 def fb_add_profile_section tag "fb:add-section-button",:section=>"profile" end |
#fb_application_name(options = {}) ⇒ Object
Render an fb:application-name tag
This renders the current application name via fbml. See wiki.developers.facebook.com/index.php/Fb:application-name for a full description.
227 228 229 |
# File 'lib/facebooker/rails/helpers.rb', line 227 def fb_application_name(={}) tag "fb:application-name", stringify_vals() end |
#fb_board(xid, options = {}) ⇒ Object
Embed a discussion board named xid on the current page <em>See</em wiki.developers.facebook.com/index.php/Fb:board for more details Options are:
* canpost
* candelete
* canmark
* cancreatet
* numtopics
* callbackurl
* returnurl
589 590 591 592 593 |
# File 'lib/facebooker/rails/helpers.rb', line 589 def fb_board(xid,={}) = .dup title = (title = .delete(:title)) ? fb_title(title) : nil content_tag("fb:board", title, stringify_vals(.merge(:xid=>xid))) end |
#fb_bookmark_button ⇒ Object
Renders the Facebook bookmark button
See wiki.developers.facebook.com/index.php/Fb:bookmark for more details
739 740 741 |
# File 'lib/facebooker/rails/helpers.rb', line 739 def content_tag "fb:bookmark" end |
#fb_comments(xid, canpost = true, candelete = false, numposts = 5, options = {}) ⇒ Object
Create a comment area All the data for this content area is stored on the facebook servers. See: wiki.developers.facebook.com/index.php/Fb:comments for full details
490 491 492 493 494 |
# File 'lib/facebooker/rails/helpers.rb', line 490 def fb_comments(xid,canpost=true,candelete=false,numposts=5,={}) = .dup title = (title = .delete(:title)) ? fb_title(title) : nil content_tag "fb:comments",title,stringify_vals(.merge(:xid=>xid,:canpost=>canpost.to_s,:candelete=>candelete.to_s,:numposts=>numposts)) end |
#fb_container(options = {}, &proc) ⇒ Object
676 677 678 679 |
# File 'lib/facebooker/rails/helpers.rb', line 676 def fb_container(={},&proc) inner = capture(&proc) versioned_concat(content_tag("fb:container",inner,), proc.binding) end |
#fb_create_button(name, url) ⇒ Object
Render a <fb:create-button> tag For use inside <fb:dashboard>
483 484 485 |
# File 'lib/facebooker/rails/helpers.rb', line 483 def (name, url) "<fb:create-button href=\"#{url_for(url)}\">#{name}</fb:create-button>" end |
#fb_dashboard(&proc) ⇒ Object
Create a dashboard. It can contain fb_action, fb_help, and fb_create_button
For Example:
<% fb_dashboard do %>
<%= APP_NAME %>
<%= fb_action 'My Matches', search_path %>
<%= fb_help 'Feedback', "http://www.facebook.com/apps/application.php?id=6236036681" %>
<%= fb_create_button 'Invite Friends', main_path %>
<% end %>
449 450 451 452 453 454 455 456 |
# File 'lib/facebooker/rails/helpers.rb', line 449 def fb_dashboard(&proc) if block_given? content = capture(&proc) versioned_concat(content_tag("fb:dashboard",content,{}),proc.binding) else content_tag("fb:dashboard",content,{}) end end |
#fb_date(time, options = {}) ⇒ Object
Renders a fb:date element
Example: <%= fb_date(Time.now, :format => ‘verbose’, :tz => ‘America/New York’) %>
See wiki.developers.facebook.com/index.php/Fb:date for more details
731 732 733 |
# File 'lib/facebooker/rails/helpers.rb', line 731 def fb_date(time, ={}) tag "fb:date", stringify_vals({:t => time.to_i}.merge()) end |
#fb_dialog(id, cancel_button, &block) ⇒ Object
Create an fb:dialog id must be a unique name e.g. “my_dialog” cancel_button is true or false
26 27 28 29 30 |
# File 'lib/facebooker/rails/helpers.rb', line 26 def fb_dialog( id, , &block ) content = capture(&block) = ? 1 : 0 unless == 0 versioned_concat( content_tag("fb:dialog", content, {:id => id, :cancel_button => }), block.binding ) end |
#fb_dialog_button(type, value, options = {}) ⇒ Object
54 55 56 57 58 |
# File 'lib/facebooker/rails/helpers.rb', line 54 def ( type, value, ={} ) .assert_valid_keys FB_DIALOG_BUTTON_VALID_OPTION_KEYS .merge! :type => type, :value => value tag "fb:dialog-button", end |
#fb_dialog_content(&block) ⇒ Object
49 50 51 52 |
# File 'lib/facebooker/rails/helpers.rb', line 49 def fb_dialog_content( &block ) content = capture(&block) versioned_concat( content_tag("fb:dialog-content", content), block.binding ) end |
#fb_dialog_title(title) ⇒ Object
45 46 47 |
# File 'lib/facebooker/rails/helpers.rb', line 45 def fb_dialog_title( title ) content_tag "fb:dialog-title", title end |
#fb_else(&proc) ⇒ Object
Render fb:else tag Must be used within if block such as fb_if_is_user or fb_if_is_app_user . See example in fb_if_is_app_user
566 567 568 569 |
# File 'lib/facebooker/rails/helpers.rb', line 566 def fb_else(&proc) content = capture(&proc) versioned_concat(content_tag("fb:else",content),proc.binding) end |
#fb_error(message, text = nil) ⇒ Object
Render an <fb:error> tag If message and text are present then this will render fb:error and fb:message tag TODO: Optionally takes a decoration tag with value of ‘no_padding’ or ‘shorten’
405 406 407 |
# File 'lib/facebooker/rails/helpers.rb', line 405 def fb_error(, text=nil) fb_status_msg("error", , text) end |
#fb_eventlink(eid) ⇒ Object
Renders an <fb:eventlink /> tag that displays the event name and links to the event’s page.
649 650 651 |
# File 'lib/facebooker/rails/helpers.rb', line 649 def fb_eventlink(eid) content_tag "fb:eventlink",nil,:eid=>eid end |
#fb_explanation(message, text = nil) ⇒ Object
Render an <fb:explanation> tag If message and text are present then this will render fb:error and fb:message tag TODO: Optionally takes a decoration tag with value of ‘no_padding’ or ‘shorten’
412 413 414 |
# File 'lib/facebooker/rails/helpers.rb', line 412 def fb_explanation(, text=nil) fb_status_msg("explanation", , text) end |
#fb_fbml_attribute(name, text, options = {}) ⇒ Object
Renders a fb:fbml-attribute element
Example: <%= fb_fbml_attribute(‘title’, Education) %>
The options hash is passed to the fb:intl element that is generated inside this element and can have the keys available for the fb:intl element.
See wiki.developers.facebook.com/index.php/Fb:fbml-attribute for more details
753 754 755 |
# File 'lib/facebooker/rails/helpers.rb', line 753 def fb_fbml_attribute(name, text, ={}) content_tag("fb:fbml-attribute", fb_intl(text, ), stringify_vals({:name => name})) end |
#fb_friend_selector(options = {}) ⇒ Object
Render an <fb:friend-selector> element See: wiki.developers.facebook.com/index.php/Fb:friend-selector for options
130 131 132 |
# File 'lib/facebooker/rails/helpers.rb', line 130 def fb_friend_selector(={}) tag("fb:friend-selector",stringify_vals()) end |
#fb_google_analytics(uacct, options = {}) ⇒ Object
Create a Google Analytics tag
uacct
: Your Urchin/Google Analytics account ID.
508 509 510 511 |
# File 'lib/facebooker/rails/helpers.rb', line 508 def fb_google_analytics(uacct, ={}) = .dup tag "fb:google-analytics", stringify_vals(.merge(:uacct => uacct)) end |
#fb_grouplink(gid) ⇒ Object
Renders an <fb:grouplink /> tag that displays the group name and links to the group’s page.
654 655 656 |
# File 'lib/facebooker/rails/helpers.rb', line 654 def fb_grouplink(gid) content_tag "fb:grouplink",nil,:gid=>gid end |
#fb_help(name, url) ⇒ Object
Render a <fb:help> tag For use inside <fb:dashboard>
477 478 479 |
# File 'lib/facebooker/rails/helpers.rb', line 477 def fb_help(name, url) "<fb:help href=\"#{url_for(url)}\">#{name}</fb:help>" end |
#fb_if_is_app_user(user = nil, options = {}, &proc) ⇒ Object
Render if-is-app-user tag This tag renders the enclosing content only if the user specified has accepted the terms of service for the application. Use fb_if_user_has_added_app to determine wether the user has added the app. Example: <% fb_if_is_app_user(@facebook_user) do %>
Thanks for accepting our terms of service!
<% fb_else do %>
Hey you haven't agreed to our terms. <%= link_to("Please accept our terms of service.", :action => "terms_of_service") %>
<% end %>
<% end %>
523 524 525 526 527 528 |
# File 'lib/facebooker/rails/helpers.rb', line 523 def fb_if_is_app_user(user=nil,={},&proc) content = capture(&proc) = .dup .merge!(:uid=>cast_to_facebook_id(user)) if user versioned_concat(content_tag("fb:if-is-app-user",content,stringify_vals()),proc.binding) end |
#fb_if_is_user(user, &proc) ⇒ Object
Render fb:if-is-user tag This tag only renders enclosing content if the user is one of those specified user can be a single user or an Array of users Example: <% fb_if_is_user(@check_user) do %>
<%= fb_name(@facebook_user) %> are one of the users. <%= link_to("Check the other side", :action => "friend") %>
<% fb_else do %>
<%= fb_name(@facebook_user) %> are not one of the users <%= fb_name(@check_user) %>
<%= link_to("Check the other side", :action => "you") %>
<% end %>
<% end %>
557 558 559 560 561 562 |
# File 'lib/facebooker/rails/helpers.rb', line 557 def fb_if_is_user(user,&proc) content = capture(&proc) user = [user] unless user.is_a? Array user_list=user.map{|u| cast_to_facebook_id(u)}.join(",") versioned_concat(content_tag("fb:if-is-user",content,{:uid=>user_list}),proc.binding) end |
#fb_if_user_has_added_app(user, options = {}, &proc) ⇒ Object
Render if-user-has-added-app tag This tag renders the enclosing content only if the user specified has installed the application
Example: <% fb_if_user_has_added_app(@facebook_user) do %>
Hey you are an app user!
<% fb_else do %>
Hey you aren't an app user. <%= link_to("Add App and see the other side.", :action => "added_app") %>
<% end %>
<% end %>
540 541 542 543 544 |
# File 'lib/facebooker/rails/helpers.rb', line 540 def fb_if_user_has_added_app(user,={},&proc) content = capture(&proc) = .dup versioned_concat(content_tag("fb:if-user-has-added-app", content, stringify_vals(.merge(:uid=>cast_to_facebook_id(user)))),proc.binding) end |
#fb_iframe(src, options = {}) ⇒ Object
37 38 39 |
# File 'lib/facebooker/rails/helpers.rb', line 37 def fb_iframe(src, = {}) content_tag "fb:iframe", '', .merge({ :src => src }) end |
#fb_intl(text = nil, options = {}, &proc) ⇒ Object
Renders a fb:intl element
Example: <%= fb_intl(‘Age’, :desc => ‘Label for the age form field’, :delimiters => ‘[]’) %>
See wiki.developers.facebook.com/index.php/Fb:intl for more details
699 700 701 702 703 704 705 706 |
# File 'lib/facebooker/rails/helpers.rb', line 699 def fb_intl(text=nil, ={}, &proc) raise ArgumentError, "Missing block or text" unless block_given? or text if block_given? versioned_concat(fb_intl(capture(&proc), )) else content_tag("fb:intl", text, stringify_vals()) end end |
#fb_intl_token(name, text = nil, &proc) ⇒ Object
Renders a fb:intl-token element
Example: <%= fb_intl-token(‘number’, 5) %>
See wiki.developers.facebook.com/index.php/Fb:intl-token for more details
715 716 717 718 719 720 721 722 |
# File 'lib/facebooker/rails/helpers.rb', line 715 def fb_intl_token(name, text=nil, &proc) raise ArgumentError, "Missing block or text" unless block_given? or text if block_given? versioned_concat(fb_intl_token(name, capture(&proc))) else content_tag("fb:intl-token", text, stringify_vals({:name => name})) end end |
#fb_multi_friend_input(options = {}) ⇒ Object
Render an <fb:multi-friend-input> element See: wiki.developers.facebook.com/index.php/Fb:multi-friend-input for options
136 137 138 |
# File 'lib/facebooker/rails/helpers.rb', line 136 def fb_multi_friend_input(={}) tag "fb:multi-friend-input",stringify_vals() end |
#fb_multi_friend_request(type, friend_selector_message, url, fb_multi_friend_selector_options = {}, &block) ⇒ Object
Create an fb:request-form with an fb_multi_friend_selector inside
The content of the block are used as the message on the form, the options hash is passed onto fb_multi_friend_selector.
For example:
<% fb_multi_friend_request("Poke","Choose some friends to Poke",create_poke_path,:exclude_ids => "123456789,987654321") do %>
If you select some friends, they will see this message.
<%= fb_req_choice("They will get this button, too",new_poke_path) %>
<% end %>
118 119 120 121 122 123 124 125 |
# File 'lib/facebooker/rails/helpers.rb', line 118 def fb_multi_friend_request(type,,url, = {},&block) content = capture(&block) versioned_concat(content_tag("fb:request-form", fb_multi_friend_selector(, ) + token_tag, {:action=>url,:method=>"post",:invite=>true,:type=>type,:content=>content} ), block.binding) end |
#fb_multi_friend_selector(message, options = {}, &block) ⇒ Object
Render an <fb:multi-friend-selector> with the passed in welcome message Full version shows all profile pics for friends.
See: wiki.developers.facebook.com/index.php/Fb:multi-friend-selector for options Note: I don’t think the block is used here.
144 145 146 147 |
# File 'lib/facebooker/rails/helpers.rb', line 144 def fb_multi_friend_selector(,={},&block) = .dup tag("fb:multi-friend-selector",stringify_vals({:showborder=>false,:actiontext=>,:max=>20}.merge())) end |
#fb_multi_friend_selector_condensed(options = {}, &block) ⇒ Object
Render a condensed <fb:multi-friend-selector> with the passed in welcome message Condensed version show checkboxes for each friend. See: wiki.developers.facebook.com/index.php/Fb:multi-friend-selector_%28condensed%29 for options Note: I don’t think the block is used here.
153 154 155 156 |
# File 'lib/facebooker/rails/helpers.rb', line 153 def fb_multi_friend_selector_condensed(={},&block) = .dup tag("fb:multi-friend-selector",stringify_vals(.merge(:condensed=>true))) end |
#fb_name(user, options = {}) ⇒ Object
Render an fb:name tag for the given user This renders the name of the user specified. You can use this tag as both subject and object of a sentence. See wiki.developers.facebook.com/index.php/Fb:name for full description.
Use this tag on FBML pages instead of retrieving the user’s info and rendering the name explicitly.
236 237 238 239 240 241 242 |
# File 'lib/facebooker/rails/helpers.rb', line 236 def fb_name(user, ={}) = .dup .transform_keys!(FB_NAME_OPTION_KEYS_TO_TRANSFORM) .assert_valid_keys(FB_NAME_VALID_OPTION_KEYS) .merge!(:uid => cast_to_facebook_id(user)) content_tag("fb:name",nil, stringify_vals()) end |
#fb_narrow(&proc) ⇒ Object
Content for the narrow profile box goes in this tag
465 466 467 468 |
# File 'lib/facebooker/rails/helpers.rb', line 465 def fb_narrow(&proc) content = capture(&proc) versioned_concat(content_tag("fb:narrow", content, {}), proc.binding) end |
#fb_photo(photo, options = {}) ⇒ Object
Render an fb:photo tag. photo is either a Facebooker::Photo or an id of a Facebook photo or an object that responds to photo_id. See: wiki.developers.facebook.com/index.php/Fb:photo for complete list of options.
320 321 322 323 324 325 326 327 |
# File 'lib/facebooker/rails/helpers.rb', line 320 def fb_photo(photo, ={}) = .dup .assert_valid_keys(FB_PHOTO_VALID_OPTION_KEYS) .merge!(:pid => cast_to_photo_id(photo)) validate_fb_photo_size() validate_fb_photo_align_value() content_tag("fb:photo",nil, stringify_vals()) end |
#fb_profile_pic(user, options = {}) ⇒ Object
Render an <fb:profile-pic> for the specified user.
You can optionally specify the size using the :size=> option. Valid sizes are :thumb, :small, :normal and :square. Or, you can specify width and height settings instead, just like an img tag.
You can optionally specify whether or not to include the facebook icon overlay using the :facebook_logo => true option. Default is false.
304 305 306 307 308 309 310 311 |
# File 'lib/facebooker/rails/helpers.rb', line 304 def fb_profile_pic(user, ={}) = .dup validate_fb_profile_pic_size() .transform_keys!(FB_PROFILE_PIC_OPTION_KEYS_TO_TRANSFORM) .assert_valid_keys(FB_PROFILE_PIC_VALID_OPTION_KEYS) .merge!(:uid => cast_to_facebook_id(user)) content_tag("fb:profile-pic", nil,stringify_vals()) end |
#fb_prompt_permission(permission, message, callback = nil) ⇒ Object
Renders a link that, when clicked, initiates a dialog requesting the specified extended permission from the user.
You can prompt a user with the following permissions:
* email
* read_stream
* publish_stream
* offline_access
* status_update
* photo_upload
* create_event
* rsvp_event
* sms
* video_upload
* create_note
* share_item
Example: <%= fb_prompt_permission(‘email’, “Would you like to receive email from our application?” ) %>
See wiki.developers.facebook.com/index.php/Fb:prompt-permission for more details. Correct as of 7th June 2009.
628 629 630 631 632 633 |
# File 'lib/facebooker/rails/helpers.rb', line 628 def (,,callback=nil) raise(ArgumentError, "Unknown value for permission: #{}") unless VALID_PERMISSIONS.include?(.to_sym) args={:perms=>} args[:next_fbjs]=callback unless callback.nil? content_tag("fb:prompt-permission",,args) end |
#fb_prompt_permissions(permissions, message, callback = nil) ⇒ Object
Renders a link to prompt for multiple permissions at once.
Example: <%= fb_prompt_permissions(, ‘Would you like to grant some permissions?’)
639 640 641 642 643 644 645 646 |
# File 'lib/facebooker/rails/helpers.rb', line 639 def (,,callback=nil) .each do |p| raise(ArgumentError, "Unknown value for permission: #{p}") unless VALID_PERMISSIONS.include?(p.to_sym) end args={:perms=>*','} args[:next_fbjs]=callback unless callback.nil? content_tag("fb:prompt-permission",,args) end |
#fb_pronoun(user, options = {}) ⇒ Object
Render an <fb:pronoun> tag for the specified user Options give flexibility for placing in any part of a sentence. See wiki.developers.facebook.com/index.php/Fb:pronoun for complete list of options.
257 258 259 260 261 262 263 |
# File 'lib/facebooker/rails/helpers.rb', line 257 def fb_pronoun(user, ={}) = .dup .transform_keys!(FB_PRONOUN_OPTION_KEYS_TO_TRANSFORM) .assert_valid_keys(FB_PRONOUN_VALID_OPTION_KEYS) .merge!(:uid => cast_to_facebook_id(user)) content_tag("fb:pronoun",nil, stringify_vals()) end |
#fb_ref(options) ⇒ Object
Render an fb:ref tag.
Options must contain either url or handle.
-
url The URL from which to fetch the FBML. You may need to call fbml.refreshRefUrl to refresh cache
-
handle The string previously set by fbml.setRefHandle that identifies the FBML
See wiki.developers.facebook.com/index.php/Fb:ref for complete description
274 275 276 277 278 279 |
# File 'lib/facebooker/rails/helpers.rb', line 274 def fb_ref() .assert_valid_keys(FB_REF_VALID_OPTION_KEYS) validate_fb_ref_has_either_url_or_handle() validate_fb_ref_does_not_have_both_url_and_handle() tag("fb:ref", stringify_vals()) end |
#fb_req_choice(label, url) ⇒ Object
Render a button in a request using the <fb:req-choice> tag url must be an absolute url This should be used inside the block of an fb_multi_friend_request
161 162 163 |
# File 'lib/facebooker/rails/helpers.rb', line 161 def fb_req_choice(label,url) tag "fb:req-choice",:label=>label,:url=>url end |
#fb_request_form(type, message_param, url, options = {}, &block) ⇒ Object
Create an fb:request-form without a selector
The block passed to this tag is used as the content of the form
The message param is the name sent to content_for that specifies the body of the message
For example,
<% content_for("invite_message") do %>
This gets sent in the invite. <%= fb_req_choice("with a button!",new_poke_path) %>
<% end %>
<% fb_request_form("Poke","invite_message",create_poke_path) do %>
Send a poke to: <%= fb_friend_selector %> <br />
<%= fb_request_form_submit %>
<% end %>
84 85 86 87 88 89 90 |
# File 'lib/facebooker/rails/helpers.rb', line 84 def fb_request_form(type,,url,={},&block) content = capture(&block) = @template.instance_variable_get("@content_for_#{}") versioned_concat(content_tag("fb:request-form", content + token_tag, {:action=>url,:method=>"post",:invite=>true,:type=>type,:content=>}.merge()), block.binding) end |
#fb_request_form_submit(options = {}) ⇒ Object
Create a submit button for an <fb:request-form> If the request is for an individual user you can optionally Provide the user and a label for the request button. For example
<% content_for("invite_user") do %>
This gets sent in the invite. <%= fb_req_choice("Come join us!",new_invite_path) %>
<% end %>
<% fb_request_form("Invite","invite_user",create_invite_path) do %>
Invite <%= fb_name(@facebook_user.friends.first.id)%> to the party <br />
<%= fb_request_form_submit(:uid => @facebook_user.friends.first.id, :label => "Invite %n") %>
<% end %>
See: wiki.developers.facebook.com/index.php/Fb:request-form-submit for options
104 105 106 |
# File 'lib/facebooker/rails/helpers.rb', line 104 def fb_request_form_submit(={}) tag("fb:request-form-submit",stringify_vals()) end |
#fb_serverfbml(options = {}, &proc) ⇒ Object
Renders the FBML on a Facebook server inside an iframe.
Meant to be used for a Facebook Connect site or an iframe application
671 672 673 674 |
# File 'lib/facebooker/rails/helpers.rb', line 671 def fb_serverfbml(={},&proc) inner = capture(&proc) versioned_concat(content_tag("fb:serverfbml",inner,), proc.binding) end |
#fb_share_button(url) ⇒ Object
Renders a standard ‘Share’ button for the specified URL.
664 665 666 |
# File 'lib/facebooker/rails/helpers.rb', line 664 def (url) content_tag "fb:share-button",nil,:class=>"url",:href=>url end |
#fb_show_feed_dialog(action, user_message = "", prompt = "", callback = nil) ⇒ Object
62 63 64 65 66 |
# File 'lib/facebooker/rails/helpers.rb', line 62 def fb_show_feed_dialog(action, = "", prompt = "", callback = nil) update_page do |page| page.call "Facebook.showFeedDialog",action.template_id,action.data,action.body_general,action.target_ids,callback,prompt, end end |
#fb_success(message, text = nil) ⇒ Object
Render an <fb:success> tag If message and text are present then this will render fb:error and fb:message tag TODO: Optionally takes a decoration tag with value of ‘no_padding’ or ‘shorten’
419 420 421 |
# File 'lib/facebooker/rails/helpers.rb', line 419 def fb_success(, text=nil) fb_status_msg("success", , text) end |
#fb_swf(src, options = {}) ⇒ Object
41 42 43 |
# File 'lib/facebooker/rails/helpers.rb', line 41 def fb_swf(src, = {}) tag "fb:swf", .merge(:swfsrc => src) end |
#fb_tab_item(title, url, options = {}) ⇒ Object
Render an fb:tab_item tag. Use this in conjunction with fb_tabs Options can contains :selected => true to indicate that a tab is the current tab. See: wiki.developers.facebook.com/index.php/Fb:tab-item for complete list of options
356 357 358 359 360 361 362 |
# File 'lib/facebooker/rails/helpers.rb', line 356 def fb_tab_item(title, url, ={}) = .dup .assert_valid_keys(FB_TAB_ITEM_VALID_OPTION_KEYS) .merge!(:title => title, :href => url) validate_fb_tab_item_align_value() tag("fb:tab-item", stringify_vals()) end |
#fb_tabs(&block) ⇒ Object
Render an fb:tabs tag containing some number of fb:tab_item tags. Example: <% fb_tabs do %>
<%= fb_tab_item("Home", "home") %>
<%= fb_tab_item("Office", "office") %>
<% end %>
347 348 349 350 |
# File 'lib/facebooker/rails/helpers.rb', line 347 def fb_tabs(&block) content = capture(&block) versioned_concat(content_tag("fb:tabs", content), block.binding) end |
#fb_time(time, options = {}) ⇒ Object
Renders an fb:time element
Example: <%= fb_time(Time.now, :tz => ‘America/New York’, :preposition => true) %>
See wiki.developers.facebook.com/index.php/Fb:time for more details
688 689 690 |
# File 'lib/facebooker/rails/helpers.rb', line 688 def fb_time(time, ={}) tag "fb:time",stringify_vals({:t => time.to_i}.merge()) end |
#fb_title(title) ⇒ Object
Adds a title to the title bar
Facebook | App Name | This is the canvas page window title
title
: This is the canvas page window
501 502 503 |
# File 'lib/facebooker/rails/helpers.rb', line 501 def fb_title(title) "<fb:title>#{title}</fb:title>" end |
#fb_user_status(user, linked = true) ⇒ Object
Returns the status of the user
659 660 661 |
# File 'lib/facebooker/rails/helpers.rb', line 659 def fb_user_status(user,linked=true) content_tag "fb:user-status",nil,stringify_vals(:uid=>cast_to_facebook_id(user), :linked=>linked) end |
#fb_wall(&proc) ⇒ Object
Create a Facebook wall. It can contain fb_wall_posts
For Example:
<% fb_wall do %>
<%= fb_wall_post(@user,"This is my message") %>
<%= fb_wall_post(@otheruser,"This is another message") %>
<% end %>
390 391 392 393 |
# File 'lib/facebooker/rails/helpers.rb', line 390 def fb_wall(&proc) content = capture(&proc) versioned_concat(content_tag("fb:wall",content,{}),proc.binding) end |
#fb_wallpost(user, message) ⇒ Object Also known as: fb_wall_post
Render an <fb:wallpost> tag TODO: Optionally takes a time parameter t = int The current time, which is displayed in epoch seconds.
397 398 399 |
# File 'lib/facebooker/rails/helpers.rb', line 397 def fb_wallpost(user,) content_tag("fb:wallpost",,:uid=>cast_to_facebook_id(user)) end |
#fb_wide(&proc) ⇒ Object
Content for the wide profile box goes in this tag
459 460 461 462 |
# File 'lib/facebooker/rails/helpers.rb', line 459 def fb_wide(&proc) content = capture(&proc) versioned_concat(content_tag("fb:wide", content, {}), proc.binding) end |
#fbjs_library ⇒ Object
32 33 34 35 |
# File 'lib/facebooker/rails/helpers.rb', line 32 def fbjs_library "<script>var _token = '#{form_authenticity_token}';var _hostname = '#{ActionController::Base.asset_host}'</script>"+ "#{javascript_include_tag 'facebooker'}" end |
#validate_fb_photo_align_value(options) ⇒ Object
372 373 374 375 376 |
# File 'lib/facebooker/rails/helpers.rb', line 372 def validate_fb_photo_align_value() if .has_key?(:align) && !VALID_FB_PHOTO_ALIGN_VALUES.include?([:align].to_sym) raise(ArgumentError, "Unknown value for align: #{[:align]}") end end |
#validate_fb_ref_does_not_have_both_url_and_handle(options) ⇒ Object
287 288 289 290 291 |
# File 'lib/facebooker/rails/helpers.rb', line 287 def validate_fb_ref_does_not_have_both_url_and_handle() if .has_key?(:url) && .has_key?(:handle) raise ArgumentError, "fb_ref may not have both :url and :handle" end end |
#validate_fb_ref_has_either_url_or_handle(options) ⇒ Object
281 282 283 284 285 |
# File 'lib/facebooker/rails/helpers.rb', line 281 def validate_fb_ref_has_either_url_or_handle() unless .has_key?(:url) || .has_key?(:handle) raise ArgumentError, "fb_ref requires :url or :handle" end end |
#validate_fb_tab_item_align_value(options) ⇒ Object
366 367 368 369 370 |
# File 'lib/facebooker/rails/helpers.rb', line 366 def validate_fb_tab_item_align_value() if .has_key?(:align) && !VALID_FB_TAB_ITEM_ALIGN_VALUES.include?([:align].to_sym) raise(ArgumentError, "Unknown value for align: #{[:align]}") end end |
#versioned_concat(string, binding) ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/facebooker/rails/helpers.rb', line 15 def versioned_concat(string,binding) if ignore_binding? concat(string) else concat(string,binding) end end |