forked from jm/rails-templates
-
Notifications
You must be signed in to change notification settings - Fork 1
/
facebook.rb
902 lines (761 loc) · 26.5 KB
/
facebook.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
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
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
# Facebook Skeleton App
# from Mark Daggett (http://www.locusfoc.us)
canvas_name = ask("What is your Facebook application's canvas name?")
# Plugins
plugin 'rspec', :git => 'git://github.com/dchelimsky/rspec.git'
plugin 'rspec-rails', :git => 'git://github.com/dchelimsky/rspec-rails.git'
plugin 'exception_notifier', :git => 'git://github.com/rails/exception_notification.git'
plugin 'will_paginate', :git => 'git://github.com/mislav/will_paginate.git'
# Ignore auto-generated files
file '.gitignore',
%q{coverage/*
log/*.log
log/*.pid
db/*.db
db/*.sqlite3
db/schema.rb
tmp/**/*
.DS_Store
doc/api
doc/app
config/database.yml
public/javascripts/all.js
public/stylesheets/all.js
coverage/*
.dotest/*
}
# Initial Setup
generate("rspec")
# Initial Migration
file "db/migrate/20090129183012_initial_migration.rb",
%q{class InitialMigration < ActiveRecord::Migration
def self.up
create_table "accounts", :force => true do |t|
t.string "facebook_uid"
t.boolean "active"
t.boolean "is_app_user"
t.datetime "created_at"
t.datetime "updated_at"
end
create_table "sessions", :force => true do |t|
t.string "session_id", :null => false
t.text "data"
t.datetime "created_at"
t.datetime "updated_at"
end
execute("ALTER TABLE accounts CHANGE facebook_uid facebook_uid BIGINT") if adapter_name.to_s == "MySQL"
add_index "accounts", ["facebook_uid"], :name => "index_accounts_on_facebook_uid"
add_index "sessions", ["updated_at"], :name => "index_sessions_on_updated_at"
add_index "sessions", ["session_id"], :name => "index_sessions_on_session_id"
end
def self.down
drop_table :accounts
drop_table :sessions
end
end
}
rake "db:migrate"
# Now that we've migrated we can include Facebooker otherwise we get this error during the migration:
# uninitialized constant ActionController::AbstractRequest
# from: /vendor/plugins/facebooker/lib/facebooker/rails/facebook_url_rewriting.rb:2
plugin 'facebooker', :git => "git://github.com/mmangino/facebooker.git"
rake "facebooker:setup"
initializer 'mime_types.rb', %q{Mime::Type.register_alias 'text/html', :fbml}
# Prepare for distributed development
run "cp config/database.yml config/database.yml.example"
# Models
file 'app/models/account.rb',
%q{class Account < ActiveRecord::Base
named_scope :active, :conditions => { :active => true }
# Virtual attribute for when we need to associate a FB Session record with our model
attr_accessor :facebook_account
def to_param
facebook_uid.to_s
end
def uninstall
update_attributes(:active => false)
end
class <<self
def find_or_create_by_facebook_params(u)
account = find_or_initialize_by_facebook_uid(:is_app_user => true, :facebook_uid => u.uid.to_i, :active => true)
account.active = true
account.save
account
end
end
end
}
# Controllers
file 'app/controllers/application.rb',
%q{class ApplicationController < ActionController::Base
include FacebookerFilters
helper :all # include all helpers, all the time
# See ActionController::RequestForgeryProtection for details
# Uncomment the :secret if you're not using the cookie session store
protect_from_forgery :secret => 'CHANGE ME TO SOMETHING SECURE'
# For use with will_paginate calls
# For example: Account.paginate(:all, pagination_params.merge(:conditions => { :active => true }))
def pagination_params(opts = {})
{ :page => params[:page] || 1, :per_page => params[:per_page] || 50 }.merge(opts)
end
# Redefine the needs permission method to include our redirect back to our app.
# This is to ensure we don't end up on a dead-end page on Facebook.
def application_needs_permission(perm)
redirect_to(facebook_session.permission_url(perm, :next => "http://apps.facebook.com/#{ENV['FACEBOOKER_RELATIVE_URL_ROOT']}"+request.request_uri))
end
end
}
file 'app/controllers/facebook_controller.rb',
%q{class FacebookController < ApplicationController
protect_from_forgery :except => [:index, :uninstalled, :authorized]
before_filter :only_for_facebook_users, :except => [:uninstalled]
before_filter :find_facebook_account_during_uninstall, :only => [:uninstalled]
before_filter :find_facebook_account, :except => [:uninstalled, :installed, :errors_with, :authorize_redirect, :authorized]
def index
redirect_to account_path(@account)
end
def authorized
end
def authorize_redirect
installed
end
def installed
@account = Account.find_or_create_by_facebook_params(facebook_session.user)
raise ActiveRecord::RecordNotFound unless @account
flash[:notice] = "The Facebook application is successfully installed."
index
end
def privacy
end
def uninstalled
find_facebook_account_during_uninstall
if @account.uninstall
render :nothing => true, :status => '200'
else
render :nothing => true, :status => '500'
end
end
def help
end
end
}
file 'app/controllers/accounts_controller.rb',
%q{class AccountsController < ApplicationController
before_filter :only_for_facebook_users
before_filter :find_facebook_account
# Used to view your own account
# GET /accounts
# GET /accounts.fbml
def index
respond_to do |format|
format.fbml # index.fbml.erb
end
end
# Used to view another user's account
# GET /show/1
# GET /show/1.fbml
def show
respond_to do |format|
format.fbml {} # show.fbml
end
end
end
}
# Helpers
file 'app/helpers/application_helper.rb',
%q{module ApplicationHelper
# Converts the normal Rails flash methods into the message types expected by Facebook.
def render_facebook_flash(custom_flash = nil)
message = custom_flash || flash
flash_types = [:notice, :warning]
message.keys.each do |x|
case x
when :notice
message[:success] = message[:notice]
when :warning
message[:explanation] = message[:warning]
end
end
flash_types = [:error, :explanation, :success]
flash_type = flash_types.detect { |a| message.keys.include?(a) }
"<fb:%s><fb:message>%s</fb:message></fb:%s>" % [flash_type.to_s, message[flash_type],flash_type.to_s] if flash_type
end
end}
# Stylesheets
file 'public/stylesheets/facebook_scaffold.css',
%q{/***************************************************
* Rails UI Elements
***************************************************/
.flash_notice, .flash_error, .flash_warning, .flash_success, .flash_explanation {
border: 1px solid #ebdfb0;
background-color: #fff4c8;
padding-top:0.5em !important;
color: #000;
text-align: center;
}
.flash_error {
border: 1px solid #ebb0b0;
background-color: #ffc8c8;
}
.flash_notice, .flash_success {
border: 1px solid #b0ebb0;
background-color: #c8ffcb;
}
.flash_notice a, .flash_error a, .flash_warning a {
color: #01a163;
border: none !important;
}
.errorExplanation h2 {
margin: 0;
color: #c00;
}
.errorExplanation li {
margin-left: 3.0em;
font-weight: bolder;
list-style: decimal;
color: #c00;
}
.fieldWithErrors input {
background-color: #faa;
border: 1px solid #f00;
}
/***************************************************
* Facebook UI Elements
***************************************************/
.fb_blue_button, .fb_gold_button {
display:block;
background-color: #536ea6;
padding:2px;
font-size:0.9em;
text-align:center;
color: #fff;
font-weight:bolder;
border: 1px solid #0e1f5b;
border-left: 1px solid #D8DFEA;
border-top: 1px solid #D8DFEA;
text-decoration:none;
}
.fb_gold_button {
background-color: #eff087;
border: 1px solid #DCDE32;
border-left: 1px solid #EFf087;
border-top: 1px solid #EFf087;
color: #1b1b1b;
}
.fb_content_box {
margin: 10px 0 0 0 !important;
border: 1px solid transparent;
border-top: 1px solid #3B5998;
}
.fb_content_box .fb_content_box {
border: none;
margin: 0 !important;
}
.fb_content_box .head {
background-color: #D8DFEA;
color: #3B5998;
font-size: 12px !important;
margin:0 !important;
padding:5px 5px 5px 10px !important;
font-weight:bolder !important;
}
.fb_content_box .fb_content_box .head {
background:#EEEEEE none repeat scroll 0% 0%;
}
.fb_content_box .sub_head {
background:#EEEEEE none repeat scroll 0% 0%;
margin:0 !important;
border-top:1px solid #CCCCCC;
color: #444444;
overflow:hidden;
padding:2px 5px 2px 10px !important;
font-size: 11px !important;
margin-bottom: 11px !important;
}
.fb_content_box .fb_content_box .sub_head {
background:#fff none repeat scroll 0% 0%;
}
.fb_content_box .sub_head .inline_list {
margin:0 !important;
}
.fb_content_box .sub_head .inline_list li {
padding-left: 5px !important;
font-size: 11px !important;
}
.fb_content_box .sub_head .inline_list li.first {
padding-left: 0 !important;
}
.fb_content_box .content {
padding:10px !important;
}
.inline_fb_button_list a {
display: block;
margin:0;
padding: 2px 10px;
color: #fff;
text-decoration: none;
}
.inline_fb_button_list a:hover, .inline_fb_button_list a:active {
background-color: #6d84B4;
}
.inline_fb_button_list {
display: block;
float: left;
font-size: 13px;
list-style-image: none;
list-style-position: outside;
list-style-type: none;
margin: 0px;
padding: 0px;
line-height: 2em;
text-align: left;
font-family: "lucida grande",tahoma,verdana,arial,sans-serif;
font-size: 11px;
text-align: left;
}
.inline_fb_button_list li {
background-color: #3B5998;
display:block;
float:left;
font-weight:bold;
margin:0px 10px 0px 0px;
}
/***************************************************
* Pagination
***************************************************/
.pagination {
padding: 3px !important;
margin: 3px !important;
}
.pagination a {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #3B5998;
text-decoration: none;
color: #3B5998;
background-color: transparent;
}
.pagination a:hover, .pagination a:active {
border: 1px solid #3B5998;
background-color: #3B5998;
color: #FFF;
font-weight: bold;
}
.pagination span.current {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #3B5998;
font-weight: bold;
background-color: #3B5998;
color: #FFF;
}
.pagination span.disabled {
padding: 2px 5px 2px 5px;
margin: 2px;
border: 1px solid #eee;
color: #ddd;
}
}
# Facebook Filters which are useful for sussing out and handling requests made by Facebook uers.
file 'lib/facebooker_filters.rb',
%q{# This module contains a collection of helper methods that make detecting and
# responding to Facebook methods easier.
module FacebookerFilters
def self.included(base)
base.class_eval do
# The is a conditional before_filter that will only fire for requests using the fbml format.
before_filter(:except => :uninstalled) do |controller|
if controller.params["format"].to_s == "fbml"
# This session property will be set if the user has called the allow_login_from_facebook is called before this
# filter; for example, prepend_before_filter :allow_login_from_facebook, :only => [:show]
if controller.session[:authenticate_through_facebook].nil? || controller.session[:authenticate_through_facebook] == false
controller.send(:ensure_application_is_installed_by_facebook_user)
end
end
end
end
end
def only_login_from_facebook_required
session[:authenticate_through_facebook] = true
end
# For requests that use .fbml
def find_facebook_account
@facebook_session = facebook_session
@account = Account.find_by_facebook_uid(@facebook_session.user.uid)
raise ActiveRecord::RecordNotFound unless @account
# Assign the current_account so that the existing before_filters that check for authentication can find this user.
# self.current_account = @account
@account
rescue ActiveRecord::RecordNotFound
flash[:error] = "Could Not Find Account"
redirect_to(installed_path(:format => 'fbml')) and return false
end
# Deny access to any request that does not use the fbml format.
def only_for_facebook_users
unless params['format'].to_s == "fbml"
flash[:error] = "This page must be viewed within Facebook."
redirect_to root_url and return false
end
end
def find_facebook_account_during_uninstall
@account = Account.find_by_facebook_uid(params["fb_sig_user"])
raise ActiveRecord::RecordNotFound unless @account
@account
rescue ActiveRecord::RecordNotFound
render :nothing => true, :status => '500' and return false
end
end
}
# Views
file 'app/views/layouts/application.fbml.erb',
%q{<% if ["production"].include?(ENV["RAILS_ENV"]) %>
<%= stylesheet_link_tag "facebook_scaffold", :media => "screen" %>
<%- else -%>
<%= content_tag :style, File.readlines("public/stylesheets/facebook_scaffold.css").join("\n"), :type=>'text/css' %>
<%- end -%>
<%= render_facebook_flash() %>
<%= yield %>
<script type="text/javascript" charset="utf-8">
// Give JS access to the canvas page name;
CANVAS_PAGE_NAME= '<%= ENV["FACEBOOKER_RELATIVE_URL_ROOT"] %>';
REMOTE_HOST = '<%= url_for :controller => "/facebook", :only_path => false, :canvas => false %>';
</script>
<%= javascript_tag "AUTH_TOKEN = #{form_authenticity_token.inspect};" if protect_against_forgery? %>
<%= content_tag :script, File.readlines("public/javascripts/application.js").join("\n") %>
}
file 'app/views/accounts/index.fbml.erb', %q{
Find me in: app/views/accounts/index.fbml.erb
}
file 'app/views/accounts/show.fbml.erb', %q{
Find me in: app/views/accounts/show.fbml.erb
}
file 'app/views/facebook/about.fbml.erb', %q{
Find me in: app/views/facebook/errors_with.fbml.erb
}
file 'app/views/facebook/tos.fbml.erb', %q{
Find me in: app/views/facebook/tos.fbml.erb
}
file 'app/views/facebook/errors_with.fbml.erb', %q{
Find me in: app/views/facebook/errors_with.fbml.erb
}
file 'app/views/facebook/help.fbml.erb', %q{
Find me in: app/views/facebook/help.fbml.erb
}
file 'app/views/facebook/index.fbml.erb', %q{
Find me in: app/views/facebook/index.fbml.erb
}
file 'app/views/facebook/installed.fbml.erb', %q{
Finde me in: app/views/facebook/installed.fbml.erb
}
# Rspec Tests
file 'spec/models/account_spec.rb',
%q{require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
describe Account do
fixtures :accounts
before(:each) do
@facebook_account = accounts(:new_facebook_user)
@valid_attributes = {
:facebook_uid => "123456",
:active => false
}
end
it "should create a new instance given valid attributes" do
lambda do
Account.create!(@valid_attributes)
end.should change(Account, :count).by(1)
end
it "should deactive the account" do
@facebook_account.uninstall.should == true
@facebook_account.reload.active.should == false
end
end
}
file 'spec/controllers/accounts_controller_spec.rb',
%q{require File.expand_path(File.dirname(__FILE__) + '/../spec_helper')
describe AccountsController do
describe "responding to GET index" do
it_should_behave_like "An installed Facebook Application"
it_should_behave_like "A valid Facebook session"
it_should_behave_like "An Account created through Facebook"
it "should expose all accounts as @accounts" do
get :index, :format => 'fbml'
response.should be_success
end
end
end
}
file 'spec/controllers/facebook_controller_spec.rb',
%q{require File.dirname(__FILE__) + '/../spec_helper'
describe FacebookController, "under a rest request from inside Facebook with the application installed" do
describe "handling GET /facebook.fbml" do
it_should_behave_like "An installed Facebook Application"
it_should_behave_like "A valid Facebook session"
it_should_behave_like "An Account created through Facebook"
def do_get
get :index, :format => 'fbml'
end
it "should redirect to errors page if facebook account cannot be found" do
Account.stub!(:find_by_facebook_uid).and_raise(ActiveRecord::RecordNotFound)
do_get
flash[:error].should == "Could Not Find Account"
end
end
describe "handling POST /facebook/installed.fbml" do
it_should_behave_like "An installed Facebook Application"
it_should_behave_like "A valid Facebook session"
def do_post
post :installed, :format => 'fbml'
end
it "should redirect to the index action" do
do_post
response.flash[:notice].should == "The Facebook application is successfully installed."
end
end
describe "handling POST /facebook/uninstalled.fbml" do
fixtures :accounts
it_should_behave_like "A valid Facebook session"
before(:each) do
@account = mock_account
end
def do_post
post :uninstalled, :format => 'fbml'
end
it "should deactivate a facebook account but not destroy the record" do
@account = accounts(:new_facebook_user)
Account.stub!(:find_by_facebook_uid).and_return(@account)
do_post
response.should be_success
@account.active.should == false
assigns[:account].id.should == @account.id
assigns[:account].active.should == false
end
it "should render an error if the uninstall fails" do
@account = accounts(:new_facebook_user)
@account.stub!(:uninstall).and_return(false)
Account.stub!(:find_by_facebook_uid).and_return(@account)
do_post
response.headers['Status'].should == '500'
response.should_not be_success
end
it "should render an error if the account cannot be found during uninstall" do
Account.stub!(:find_by_facebook_uid).and_raise(ActiveRecord::RecordNotFound)
do_post
response.headers['Status'].should == '500'
response.should_not be_success
end
end
end
describe FacebookController, "when accessing informational pages" do
it_should_behave_like "An installed Facebook Application"
it_should_behave_like "A valid Facebook session"
it_should_behave_like "An Account created through Facebook"
it "should display the about page" do
get :about, { :format => :fbml }
response.should be_success
response.body =~ /facebook\/about/
end
it "should display the help page" do
get :help, { :format => :fbml }
response.should be_success
response.body =~ /facebook\/help/
end
it "should display the privacy page" do
get :privacy, { :format => :fbml }
response.should be_success
response.body =~ /facebook\/privacy/
end
end
describe FacebookController, "under a rest request from outside of Facebook" do
describe "handling GET /facebook" do
it "should redirect you to the home url" do
get :index
response.flash[:error].should == "This page must be viewed within Facebook."
response.should redirect_to(root_url)
end
end
end
}
file 'spec/controllers/facebook_controller_routing_spec.rb',
%q{require File.dirname(__FILE__) + '/../spec_helper'
describe FacebookController do
describe "route generation" do
it "should map {:controller=>'facebook', :action=>'authorized'} to /authorized" do
route_for({:controller=>"facebook", :action=>"authorized"}).should == "/authorized"
end
it "should map {:controller=>'facebook', :action=>'authorize_redirect'} to /authorize_redirect" do
route_for({:controller=>"facebook", :action=>"authorize_redirect"}).should == "/authorize_redirect"
end
it "should map {:controller=>'facebook', :action=>'installed'} to /installed" do
route_for({:controller=>"facebook", :action=>"installed"}).should == "/installed"
end
it "should map {:controller=>'facebook', :action=>'privacy'} to /privacy" do
route_for({:controller=>"facebook", :action=>"privacy"}).should == "/privacy"
end
it "should map {:controller=>'facebook', :action=>'uninstalled'} to /uninstalled" do
route_for({:controller=>"facebook", :action=>"uninstalled"}).should == "/uninstalled"
end
it "should map {:controller=>'facebook', :action=>'help'} to /help" do
route_for({:controller=>"facebook", :action=>"help"}).should == "/help"
end
end
describe "route recognition" do
it "should generate params {:controller=>'facebook', :action=>'authorized'} from get /authorized" do
params_from(:get, "/authorized").should == {:controller=>'facebook', :action=>'authorized'}
end
it "should generate params {:controller=>'facebook', :action=>'authorized'} from get /authorize_redirect" do
params_from(:get, "/authorize_redirect").should == {:controller=>'facebook', :action=>'authorize_redirect'}
end
it "should generate params {:controller=>'facebook', :action=>'installed'} from get /installed" do
params_from(:get, "/installed").should == {:controller=>'facebook', :action=>'installed'}
end
it "should generate params {:controller=>'facebook', :action=>'privacy'} from get /privacy" do
params_from(:get, "/privacy").should == {:controller=>'facebook', :action=>'privacy'}
end
it "should generate params {:controller=>'facebook', :action=>'uninstalled'} from get /uninstalled" do
params_from(:get, "/uninstalled").should == {:controller=>'facebook', :action=>'uninstalled'}
end
it "should generate params {:controller=>'facebook', :action=>'help'} from get /help" do
params_from(:get, "/help").should == {:controller=>'facebook', :action=>'help'}
end
end
end
}
file 'spec/spec_helper.rb',
%q{ENV["RAILS_ENV"] = "test"
require File.expand_path(File.dirname(__FILE__) + "/../config/environment")
require 'spec'
require 'spec/rails'
require 'ruby-debug'
Spec::Runner.configure do |config|
# If you're not using ActiveRecord you should remove these
# lines, delete config/database.yml and disable :active_record
# in your config/boot.rb
config.use_transactional_fixtures = true
config.use_instantiated_fixtures = false
config.fixture_path = RAILS_ROOT + '/spec/fixtures/'
module Spec
module Mocks
module Methods
def stub_association!(association_name, methods_to_be_stubbed = {})
mock_association = Spec::Mocks::Mock.new(association_name.to_s)
methods_to_be_stubbed.each do |method, return_value|
mock_association.stub!(method).and_return(return_value)
end
self.stub!(association_name).and_return(mock_association)
end
end
end
end
def mock_account(opts = {})
unless @account
@account = mock_model(Account, { :id => 1,
:facebook_uid => "123456789",
:active => true,
:update_attribute => true,
:update_attributes => true }.merge(opts))
end
@account
end
def mock_facebooker_session(opts = {})
mock_model(Facebooker::User, { :id => 1,
:first_name => 'Quentin',
:last_name => 'Jones',
:name => 'Quentin Jones',
:uid =>'987654321',
:profile_fbml= => true,
:is_app_user => true }.merge(opts))
end
describe "An installed Facebook Application", :shared => true do
before(:each) do
@controller.should_receive(:ensure_application_is_installed_by_facebook_user).at_least(:once).and_return(true)
end
end
describe "Logged into Facebook Application", :shared => true do
before(:each) do
@controller.should_receive(:ensure_authenticated_to_facebook).at_least(:once).and_return(true)
end
end
describe "An Installed Application With Extended Params", :shared => true do
before(:each) do
@controller.should_receive(:ensure_has_status_update).at_least(:once).and_return(true)
end
end
describe "An Account", :shared => true do
before(:each) do
Account.stub!(:find).and_return(mock_account)
end
end
describe "An Account created through Facebook", :shared => true do
before(:each) do
Account.stub!(:find_by_facebook_uid).and_return(mock_account)
end
end
describe "A valid Facebook session", :shared => true do
before(:each) do
@session = mock('fb_session',{ :user => mock_facebooker_session })
@controller.session = Facebooker::Session.create(ENV['FACEBOOK_API_KEY'], ENV['FACEBOOK_SECRET_KEY'])
@controller.stub!(:facebook_session).and_return(@session)
end
end
end
}
file 'spec/fixtures/accounts.yml',
%q{# Read about fixtures at http://ar.rubyonrails.org/classes/Fixtures.html
new_facebook_user:
id: 1
facebook_uid: '12345678'
active: true
fb_user_two:
id: 2
facebook_uid: '2345456'
active: true
fb_user_three:
id: 3
facebook_uid: '345677'
active: true
}
# Routing
route "map.resources :accounts"
# Facebook specific routes.
# Canvas URL And Side Nav URL
# http://apps.facebook.com/FACEBOOK_APP_NAME/
route "map.root :controller => 'facebook'"
# About URL
# http://apps.facebook.com/FACEBOOK_APP_NAME/about
route "map.about '/about', :controller => 'facebook', :action => 'about'"
# Post-Authorize URL
# http://apps.facebook.com/FACEBOOK_APP_NAME/authorized
route "map.authorized '/authorized', :controller => 'facebook', :action => 'authorized'"
route "map.bp_authorized '/#{canvas_name}/authorized', :controller => 'facebook', :action => 'authorized'"
# Post-Authorize Redirect URL
# http://apps.facebook.com/FACEBOOK_APP_NAME/authorize_redirect
route "map.authorize_redirect '/authorize_redirect', :controller => 'facebook', :action => 'authorize_redirect'"
# Facebook Application Profile
# http://apps.facebook.com/FACEBOOK_APP_NAME/profile
route "map.authorize_redirect '/profile', :controller => 'accounts', :action => 'index'"
# Post-Add URL
# http://apps.facebook.com/FACEBOOK_APP_NAME/installed
route "map.installed '/installed', :controller => 'facebook', :action => 'installed'"
# Privacy URL
# http://apps.facebook.com/FACEBOOK_APP_NAME/privacy
route "map.privacy '/privacy', :controller => 'facebook', :action => 'privacy'"
# Terms Of Service
# http://apps.facebook.com/FACEBOOK_APP_NAME/tos
route "map.tos '/tos', :controller => 'facebook', :action => 'tos'"
# Post-Remove URL
# http://<some server>/FACEBOOK_APP_NAME/uninstalled
route "map.uninstalled '/uninstalled', :controller => 'facebook', :action => 'uninstalled'"
# Help URL
# http://apps.facebook.com/FACEBOOK_APP_NAME/help
route "map.help '/help', :controller => 'facebook', :action => 'help'"
# Errors
route "map.errors_with_facebook '/errors_with_facebook', :controller => 'facebook', :action => 'errors_with'"
# Finalize
run "rm README"
run "rm public/index.html"
run "rm public/favicon.ico"
run "rm public/robots.txt"
# Add the whole ball of wax to git
git :init
git :add => "."
git :commit => "-a -m 'Initial commit'"