telephony 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/README.md +105 -0
- data/Rakefile +39 -0
- data/app/assets/fonts/telephony/zest-telephony.eot +0 -0
- data/app/assets/fonts/telephony/zest-telephony.svg +73 -0
- data/app/assets/fonts/telephony/zest-telephony.ttf +0 -0
- data/app/assets/fonts/telephony/zest-telephony.woff +0 -0
- data/app/assets/images/telephony/backspace.png +0 -0
- data/app/assets/images/telephony/icon-spinner.gif +0 -0
- data/app/assets/javascripts/telephony/application.js +12 -0
- data/app/assets/javascripts/telephony/collections/agents.js +4 -0
- data/app/assets/javascripts/telephony/config.js.erb +11 -0
- data/app/assets/javascripts/telephony/models/agent.js +103 -0
- data/app/assets/javascripts/telephony/models/conversation.js +226 -0
- data/app/assets/javascripts/telephony/models/device.js +30 -0
- data/app/assets/javascripts/telephony/models/transfer.js +65 -0
- data/app/assets/javascripts/telephony/namespace.js +6 -0
- data/app/assets/javascripts/telephony/push.js +80 -0
- data/app/assets/javascripts/telephony/vendor/backbone.js +1159 -0
- data/app/assets/javascripts/telephony/vendor/chosen.jquery.js +1018 -0
- data/app/assets/javascripts/telephony/vendor/jquery.form.js +1117 -0
- data/app/assets/javascripts/telephony/vendor/pusher.js +1304 -0
- data/app/assets/javascripts/telephony/vendor/test_dependencies.js +18 -0
- data/app/assets/javascripts/telephony/vendor/underscore.js +839 -0
- data/app/assets/javascripts/telephony/views/agents_view.js +69 -0
- data/app/assets/javascripts/telephony/views/application_view.js +78 -0
- data/app/assets/javascripts/telephony/views/call_queue_view.js +21 -0
- data/app/assets/javascripts/telephony/views/conversation_buttons_view.js +15 -0
- data/app/assets/javascripts/telephony/views/conversation_view.js +322 -0
- data/app/assets/javascripts/telephony/views/status_view.js +36 -0
- data/app/assets/javascripts/telephony/views/transfer_view.js +87 -0
- data/app/assets/javascripts/telephony/views/twilio_client_view.js +117 -0
- data/app/assets/javascripts/telephony/views/widget_view.js +55 -0
- data/app/assets/javascripts/telephony/widget.js +5 -0
- data/app/assets/javascripts/templates/telephony/agents_view.jst.ejs +8 -0
- data/app/assets/javascripts/templates/telephony/call_queue_view.jst.ejs +2 -0
- data/app/assets/javascripts/templates/telephony/conversation_buttons_view.jst.ejs +23 -0
- data/app/assets/javascripts/templates/telephony/conversation_view.jst.ejs +10 -0
- data/app/assets/javascripts/templates/telephony/status_view.jst.ejs +4 -0
- data/app/assets/javascripts/templates/telephony/transfer_view.jst.ejs +38 -0
- data/app/assets/javascripts/templates/telephony/twilio_client_view.jst.ejs +10 -0
- data/app/assets/stylesheets/telephony/font.css +43 -0
- data/app/assets/stylesheets/telephony/reset.css.scss +10 -0
- data/app/assets/stylesheets/telephony/widget.css.scss +512 -0
- data/app/controllers/telephony/agents_controller.rb +46 -0
- data/app/controllers/telephony/application_controller.rb +4 -0
- data/app/controllers/telephony/call_centers_controller.rb +9 -0
- data/app/controllers/telephony/conversations_controller.rb +74 -0
- data/app/controllers/telephony/inbound/conversation_queues_controller.rb +21 -0
- data/app/controllers/telephony/playable_listeners_controller.rb +43 -0
- data/app/controllers/telephony/providers/twilio/application_controller.rb +26 -0
- data/app/controllers/telephony/providers/twilio/calls_controller.rb +130 -0
- data/app/controllers/telephony/providers/twilio/inbound_calls_controller.rb +54 -0
- data/app/controllers/telephony/providers/twilio/musics_controller.rb +12 -0
- data/app/controllers/telephony/providers/twilio/voicemails_controller.rb +29 -0
- data/app/controllers/telephony/signals/agents/presences_controller.rb +64 -0
- data/app/controllers/telephony/transfers_controller.rb +18 -0
- data/app/controllers/telephony/twilio_client_controller.rb +37 -0
- data/app/controllers/telephony/voicemails_controller.rb +13 -0
- data/app/controllers/telephony/widget_controller.rb +10 -0
- data/app/helpers/telephony/application_helper.rb +4 -0
- data/app/helpers/telephony/calls_helper.rb +13 -0
- data/app/models/telephony/agent.rb +186 -0
- data/app/models/telephony/agent_state_machine.rb +54 -0
- data/app/models/telephony/base.rb +7 -0
- data/app/models/telephony/blacklisted_number.rb +5 -0
- data/app/models/telephony/call.rb +94 -0
- data/app/models/telephony/call_center.rb +26 -0
- data/app/models/telephony/call_state_machine.rb +98 -0
- data/app/models/telephony/conversation.rb +273 -0
- data/app/models/telephony/conversation_state_machine.rb +109 -0
- data/app/models/telephony/conversations_presenter.rb +83 -0
- data/app/models/telephony/events.rb +6 -0
- data/app/models/telephony/events/answer.rb +6 -0
- data/app/models/telephony/events/base.rb +118 -0
- data/app/models/telephony/events/busy.rb +6 -0
- data/app/models/telephony/events/call_answered.rb +22 -0
- data/app/models/telephony/events/call_fail.rb +6 -0
- data/app/models/telephony/events/complete_hold.rb +28 -0
- data/app/models/telephony/events/complete_one_step_transfer.rb +17 -0
- data/app/models/telephony/events/complete_resume.rb +28 -0
- data/app/models/telephony/events/complete_two_step_transfer.rb +6 -0
- data/app/models/telephony/events/conference.rb +6 -0
- data/app/models/telephony/events/connect.rb +22 -0
- data/app/models/telephony/events/customer_left_two_step_transfer.rb +6 -0
- data/app/models/telephony/events/dial_agent.rb +6 -0
- data/app/models/telephony/events/ended.rb +19 -0
- data/app/models/telephony/events/enqueue.rb +6 -0
- data/app/models/telephony/events/fail_one_step_transfer.rb +9 -0
- data/app/models/telephony/events/fail_two_step_transfer.rb +6 -0
- data/app/models/telephony/events/initialize_widget.rb +15 -0
- data/app/models/telephony/events/initiate_hold.rb +6 -0
- data/app/models/telephony/events/initiate_one_step_transfer.rb +6 -0
- data/app/models/telephony/events/initiate_resume.rb +6 -0
- data/app/models/telephony/events/initiate_two_step_transfer.rb +6 -0
- data/app/models/telephony/events/leave_two_step_transfer.rb +17 -0
- data/app/models/telephony/events/leave_voicemail.rb +22 -0
- data/app/models/telephony/events/no_answer.rb +6 -0
- data/app/models/telephony/events/play_closed_greeting.rb +6 -0
- data/app/models/telephony/events/play_message.rb +6 -0
- data/app/models/telephony/events/reject.rb +6 -0
- data/app/models/telephony/events/rona.rb +6 -0
- data/app/models/telephony/events/start.rb +17 -0
- data/app/models/telephony/events/straight_to_voicemail.rb +6 -0
- data/app/models/telephony/events/terminate.rb +6 -0
- data/app/models/telephony/events/transfer.rb +35 -0
- data/app/models/telephony/inbound_conversation_queue.rb +101 -0
- data/app/models/telephony/playable.rb +7 -0
- data/app/models/telephony/playable_listener.rb +42 -0
- data/app/models/telephony/pusher_event_publisher.rb +26 -0
- data/app/models/telephony/recording.rb +4 -0
- data/app/models/telephony/voicemail.rb +36 -0
- data/app/observers/telephony/agent_observer.rb +8 -0
- data/app/observers/telephony/call_observer.rb +15 -0
- data/app/observers/telephony/conversation_observer.rb +9 -0
- data/app/observers/telephony/event_observer.rb +9 -0
- data/app/views/layouts/telephony/application.html.erb +14 -0
- data/app/views/telephony/providers/twilio/calls/child_detached.builder +5 -0
- data/app/views/telephony/providers/twilio/calls/complete_hold.builder +6 -0
- data/app/views/telephony/providers/twilio/calls/connect.builder +13 -0
- data/app/views/telephony/providers/twilio/calls/dial.builder +14 -0
- data/app/views/telephony/providers/twilio/calls/done.builder +5 -0
- data/app/views/telephony/providers/twilio/calls/join_conference.builder +7 -0
- data/app/views/telephony/providers/twilio/calls/whisper_tone.builder +3 -0
- data/app/views/telephony/providers/twilio/inbound_calls/closed_hours.builder +7 -0
- data/app/views/telephony/providers/twilio/inbound_calls/create.builder +8 -0
- data/app/views/telephony/providers/twilio/inbound_calls/enqueue.builder +8 -0
- data/app/views/telephony/providers/twilio/inbound_calls/reject.builder +5 -0
- data/app/views/telephony/providers/twilio/inbound_calls/wait_music.builder +5 -0
- data/app/views/telephony/providers/twilio/musics/hold.builder +5 -0
- data/app/views/telephony/providers/twilio/voicemails/new.builder +6 -0
- data/app/views/telephony/twilio_client/index.html.erb +74 -0
- data/app/views/telephony/widget/index.erb +3 -0
- data/config/cucumber.yml +8 -0
- data/config/database.yml +57 -0
- data/config/environment.rb +67 -0
- data/config/initializers/pusher.rb +21 -0
- data/config/initializers/telephony.rb +44 -0
- data/config/routes.rb +94 -0
- data/config/wopr.yml.example +38 -0
- data/db/migrate/20130806213053_bootstrap_db.rb +105 -0
- data/db/migrate/20131009204026_create_telephony_blacklisted_numbers.rb +11 -0
- data/lib/agent_generator.rb +24 -0
- data/lib/tasks/cucumber.rake +65 -0
- data/lib/tasks/jasmine.rake +8 -0
- data/lib/tasks/telephony_tasks.rake +4 -0
- data/lib/telephony.rb +34 -0
- data/lib/telephony/concerns/controllers/twilio_request_verifier.rb +39 -0
- data/lib/telephony/conversation_data.rb +67 -0
- data/lib/telephony/engine.rb +19 -0
- data/lib/telephony/error.rb +8 -0
- data/lib/telephony/error/agent_on_a_call.rb +2 -0
- data/lib/telephony/error/base.rb +3 -0
- data/lib/telephony/error/connection.rb +2 -0
- data/lib/telephony/error/not_in_progress.rb +2 -0
- data/lib/telephony/error/queue_empty.rb +2 -0
- data/lib/telephony/helper.rb +11 -0
- data/lib/telephony/jobs/agent_offline.rb +28 -0
- data/lib/telephony/jobs/pusher_event.rb +21 -0
- data/lib/telephony/providers/twilio_provider.rb +162 -0
- data/lib/telephony/version.rb +3 -0
- data/spec/controllers/telephony/agents_controller_spec.rb +117 -0
- data/spec/controllers/telephony/call_centers_controller_spec.rb +25 -0
- data/spec/controllers/telephony/conversations_controller_spec.rb +229 -0
- data/spec/controllers/telephony/playable_listeners_controller_spec.rb +138 -0
- data/spec/controllers/telephony/providers/twilio/calls_controller_spec.rb +33 -0
- data/spec/controllers/telephony/providers/twilio/musics_controller_spec.rb +20 -0
- data/spec/controllers/telephony/signals/agents/presences_controller_spec.rb +154 -0
- data/spec/controllers/telephony/twilio_client_controller_spec.rb +58 -0
- data/spec/controllers/telephony/widget_controller_spec.rb +25 -0
- data/spec/dummy/Rakefile +7 -0
- data/spec/dummy/app/assets/javascripts/application.js +6 -0
- data/spec/dummy/app/assets/javascripts/lib/event_logger.js +82 -0
- data/spec/dummy/app/assets/javascripts/vendor/backbone.js +1159 -0
- data/spec/dummy/app/assets/javascripts/vendor/chosen.jquery.js +1018 -0
- data/spec/dummy/app/assets/javascripts/vendor/jquery.form.js +1117 -0
- data/spec/dummy/app/assets/javascripts/vendor/underscore.js +839 -0
- data/spec/dummy/app/assets/stylesheets/application.css +23 -0
- data/spec/dummy/app/controllers/application_controller.rb +3 -0
- data/spec/dummy/app/controllers/widget_host_controller.rb +2 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +12 -0
- data/spec/dummy/app/views/widget_host/index.html.erb +53 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/config/application.rb +61 -0
- data/spec/dummy/config/boot.rb +10 -0
- data/spec/dummy/config/call_centers.yml +35 -0
- data/spec/dummy/config/call_centers.yml.example +35 -0
- data/spec/dummy/config/database.yml +56 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/cucumber.rb +39 -0
- data/spec/dummy/config/environments/development.rb +39 -0
- data/spec/dummy/config/environments/production.rb +67 -0
- data/spec/dummy/config/environments/test.rb +39 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/inflections.rb +15 -0
- data/spec/dummy/config/initializers/mime_types.rb +5 -0
- data/spec/dummy/config/initializers/secret_token.rb +7 -0
- data/spec/dummy/config/initializers/session_store.rb +8 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +5 -0
- data/spec/dummy/config/pusher.yml +14 -0
- data/spec/dummy/config/pusher.yml.example +14 -0
- data/spec/dummy/config/routes.rb +5 -0
- data/spec/dummy/config/sms_whitelist.json.example +4 -0
- data/spec/dummy/config/twilio.yml +57 -0
- data/spec/dummy/config/twilio.yml.example +57 -0
- data/spec/dummy/db/schema.rb +122 -0
- data/spec/dummy/db/seeds.rb +6 -0
- data/spec/dummy/log/production.log +156 -0
- data/spec/dummy/log/test.log +13812 -0
- data/spec/dummy/public/404.html +26 -0
- data/spec/dummy/public/422.html +26 -0
- data/spec/dummy/public/500.html +25 -0
- data/spec/dummy/public/assets/application-628309db7ce8c0abdd91f8f796881599.js +32 -0
- data/spec/dummy/public/assets/application-628309db7ce8c0abdd91f8f796881599.js.gz +0 -0
- data/spec/dummy/public/assets/application-6c551430f3bdd32ba57c9c41e5f91846.css +24 -0
- data/spec/dummy/public/assets/application-6c551430f3bdd32ba57c9c41e5f91846.css.gz +0 -0
- data/spec/dummy/public/assets/telephony/backspace-9f5b195e049ed90eb20ecdda6e264b0a.png +0 -0
- data/spec/dummy/public/assets/telephony/icon-spinner-ddbae473a70c5425810aeee31d4a8ad7.gif +0 -0
- data/spec/dummy/public/assets/telephony/zest-telephony-0e6b13673634da80de9ae09bcca253e3.eot +0 -0
- data/spec/dummy/public/assets/telephony/zest-telephony-37f394757ccb11b978f16d9fd32cb3b5.ttf +0 -0
- data/spec/dummy/public/assets/telephony/zest-telephony-e7efdbc60c0a1c8404951bc79c7fb3a8.woff +0 -0
- data/spec/dummy/public/assets/telephony/zest-telephony-f34287df626936908408f53a33db9e83.svg +73 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/script/rails +6 -0
- data/spec/dummy/tmp/cache/assets/C98/020/sprockets%2Fa83f8254d688334ff179984e423f502f +0 -0
- data/spec/dummy/tmp/cache/assets/CA4/550/sprockets%2F407f9191fe573f2435c55c017cb0d022 +0 -0
- data/spec/dummy/tmp/cache/assets/CAA/6A0/sprockets%2F3265550e2d2c7f5a864ca85d255504c2 +0 -0
- data/spec/dummy/tmp/cache/assets/CB0/F60/sprockets%2F462f9efed31e6710732376ae06c27208 +0 -0
- data/spec/dummy/tmp/cache/assets/CB6/E20/sprockets%2Fa7092cd9f16917099d754f1380af13e1 +0 -0
- data/spec/dummy/tmp/cache/assets/CC7/9F0/sprockets%2F0517100815cd45c43fec1d8510fcb630 +0 -0
- data/spec/dummy/tmp/cache/assets/CCA/BF0/sprockets%2F16ea15e0b5d367c34b812612a4207e3e +0 -0
- data/spec/dummy/tmp/cache/assets/CD8/370/sprockets%2F357970feca3ac29060c1e3861e2c0953 +0 -0
- data/spec/dummy/tmp/cache/assets/CF1/960/sprockets%2F36ef26985821ec702c74dae4af789903 +0 -0
- data/spec/dummy/tmp/cache/assets/D07/F30/sprockets%2Fd12862f20df0c9ef7aa2b4216d247079 +0 -0
- data/spec/dummy/tmp/cache/assets/D09/BF0/sprockets%2F5c8595efaa8cc5235a09801c60e25a16 +0 -0
- data/spec/dummy/tmp/cache/assets/D0D/250/sprockets%2F5e759d66e374910dae5a51b221e6e3a4 +0 -0
- data/spec/dummy/tmp/cache/assets/D0D/E30/sprockets%2Fa282879e0788ba133f5bdc211cf134e8 +0 -0
- data/spec/dummy/tmp/cache/assets/D11/8E0/sprockets%2F2a193a8af29963f1113bef05788e02ff +0 -0
- data/spec/dummy/tmp/cache/assets/D14/270/sprockets%2F7f95a752910ed33d728532f8fabd340d +0 -0
- data/spec/dummy/tmp/cache/assets/D17/BE0/sprockets%2F58749d7aea4ca766c2520801f0f96b9b +0 -0
- data/spec/dummy/tmp/cache/assets/D18/270/sprockets%2Fbb2d88813b1795a97e9a7c14100eef77 +0 -0
- data/spec/dummy/tmp/cache/assets/D22/310/sprockets%2Fbae9148ce1229214dfbb0c425b0054d0 +0 -0
- data/spec/dummy/tmp/cache/assets/D30/EB0/sprockets%2F2c668b88beb4c9805d91ed4587f549e7 +0 -0
- data/spec/dummy/tmp/cache/assets/D32/A10/sprockets%2F13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/spec/dummy/tmp/cache/assets/D3C/690/sprockets%2F681ba175fdd2da8d590b7e624b6135a6 +0 -0
- data/spec/dummy/tmp/cache/assets/D44/BC0/sprockets%2F7214f66dd91fdd51f00c3882293f5eea +0 -0
- data/spec/dummy/tmp/cache/assets/D46/FA0/sprockets%2F4f9543cd9e68ba3141fd488afb13681b +0 -0
- data/spec/dummy/tmp/cache/assets/D4E/1B0/sprockets%2Ff7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/spec/dummy/tmp/cache/assets/D51/9A0/sprockets%2Fb6e4cbcf30f6f611671695f79ea846d5 +0 -0
- data/spec/dummy/tmp/cache/assets/D55/920/sprockets%2F0a02242aa4c4febcc796419aba103c69 +0 -0
- data/spec/dummy/tmp/cache/assets/D5A/EA0/sprockets%2Fd771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/spec/dummy/tmp/cache/assets/D5F/6F0/sprockets%2F155e7bc44f326371cce0ca8bc5b2414e +0 -0
- data/spec/dummy/tmp/cache/assets/D6B/250/sprockets%2Fe4eecce7a3371b11038c92f07cb28e67 +0 -0
- data/spec/dummy/tmp/cache/assets/D6B/E70/sprockets%2F103a456ae3692e3cca20b7696fdee8f0 +0 -0
- data/spec/dummy/tmp/cache/assets/D7F/AD0/sprockets%2Fb1c02d12303b1fe2f981771cbb0c4cbd +0 -0
- data/spec/dummy/tmp/cache/assets/D81/D00/sprockets%2F0c68b6d9dce98681a2a710d9fc3f7e39 +0 -0
- data/spec/dummy/tmp/cache/assets/D94/4D0/sprockets%2F4608a5bdf27ddf11bcaed1375911e9a2 +0 -0
- data/spec/dummy/tmp/cache/assets/D9A/580/sprockets%2F433005b19aaf7ed5cba9c7f8cd30b775 +0 -0
- data/spec/dummy/tmp/cache/assets/DA4/270/sprockets%2F860ab3bd30204e02c0a5d82bd4bbabe1 +0 -0
- data/spec/dummy/tmp/cache/assets/DA4/480/sprockets%2F53e39285bb57a2ddb6ff856b2eb491da +0 -0
- data/spec/dummy/tmp/cache/assets/DA6/3C0/sprockets%2F587c7e35f47442eadaa530acc5e9f5e6 +0 -0
- data/spec/dummy/tmp/cache/assets/DAB/DA0/sprockets%2Fb8fb5e8518ed3d38a7f6a8f18a9208aa +0 -0
- data/spec/dummy/tmp/cache/assets/DB2/700/sprockets%2Ffa85cb79b94fce1b8344d983ea863d2e +0 -0
- data/spec/dummy/tmp/cache/assets/DCC/4F0/sprockets%2Fbc0f3c61e16afb5a285ba8b39846ed8b +0 -0
- data/spec/dummy/tmp/cache/assets/DDC/400/sprockets%2Fcffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/spec/dummy/tmp/cache/assets/DDC/BE0/sprockets%2F2c0a4d4675a61b014aedbbabb3f071fc +0 -0
- data/spec/dummy/tmp/cache/assets/E04/640/sprockets%2F3c5ddf2bbefd9d70f1b506b519cf856e +0 -0
- data/spec/dummy/tmp/cache/assets/E04/7F0/sprockets%2F35f1b2ff729a5ec21f6dc5f7d6faa67b +0 -0
- data/spec/dummy/tmp/cache/assets/E04/890/sprockets%2F2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/spec/dummy/tmp/cache/assets/E07/230/sprockets%2Febd4f2dd708879d593aff008ccb75acc +0 -0
- data/spec/dummy/tmp/cache/assets/E17/9D0/sprockets%2F8db2b79f6c4eabe7a9ebe7a7898ec066 +0 -0
- data/spec/dummy/tmp/cache/assets/E31/F10/sprockets%2Fcebacf56667da1cc2961b59fd922eafb +0 -0
- data/spec/factories/agent.rb +26 -0
- data/spec/factories/calls.rb +106 -0
- data/spec/factories/conversations.rb +171 -0
- data/spec/factories/events.rb +250 -0
- data/spec/factories/playable_listeners.rb +6 -0
- data/spec/factories/recordings.rb +6 -0
- data/spec/factories/voicemails.rb +8 -0
- data/spec/fixtures/vcr_cassettes/Authenticating_an_online_user.yml +90 -0
- data/spec/fixtures/vcr_cassettes/Creating_a_conversation/creates_a_new_call.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Creating_a_conversation/creates_a_new_conversation.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Creating_a_conversation/returns_the_conversation_as_JSON.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Pusher_channel_as_JSON.yml +90 -0
- data/spec/fixtures/vcr_cassettes/Pusher_to_publish_the_event.yml +32 -0
- data/spec/fixtures/vcr_cassettes/Reloading_the_widget_during_a_call/_create/during_a_call/after_a_failed_transfer/pushes_the_event_for_the_active_call.yml +1110 -0
- data/spec/fixtures/vcr_cassettes/Telephony_ConversationsController/_create/by_default/creates_a_new_call.yml +45 -0
- data/spec/fixtures/vcr_cassettes/Telephony_ConversationsController/_create/by_default/creates_a_new_conversation.yml +43 -0
- data/spec/fixtures/vcr_cassettes/Telephony_ConversationsController/_create/by_default/returns_the_conversation_as_JSON.yml +44 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_call/allows_the_phone_to_ring_for_60_seconds.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_call/includes_a_status_change_callback_url.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_call/places_a_call.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_dial_into_conference/allows_the_phone_to_ring_for_15_seconds.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_dial_into_conference/places_a_call_to_redirect_the_participant_to_a_conference.yml +42 -0
- data/spec/fixtures/vcr_cassettes/Telephony_Providers_TwilioProvider/_hangup/by_default/hangs_up_the_call.yml +42 -0
- data/spec/fixtures/vcr_cassettes/buying_number_for_an_area_code.yml +42 -0
- data/spec/fixtures/vcr_cassettes/returns_success.yml +90 -0
- data/spec/javascripts/helpers/jasmine-jquery.js +546 -0
- data/spec/javascripts/helpers/mock-ajax.js +207 -0
- data/spec/javascripts/support/jasmine.yml +80 -0
- data/spec/javascripts/telephony/models/agent_spec.js +40 -0
- data/spec/javascripts/telephony/models/conversation_spec.js +515 -0
- data/spec/javascripts/telephony/models/device_spec.js +80 -0
- data/spec/javascripts/telephony/models/transfer_spec.js +22 -0
- data/spec/javascripts/telephony/push_spec.js +427 -0
- data/spec/javascripts/telephony/views/agents_view_spec.js +101 -0
- data/spec/javascripts/telephony/views/application_view_spec.js +74 -0
- data/spec/javascripts/telephony/views/conversation_view_spec.js +626 -0
- data/spec/javascripts/telephony/views/status_view_spec.js +30 -0
- data/spec/javascripts/telephony/views/transfer_view_spec.js +187 -0
- data/spec/javascripts/telephony/views/twilio_client_view_spec.js +77 -0
- data/spec/javascripts/telephony/views/widget_view_spec.js +20 -0
- data/spec/lib/telephony/concerns/controllers/twilio_request_verifier_spec.rb +77 -0
- data/spec/lib/telephony/conversation_data_spec.rb +342 -0
- data/spec/lib/telephony/helper_spec.rb +24 -0
- data/spec/lib/telephony/jobs/agent_offline_spec.rb +37 -0
- data/spec/lib/telephony/jobs/pusher_event_spec.rb +39 -0
- data/spec/lib/telephony/providers/twilio_provider_spec.rb +439 -0
- data/spec/lib/telephony_spec.rb +104 -0
- data/spec/models/telephony/agent_spec.rb +479 -0
- data/spec/models/telephony/agent_state_machine_spec.rb +131 -0
- data/spec/models/telephony/call_center_spec.rb +32 -0
- data/spec/models/telephony/call_spec.rb +597 -0
- data/spec/models/telephony/call_state_machine_spec.rb +472 -0
- data/spec/models/telephony/conversation_spec.rb +751 -0
- data/spec/models/telephony/conversation_state_machine_spec.rb +387 -0
- data/spec/models/telephony/conversations_presenter_spec.rb +40 -0
- data/spec/models/telephony/event_spec.rb +716 -0
- data/spec/models/telephony/inbound_conversation_queue_spec.rb +243 -0
- data/spec/models/telephony/playable_listener_spec.rb +43 -0
- data/spec/models/telephony/pusher_event_publisher_spec.rb +36 -0
- data/spec/models/telephony/recording_spec.rb +6 -0
- data/spec/models/telephony/voicemail_spec.rb +96 -0
- data/spec/observers/telephony/agent_observer_spec.rb +21 -0
- data/spec/observers/telephony/event_observer_spec.rb +19 -0
- data/spec/requests/create_conversation_spec.rb +39 -0
- data/spec/requests/dequeue_call_spec.rb +42 -0
- data/spec/requests/list_conversations_spec.rb +33 -0
- data/spec/requests/presences_spec.rb +51 -0
- data/spec/requests/providers/twilio/calls/child_answered_spec.rb +24 -0
- data/spec/requests/providers/twilio/calls/child_detached_spec.rb +249 -0
- data/spec/requests/providers/twilio/calls/dial_spec.rb +132 -0
- data/spec/requests/providers/twilio/calls/done_spec.rb +69 -0
- data/spec/requests/providers/twilio/calls/join_conference_spec.rb +56 -0
- data/spec/requests/providers/twilio/calls/leave_queue_spec.rb +44 -0
- data/spec/requests/providers/twilio/calls/parent_answered_spec.rb +59 -0
- data/spec/requests/providers/twilio/inbound/connect_dequeued_call_spec.rb +124 -0
- data/spec/requests/providers/twilio/inbound/enqueue_inbound_call_spec.rb +108 -0
- data/spec/requests/providers/twilio/inbound/enqueued_call_wait_music_spec.rb +13 -0
- data/spec/requests/providers/twilio/voicemails/leave_voicemail_spec.rb +78 -0
- data/spec/requests/search_conversations_spec.rb +101 -0
- data/spec/requests/transfer_spec.rb +65 -0
- data/spec/requests/voicemail_api_spec.rb +58 -0
- data/spec/spec_helper.rb +27 -0
- data/spec/support/factory_girl.rb +5 -0
- data/spec/support/matchers/be_complete_hold.rb +20 -0
- data/spec/support/matchers/be_whisper_tone.rb +35 -0
- data/spec/support/matchers/join_conference.rb +23 -0
- data/spec/support/nokogiri.rb +1 -0
- data/spec/support/pusher_helper.rb +24 -0
- data/spec/support/vcr.rb +12 -0
- data/spec/support/webmock.rb +1 -0
- metadata +692 -0
@@ -0,0 +1,839 @@
|
|
1
|
+
// Underscore.js 1.1.7
|
2
|
+
// (c) 2011 Jeremy Ashkenas, DocumentCloud Inc.
|
3
|
+
// Underscore is freely distributable under the MIT license.
|
4
|
+
// Portions of Underscore are inspired or borrowed from Prototype,
|
5
|
+
// Oliver Steele's Functional, and John Resig's Micro-Templating.
|
6
|
+
// For all details and documentation:
|
7
|
+
// http://documentcloud.github.com/underscore
|
8
|
+
|
9
|
+
(function() {
|
10
|
+
|
11
|
+
// Baseline setup
|
12
|
+
// --------------
|
13
|
+
|
14
|
+
// Establish the root object, `window` in the browser, or `global` on the server.
|
15
|
+
var root = this;
|
16
|
+
|
17
|
+
// Save the previous value of the `_` variable.
|
18
|
+
var previousUnderscore = root._;
|
19
|
+
|
20
|
+
// Establish the object that gets returned to break out of a loop iteration.
|
21
|
+
var breaker = {};
|
22
|
+
|
23
|
+
// Save bytes in the minified (but not gzipped) version:
|
24
|
+
var ArrayProto = Array.prototype, ObjProto = Object.prototype, FuncProto = Function.prototype;
|
25
|
+
|
26
|
+
// Create quick reference variables for speed access to core prototypes.
|
27
|
+
var slice = ArrayProto.slice,
|
28
|
+
unshift = ArrayProto.unshift,
|
29
|
+
toString = ObjProto.toString,
|
30
|
+
hasOwnProperty = ObjProto.hasOwnProperty;
|
31
|
+
|
32
|
+
// All **ECMAScript 5** native function implementations that we hope to use
|
33
|
+
// are declared here.
|
34
|
+
var
|
35
|
+
nativeForEach = ArrayProto.forEach,
|
36
|
+
nativeMap = ArrayProto.map,
|
37
|
+
nativeReduce = ArrayProto.reduce,
|
38
|
+
nativeReduceRight = ArrayProto.reduceRight,
|
39
|
+
nativeFilter = ArrayProto.filter,
|
40
|
+
nativeEvery = ArrayProto.every,
|
41
|
+
nativeSome = ArrayProto.some,
|
42
|
+
nativeIndexOf = ArrayProto.indexOf,
|
43
|
+
nativeLastIndexOf = ArrayProto.lastIndexOf,
|
44
|
+
nativeIsArray = Array.isArray,
|
45
|
+
nativeKeys = Object.keys,
|
46
|
+
nativeBind = FuncProto.bind;
|
47
|
+
|
48
|
+
// Create a safe reference to the Underscore object for use below.
|
49
|
+
var _ = function(obj) { return new wrapper(obj); };
|
50
|
+
|
51
|
+
// Export the Underscore object for **CommonJS**, with backwards-compatibility
|
52
|
+
// for the old `require()` API. If we're not in CommonJS, add `_` to the
|
53
|
+
// global object.
|
54
|
+
if (typeof module !== 'undefined' && module.exports) {
|
55
|
+
module.exports = _;
|
56
|
+
_._ = _;
|
57
|
+
} else {
|
58
|
+
// Exported as a string, for Closure Compiler "advanced" mode.
|
59
|
+
root['_'] = _;
|
60
|
+
}
|
61
|
+
|
62
|
+
// Current version.
|
63
|
+
_.VERSION = '1.1.7';
|
64
|
+
|
65
|
+
// Collection Functions
|
66
|
+
// --------------------
|
67
|
+
|
68
|
+
// The cornerstone, an `each` implementation, aka `forEach`.
|
69
|
+
// Handles objects with the built-in `forEach`, arrays, and raw objects.
|
70
|
+
// Delegates to **ECMAScript 5**'s native `forEach` if available.
|
71
|
+
var each = _.each = _.forEach = function(obj, iterator, context) {
|
72
|
+
if (obj == null) return;
|
73
|
+
if (nativeForEach && obj.forEach === nativeForEach) {
|
74
|
+
obj.forEach(iterator, context);
|
75
|
+
} else if (obj.length === +obj.length) {
|
76
|
+
for (var i = 0, l = obj.length; i < l; i++) {
|
77
|
+
if (i in obj && iterator.call(context, obj[i], i, obj) === breaker) return;
|
78
|
+
}
|
79
|
+
} else {
|
80
|
+
for (var key in obj) {
|
81
|
+
if (hasOwnProperty.call(obj, key)) {
|
82
|
+
if (iterator.call(context, obj[key], key, obj) === breaker) return;
|
83
|
+
}
|
84
|
+
}
|
85
|
+
}
|
86
|
+
};
|
87
|
+
|
88
|
+
// Return the results of applying the iterator to each element.
|
89
|
+
// Delegates to **ECMAScript 5**'s native `map` if available.
|
90
|
+
_.map = function(obj, iterator, context) {
|
91
|
+
var results = [];
|
92
|
+
if (obj == null) return results;
|
93
|
+
if (nativeMap && obj.map === nativeMap) return obj.map(iterator, context);
|
94
|
+
each(obj, function(value, index, list) {
|
95
|
+
results[results.length] = iterator.call(context, value, index, list);
|
96
|
+
});
|
97
|
+
return results;
|
98
|
+
};
|
99
|
+
|
100
|
+
// **Reduce** builds up a single result from a list of values, aka `inject`,
|
101
|
+
// or `foldl`. Delegates to **ECMAScript 5**'s native `reduce` if available.
|
102
|
+
_.reduce = _.foldl = _.inject = function(obj, iterator, memo, context) {
|
103
|
+
var initial = memo !== void 0;
|
104
|
+
if (obj == null) obj = [];
|
105
|
+
if (nativeReduce && obj.reduce === nativeReduce) {
|
106
|
+
if (context) iterator = _.bind(iterator, context);
|
107
|
+
return initial ? obj.reduce(iterator, memo) : obj.reduce(iterator);
|
108
|
+
}
|
109
|
+
each(obj, function(value, index, list) {
|
110
|
+
if (!initial) {
|
111
|
+
memo = value;
|
112
|
+
initial = true;
|
113
|
+
} else {
|
114
|
+
memo = iterator.call(context, memo, value, index, list);
|
115
|
+
}
|
116
|
+
});
|
117
|
+
if (!initial) throw new TypeError("Reduce of empty array with no initial value");
|
118
|
+
return memo;
|
119
|
+
};
|
120
|
+
|
121
|
+
// The right-associative version of reduce, also known as `foldr`.
|
122
|
+
// Delegates to **ECMAScript 5**'s native `reduceRight` if available.
|
123
|
+
_.reduceRight = _.foldr = function(obj, iterator, memo, context) {
|
124
|
+
if (obj == null) obj = [];
|
125
|
+
if (nativeReduceRight && obj.reduceRight === nativeReduceRight) {
|
126
|
+
if (context) iterator = _.bind(iterator, context);
|
127
|
+
return memo !== void 0 ? obj.reduceRight(iterator, memo) : obj.reduceRight(iterator);
|
128
|
+
}
|
129
|
+
var reversed = (_.isArray(obj) ? obj.slice() : _.toArray(obj)).reverse();
|
130
|
+
return _.reduce(reversed, iterator, memo, context);
|
131
|
+
};
|
132
|
+
|
133
|
+
// Return the first value which passes a truth test. Aliased as `detect`.
|
134
|
+
_.find = _.detect = function(obj, iterator, context) {
|
135
|
+
var result;
|
136
|
+
any(obj, function(value, index, list) {
|
137
|
+
if (iterator.call(context, value, index, list)) {
|
138
|
+
result = value;
|
139
|
+
return true;
|
140
|
+
}
|
141
|
+
});
|
142
|
+
return result;
|
143
|
+
};
|
144
|
+
|
145
|
+
// Return all the elements that pass a truth test.
|
146
|
+
// Delegates to **ECMAScript 5**'s native `filter` if available.
|
147
|
+
// Aliased as `select`.
|
148
|
+
_.filter = _.select = function(obj, iterator, context) {
|
149
|
+
var results = [];
|
150
|
+
if (obj == null) return results;
|
151
|
+
if (nativeFilter && obj.filter === nativeFilter) return obj.filter(iterator, context);
|
152
|
+
each(obj, function(value, index, list) {
|
153
|
+
if (iterator.call(context, value, index, list)) results[results.length] = value;
|
154
|
+
});
|
155
|
+
return results;
|
156
|
+
};
|
157
|
+
|
158
|
+
// Return all the elements for which a truth test fails.
|
159
|
+
_.reject = function(obj, iterator, context) {
|
160
|
+
var results = [];
|
161
|
+
if (obj == null) return results;
|
162
|
+
each(obj, function(value, index, list) {
|
163
|
+
if (!iterator.call(context, value, index, list)) results[results.length] = value;
|
164
|
+
});
|
165
|
+
return results;
|
166
|
+
};
|
167
|
+
|
168
|
+
// Determine whether all of the elements match a truth test.
|
169
|
+
// Delegates to **ECMAScript 5**'s native `every` if available.
|
170
|
+
// Aliased as `all`.
|
171
|
+
_.every = _.all = function(obj, iterator, context) {
|
172
|
+
var result = true;
|
173
|
+
if (obj == null) return result;
|
174
|
+
if (nativeEvery && obj.every === nativeEvery) return obj.every(iterator, context);
|
175
|
+
each(obj, function(value, index, list) {
|
176
|
+
if (!(result = result && iterator.call(context, value, index, list))) return breaker;
|
177
|
+
});
|
178
|
+
return result;
|
179
|
+
};
|
180
|
+
|
181
|
+
// Determine if at least one element in the object matches a truth test.
|
182
|
+
// Delegates to **ECMAScript 5**'s native `some` if available.
|
183
|
+
// Aliased as `any`.
|
184
|
+
var any = _.some = _.any = function(obj, iterator, context) {
|
185
|
+
iterator = iterator || _.identity;
|
186
|
+
var result = false;
|
187
|
+
if (obj == null) return result;
|
188
|
+
if (nativeSome && obj.some === nativeSome) return obj.some(iterator, context);
|
189
|
+
each(obj, function(value, index, list) {
|
190
|
+
if (result |= iterator.call(context, value, index, list)) return breaker;
|
191
|
+
});
|
192
|
+
return !!result;
|
193
|
+
};
|
194
|
+
|
195
|
+
// Determine if a given value is included in the array or object using `===`.
|
196
|
+
// Aliased as `contains`.
|
197
|
+
_.include = _.contains = function(obj, target) {
|
198
|
+
var found = false;
|
199
|
+
if (obj == null) return found;
|
200
|
+
if (nativeIndexOf && obj.indexOf === nativeIndexOf) return obj.indexOf(target) != -1;
|
201
|
+
any(obj, function(value) {
|
202
|
+
if (found = value === target) return true;
|
203
|
+
});
|
204
|
+
return found;
|
205
|
+
};
|
206
|
+
|
207
|
+
// Invoke a method (with arguments) on every item in a collection.
|
208
|
+
_.invoke = function(obj, method) {
|
209
|
+
var args = slice.call(arguments, 2);
|
210
|
+
return _.map(obj, function(value) {
|
211
|
+
return (method.call ? method || value : value[method]).apply(value, args);
|
212
|
+
});
|
213
|
+
};
|
214
|
+
|
215
|
+
// Convenience version of a common use case of `map`: fetching a property.
|
216
|
+
_.pluck = function(obj, key) {
|
217
|
+
return _.map(obj, function(value){ return value[key]; });
|
218
|
+
};
|
219
|
+
|
220
|
+
// Return the maximum element or (element-based computation).
|
221
|
+
_.max = function(obj, iterator, context) {
|
222
|
+
if (!iterator && _.isArray(obj)) return Math.max.apply(Math, obj);
|
223
|
+
var result = {computed : -Infinity};
|
224
|
+
each(obj, function(value, index, list) {
|
225
|
+
var computed = iterator ? iterator.call(context, value, index, list) : value;
|
226
|
+
computed >= result.computed && (result = {value : value, computed : computed});
|
227
|
+
});
|
228
|
+
return result.value;
|
229
|
+
};
|
230
|
+
|
231
|
+
// Return the minimum element (or element-based computation).
|
232
|
+
_.min = function(obj, iterator, context) {
|
233
|
+
if (!iterator && _.isArray(obj)) return Math.min.apply(Math, obj);
|
234
|
+
var result = {computed : Infinity};
|
235
|
+
each(obj, function(value, index, list) {
|
236
|
+
var computed = iterator ? iterator.call(context, value, index, list) : value;
|
237
|
+
computed < result.computed && (result = {value : value, computed : computed});
|
238
|
+
});
|
239
|
+
return result.value;
|
240
|
+
};
|
241
|
+
|
242
|
+
// Sort the object's values by a criterion produced by an iterator.
|
243
|
+
_.sortBy = function(obj, iterator, context) {
|
244
|
+
return _.pluck(_.map(obj, function(value, index, list) {
|
245
|
+
return {
|
246
|
+
value : value,
|
247
|
+
criteria : iterator.call(context, value, index, list)
|
248
|
+
};
|
249
|
+
}).sort(function(left, right) {
|
250
|
+
var a = left.criteria, b = right.criteria;
|
251
|
+
return a < b ? -1 : a > b ? 1 : 0;
|
252
|
+
}), 'value');
|
253
|
+
};
|
254
|
+
|
255
|
+
// Groups the object's values by a criterion produced by an iterator
|
256
|
+
_.groupBy = function(obj, iterator) {
|
257
|
+
var result = {};
|
258
|
+
each(obj, function(value, index) {
|
259
|
+
var key = iterator(value, index);
|
260
|
+
(result[key] || (result[key] = [])).push(value);
|
261
|
+
});
|
262
|
+
return result;
|
263
|
+
};
|
264
|
+
|
265
|
+
// Use a comparator function to figure out at what index an object should
|
266
|
+
// be inserted so as to maintain order. Uses binary search.
|
267
|
+
_.sortedIndex = function(array, obj, iterator) {
|
268
|
+
iterator || (iterator = _.identity);
|
269
|
+
var low = 0, high = array.length;
|
270
|
+
while (low < high) {
|
271
|
+
var mid = (low + high) >> 1;
|
272
|
+
iterator(array[mid]) < iterator(obj) ? low = mid + 1 : high = mid;
|
273
|
+
}
|
274
|
+
return low;
|
275
|
+
};
|
276
|
+
|
277
|
+
// Safely convert anything iterable into a real, live array.
|
278
|
+
_.toArray = function(iterable) {
|
279
|
+
if (!iterable) return [];
|
280
|
+
if (iterable.toArray) return iterable.toArray();
|
281
|
+
if (_.isArray(iterable)) return slice.call(iterable);
|
282
|
+
if (_.isArguments(iterable)) return slice.call(iterable);
|
283
|
+
return _.values(iterable);
|
284
|
+
};
|
285
|
+
|
286
|
+
// Return the number of elements in an object.
|
287
|
+
_.size = function(obj) {
|
288
|
+
return _.toArray(obj).length;
|
289
|
+
};
|
290
|
+
|
291
|
+
// Array Functions
|
292
|
+
// ---------------
|
293
|
+
|
294
|
+
// Get the first element of an array. Passing **n** will return the first N
|
295
|
+
// values in the array. Aliased as `head`. The **guard** check allows it to work
|
296
|
+
// with `_.map`.
|
297
|
+
_.first = _.head = function(array, n, guard) {
|
298
|
+
return (n != null) && !guard ? slice.call(array, 0, n) : array[0];
|
299
|
+
};
|
300
|
+
|
301
|
+
// Returns everything but the first entry of the array. Aliased as `tail`.
|
302
|
+
// Especially useful on the arguments object. Passing an **index** will return
|
303
|
+
// the rest of the values in the array from that index onward. The **guard**
|
304
|
+
// check allows it to work with `_.map`.
|
305
|
+
_.rest = _.tail = function(array, index, guard) {
|
306
|
+
return slice.call(array, (index == null) || guard ? 1 : index);
|
307
|
+
};
|
308
|
+
|
309
|
+
// Get the last element of an array.
|
310
|
+
_.last = function(array) {
|
311
|
+
return array[array.length - 1];
|
312
|
+
};
|
313
|
+
|
314
|
+
// Trim out all falsy values from an array.
|
315
|
+
_.compact = function(array) {
|
316
|
+
return _.filter(array, function(value){ return !!value; });
|
317
|
+
};
|
318
|
+
|
319
|
+
// Return a completely flattened version of an array.
|
320
|
+
_.flatten = function(array) {
|
321
|
+
return _.reduce(array, function(memo, value) {
|
322
|
+
if (_.isArray(value)) return memo.concat(_.flatten(value));
|
323
|
+
memo[memo.length] = value;
|
324
|
+
return memo;
|
325
|
+
}, []);
|
326
|
+
};
|
327
|
+
|
328
|
+
// Return a version of the array that does not contain the specified value(s).
|
329
|
+
_.without = function(array) {
|
330
|
+
return _.difference(array, slice.call(arguments, 1));
|
331
|
+
};
|
332
|
+
|
333
|
+
// Produce a duplicate-free version of the array. If the array has already
|
334
|
+
// been sorted, you have the option of using a faster algorithm.
|
335
|
+
// Aliased as `unique`.
|
336
|
+
_.uniq = _.unique = function(array, isSorted) {
|
337
|
+
return _.reduce(array, function(memo, el, i) {
|
338
|
+
if (0 == i || (isSorted === true ? _.last(memo) != el : !_.include(memo, el))) memo[memo.length] = el;
|
339
|
+
return memo;
|
340
|
+
}, []);
|
341
|
+
};
|
342
|
+
|
343
|
+
// Produce an array that contains the union: each distinct element from all of
|
344
|
+
// the passed-in arrays.
|
345
|
+
_.union = function() {
|
346
|
+
return _.uniq(_.flatten(arguments));
|
347
|
+
};
|
348
|
+
|
349
|
+
// Produce an array that contains every item shared between all the
|
350
|
+
// passed-in arrays. (Aliased as "intersect" for back-compat.)
|
351
|
+
_.intersection = _.intersect = function(array) {
|
352
|
+
var rest = slice.call(arguments, 1);
|
353
|
+
return _.filter(_.uniq(array), function(item) {
|
354
|
+
return _.every(rest, function(other) {
|
355
|
+
return _.indexOf(other, item) >= 0;
|
356
|
+
});
|
357
|
+
});
|
358
|
+
};
|
359
|
+
|
360
|
+
// Take the difference between one array and another.
|
361
|
+
// Only the elements present in just the first array will remain.
|
362
|
+
_.difference = function(array, other) {
|
363
|
+
return _.filter(array, function(value){ return !_.include(other, value); });
|
364
|
+
};
|
365
|
+
|
366
|
+
// Zip together multiple lists into a single array -- elements that share
|
367
|
+
// an index go together.
|
368
|
+
_.zip = function() {
|
369
|
+
var args = slice.call(arguments);
|
370
|
+
var length = _.max(_.pluck(args, 'length'));
|
371
|
+
var results = new Array(length);
|
372
|
+
for (var i = 0; i < length; i++) results[i] = _.pluck(args, "" + i);
|
373
|
+
return results;
|
374
|
+
};
|
375
|
+
|
376
|
+
// If the browser doesn't supply us with indexOf (I'm looking at you, **MSIE**),
|
377
|
+
// we need this function. Return the position of the first occurrence of an
|
378
|
+
// item in an array, or -1 if the item is not included in the array.
|
379
|
+
// Delegates to **ECMAScript 5**'s native `indexOf` if available.
|
380
|
+
// If the array is large and already in sort order, pass `true`
|
381
|
+
// for **isSorted** to use binary search.
|
382
|
+
_.indexOf = function(array, item, isSorted) {
|
383
|
+
if (array == null) return -1;
|
384
|
+
var i, l;
|
385
|
+
if (isSorted) {
|
386
|
+
i = _.sortedIndex(array, item);
|
387
|
+
return array[i] === item ? i : -1;
|
388
|
+
}
|
389
|
+
if (nativeIndexOf && array.indexOf === nativeIndexOf) return array.indexOf(item);
|
390
|
+
for (i = 0, l = array.length; i < l; i++) if (array[i] === item) return i;
|
391
|
+
return -1;
|
392
|
+
};
|
393
|
+
|
394
|
+
|
395
|
+
// Delegates to **ECMAScript 5**'s native `lastIndexOf` if available.
|
396
|
+
_.lastIndexOf = function(array, item) {
|
397
|
+
if (array == null) return -1;
|
398
|
+
if (nativeLastIndexOf && array.lastIndexOf === nativeLastIndexOf) return array.lastIndexOf(item);
|
399
|
+
var i = array.length;
|
400
|
+
while (i--) if (array[i] === item) return i;
|
401
|
+
return -1;
|
402
|
+
};
|
403
|
+
|
404
|
+
// Generate an integer Array containing an arithmetic progression. A port of
|
405
|
+
// the native Python `range()` function. See
|
406
|
+
// [the Python documentation](http://docs.python.org/library/functions.html#range).
|
407
|
+
_.range = function(start, stop, step) {
|
408
|
+
if (arguments.length <= 1) {
|
409
|
+
stop = start || 0;
|
410
|
+
start = 0;
|
411
|
+
}
|
412
|
+
step = arguments[2] || 1;
|
413
|
+
|
414
|
+
var len = Math.max(Math.ceil((stop - start) / step), 0);
|
415
|
+
var idx = 0;
|
416
|
+
var range = new Array(len);
|
417
|
+
|
418
|
+
while(idx < len) {
|
419
|
+
range[idx++] = start;
|
420
|
+
start += step;
|
421
|
+
}
|
422
|
+
|
423
|
+
return range;
|
424
|
+
};
|
425
|
+
|
426
|
+
// Function (ahem) Functions
|
427
|
+
// ------------------
|
428
|
+
|
429
|
+
// Create a function bound to a given object (assigning `this`, and arguments,
|
430
|
+
// optionally). Binding with arguments is also known as `curry`.
|
431
|
+
// Delegates to **ECMAScript 5**'s native `Function.bind` if available.
|
432
|
+
// We check for `func.bind` first, to fail fast when `func` is undefined.
|
433
|
+
_.bind = function(func, obj) {
|
434
|
+
if (func.bind === nativeBind && nativeBind) return nativeBind.apply(func, slice.call(arguments, 1));
|
435
|
+
var args = slice.call(arguments, 2);
|
436
|
+
return function() {
|
437
|
+
return func.apply(obj, args.concat(slice.call(arguments)));
|
438
|
+
};
|
439
|
+
};
|
440
|
+
|
441
|
+
// Bind all of an object's methods to that object. Useful for ensuring that
|
442
|
+
// all callbacks defined on an object belong to it.
|
443
|
+
_.bindAll = function(obj) {
|
444
|
+
var funcs = slice.call(arguments, 1);
|
445
|
+
if (funcs.length == 0) funcs = _.functions(obj);
|
446
|
+
each(funcs, function(f) { obj[f] = _.bind(obj[f], obj); });
|
447
|
+
return obj;
|
448
|
+
};
|
449
|
+
|
450
|
+
// Memoize an expensive function by storing its results.
|
451
|
+
_.memoize = function(func, hasher) {
|
452
|
+
var memo = {};
|
453
|
+
hasher || (hasher = _.identity);
|
454
|
+
return function() {
|
455
|
+
var key = hasher.apply(this, arguments);
|
456
|
+
return hasOwnProperty.call(memo, key) ? memo[key] : (memo[key] = func.apply(this, arguments));
|
457
|
+
};
|
458
|
+
};
|
459
|
+
|
460
|
+
// Delays a function for the given number of milliseconds, and then calls
|
461
|
+
// it with the arguments supplied.
|
462
|
+
_.delay = function(func, wait) {
|
463
|
+
var args = slice.call(arguments, 2);
|
464
|
+
return setTimeout(function(){ return func.apply(func, args); }, wait);
|
465
|
+
};
|
466
|
+
|
467
|
+
// Defers a function, scheduling it to run after the current call stack has
|
468
|
+
// cleared.
|
469
|
+
_.defer = function(func) {
|
470
|
+
return _.delay.apply(_, [func, 1].concat(slice.call(arguments, 1)));
|
471
|
+
};
|
472
|
+
|
473
|
+
// Internal function used to implement `_.throttle` and `_.debounce`.
|
474
|
+
var limit = function(func, wait, debounce) {
|
475
|
+
var timeout;
|
476
|
+
return function() {
|
477
|
+
var context = this, args = arguments;
|
478
|
+
var throttler = function() {
|
479
|
+
timeout = null;
|
480
|
+
func.apply(context, args);
|
481
|
+
};
|
482
|
+
if (debounce) clearTimeout(timeout);
|
483
|
+
if (debounce || !timeout) timeout = setTimeout(throttler, wait);
|
484
|
+
};
|
485
|
+
};
|
486
|
+
|
487
|
+
// Returns a function, that, when invoked, will only be triggered at most once
|
488
|
+
// during a given window of time.
|
489
|
+
_.throttle = function(func, wait) {
|
490
|
+
return limit(func, wait, false);
|
491
|
+
};
|
492
|
+
|
493
|
+
// Returns a function, that, as long as it continues to be invoked, will not
|
494
|
+
// be triggered. The function will be called after it stops being called for
|
495
|
+
// N milliseconds.
|
496
|
+
_.debounce = function(func, wait) {
|
497
|
+
return limit(func, wait, true);
|
498
|
+
};
|
499
|
+
|
500
|
+
// Returns a function that will be executed at most one time, no matter how
|
501
|
+
// often you call it. Useful for lazy initialization.
|
502
|
+
_.once = function(func) {
|
503
|
+
var ran = false, memo;
|
504
|
+
return function() {
|
505
|
+
if (ran) return memo;
|
506
|
+
ran = true;
|
507
|
+
return memo = func.apply(this, arguments);
|
508
|
+
};
|
509
|
+
};
|
510
|
+
|
511
|
+
// Returns the first function passed as an argument to the second,
|
512
|
+
// allowing you to adjust arguments, run code before and after, and
|
513
|
+
// conditionally execute the original function.
|
514
|
+
_.wrap = function(func, wrapper) {
|
515
|
+
return function() {
|
516
|
+
var args = [func].concat(slice.call(arguments));
|
517
|
+
return wrapper.apply(this, args);
|
518
|
+
};
|
519
|
+
};
|
520
|
+
|
521
|
+
// Returns a function that is the composition of a list of functions, each
|
522
|
+
// consuming the return value of the function that follows.
|
523
|
+
_.compose = function() {
|
524
|
+
var funcs = slice.call(arguments);
|
525
|
+
return function() {
|
526
|
+
var args = slice.call(arguments);
|
527
|
+
for (var i = funcs.length - 1; i >= 0; i--) {
|
528
|
+
args = [funcs[i].apply(this, args)];
|
529
|
+
}
|
530
|
+
return args[0];
|
531
|
+
};
|
532
|
+
};
|
533
|
+
|
534
|
+
// Returns a function that will only be executed after being called N times.
|
535
|
+
_.after = function(times, func) {
|
536
|
+
return function() {
|
537
|
+
if (--times < 1) { return func.apply(this, arguments); }
|
538
|
+
};
|
539
|
+
};
|
540
|
+
|
541
|
+
|
542
|
+
// Object Functions
|
543
|
+
// ----------------
|
544
|
+
|
545
|
+
// Retrieve the names of an object's properties.
|
546
|
+
// Delegates to **ECMAScript 5**'s native `Object.keys`
|
547
|
+
_.keys = nativeKeys || function(obj) {
|
548
|
+
if (obj !== Object(obj)) throw new TypeError('Invalid object');
|
549
|
+
var keys = [];
|
550
|
+
for (var key in obj) if (hasOwnProperty.call(obj, key)) keys[keys.length] = key;
|
551
|
+
return keys;
|
552
|
+
};
|
553
|
+
|
554
|
+
// Retrieve the values of an object's properties.
|
555
|
+
_.values = function(obj) {
|
556
|
+
return _.map(obj, _.identity);
|
557
|
+
};
|
558
|
+
|
559
|
+
// Return a sorted list of the function names available on the object.
|
560
|
+
// Aliased as `methods`
|
561
|
+
_.functions = _.methods = function(obj) {
|
562
|
+
var names = [];
|
563
|
+
for (var key in obj) {
|
564
|
+
if (_.isFunction(obj[key])) names.push(key);
|
565
|
+
}
|
566
|
+
return names.sort();
|
567
|
+
};
|
568
|
+
|
569
|
+
// Extend a given object with all the properties in passed-in object(s).
|
570
|
+
_.extend = function(obj) {
|
571
|
+
each(slice.call(arguments, 1), function(source) {
|
572
|
+
for (var prop in source) {
|
573
|
+
if (source[prop] !== void 0) obj[prop] = source[prop];
|
574
|
+
}
|
575
|
+
});
|
576
|
+
return obj;
|
577
|
+
};
|
578
|
+
|
579
|
+
// Fill in a given object with default properties.
|
580
|
+
_.defaults = function(obj) {
|
581
|
+
each(slice.call(arguments, 1), function(source) {
|
582
|
+
for (var prop in source) {
|
583
|
+
if (obj[prop] == null) obj[prop] = source[prop];
|
584
|
+
}
|
585
|
+
});
|
586
|
+
return obj;
|
587
|
+
};
|
588
|
+
|
589
|
+
// Create a (shallow-cloned) duplicate of an object.
|
590
|
+
_.clone = function(obj) {
|
591
|
+
return _.isArray(obj) ? obj.slice() : _.extend({}, obj);
|
592
|
+
};
|
593
|
+
|
594
|
+
// Invokes interceptor with the obj, and then returns obj.
|
595
|
+
// The primary purpose of this method is to "tap into" a method chain, in
|
596
|
+
// order to perform operations on intermediate results within the chain.
|
597
|
+
_.tap = function(obj, interceptor) {
|
598
|
+
interceptor(obj);
|
599
|
+
return obj;
|
600
|
+
};
|
601
|
+
|
602
|
+
// Perform a deep comparison to check if two objects are equal.
|
603
|
+
_.isEqual = function(a, b) {
|
604
|
+
// Check object identity.
|
605
|
+
if (a === b) return true;
|
606
|
+
// Different types?
|
607
|
+
var atype = typeof(a), btype = typeof(b);
|
608
|
+
if (atype != btype) return false;
|
609
|
+
// Basic equality test (watch out for coercions).
|
610
|
+
if (a == b) return true;
|
611
|
+
// One is falsy and the other truthy.
|
612
|
+
if ((!a && b) || (a && !b)) return false;
|
613
|
+
// Unwrap any wrapped objects.
|
614
|
+
if (a._chain) a = a._wrapped;
|
615
|
+
if (b._chain) b = b._wrapped;
|
616
|
+
// One of them implements an isEqual()?
|
617
|
+
if (a.isEqual) return a.isEqual(b);
|
618
|
+
if (b.isEqual) return b.isEqual(a);
|
619
|
+
// Check dates' integer values.
|
620
|
+
if (_.isDate(a) && _.isDate(b)) return a.getTime() === b.getTime();
|
621
|
+
// Both are NaN?
|
622
|
+
if (_.isNaN(a) && _.isNaN(b)) return false;
|
623
|
+
// Compare regular expressions.
|
624
|
+
if (_.isRegExp(a) && _.isRegExp(b))
|
625
|
+
return a.source === b.source &&
|
626
|
+
a.global === b.global &&
|
627
|
+
a.ignoreCase === b.ignoreCase &&
|
628
|
+
a.multiline === b.multiline;
|
629
|
+
// If a is not an object by this point, we can't handle it.
|
630
|
+
if (atype !== 'object') return false;
|
631
|
+
// Check for different array lengths before comparing contents.
|
632
|
+
if (a.length && (a.length !== b.length)) return false;
|
633
|
+
// Nothing else worked, deep compare the contents.
|
634
|
+
var aKeys = _.keys(a), bKeys = _.keys(b);
|
635
|
+
// Different object sizes?
|
636
|
+
if (aKeys.length != bKeys.length) return false;
|
637
|
+
// Recursive comparison of contents.
|
638
|
+
for (var key in a) if (!(key in b) || !_.isEqual(a[key], b[key])) return false;
|
639
|
+
return true;
|
640
|
+
};
|
641
|
+
|
642
|
+
// Is a given array or object empty?
|
643
|
+
_.isEmpty = function(obj) {
|
644
|
+
if (_.isArray(obj) || _.isString(obj)) return obj.length === 0;
|
645
|
+
for (var key in obj) if (hasOwnProperty.call(obj, key)) return false;
|
646
|
+
return true;
|
647
|
+
};
|
648
|
+
|
649
|
+
// Is a given value a DOM element?
|
650
|
+
_.isElement = function(obj) {
|
651
|
+
return !!(obj && obj.nodeType == 1);
|
652
|
+
};
|
653
|
+
|
654
|
+
// Is a given value an array?
|
655
|
+
// Delegates to ECMA5's native Array.isArray
|
656
|
+
_.isArray = nativeIsArray || function(obj) {
|
657
|
+
return toString.call(obj) === '[object Array]';
|
658
|
+
};
|
659
|
+
|
660
|
+
// Is a given variable an object?
|
661
|
+
_.isObject = function(obj) {
|
662
|
+
return obj === Object(obj);
|
663
|
+
};
|
664
|
+
|
665
|
+
// Is a given variable an arguments object?
|
666
|
+
_.isArguments = function(obj) {
|
667
|
+
return !!(obj && hasOwnProperty.call(obj, 'callee'));
|
668
|
+
};
|
669
|
+
|
670
|
+
// Is a given value a function?
|
671
|
+
_.isFunction = function(obj) {
|
672
|
+
return !!(obj && obj.constructor && obj.call && obj.apply);
|
673
|
+
};
|
674
|
+
|
675
|
+
// Is a given value a string?
|
676
|
+
_.isString = function(obj) {
|
677
|
+
return !!(obj === '' || (obj && obj.charCodeAt && obj.substr));
|
678
|
+
};
|
679
|
+
|
680
|
+
// Is a given value a number?
|
681
|
+
_.isNumber = function(obj) {
|
682
|
+
return !!(obj === 0 || (obj && obj.toExponential && obj.toFixed));
|
683
|
+
};
|
684
|
+
|
685
|
+
// Is the given value `NaN`? `NaN` happens to be the only value in JavaScript
|
686
|
+
// that does not equal itself.
|
687
|
+
_.isNaN = function(obj) {
|
688
|
+
return obj !== obj;
|
689
|
+
};
|
690
|
+
|
691
|
+
// Is a given value a boolean?
|
692
|
+
_.isBoolean = function(obj) {
|
693
|
+
return obj === true || obj === false;
|
694
|
+
};
|
695
|
+
|
696
|
+
// Is a given value a date?
|
697
|
+
_.isDate = function(obj) {
|
698
|
+
return !!(obj && obj.getTimezoneOffset && obj.setUTCFullYear);
|
699
|
+
};
|
700
|
+
|
701
|
+
// Is the given value a regular expression?
|
702
|
+
_.isRegExp = function(obj) {
|
703
|
+
return !!(obj && obj.test && obj.exec && (obj.ignoreCase || obj.ignoreCase === false));
|
704
|
+
};
|
705
|
+
|
706
|
+
// Is a given value equal to null?
|
707
|
+
_.isNull = function(obj) {
|
708
|
+
return obj === null;
|
709
|
+
};
|
710
|
+
|
711
|
+
// Is a given variable undefined?
|
712
|
+
_.isUndefined = function(obj) {
|
713
|
+
return obj === void 0;
|
714
|
+
};
|
715
|
+
|
716
|
+
// Utility Functions
|
717
|
+
// -----------------
|
718
|
+
|
719
|
+
// Run Underscore.js in *noConflict* mode, returning the `_` variable to its
|
720
|
+
// previous owner. Returns a reference to the Underscore object.
|
721
|
+
_.noConflict = function() {
|
722
|
+
root._ = previousUnderscore;
|
723
|
+
return this;
|
724
|
+
};
|
725
|
+
|
726
|
+
// Keep the identity function around for default iterators.
|
727
|
+
_.identity = function(value) {
|
728
|
+
return value;
|
729
|
+
};
|
730
|
+
|
731
|
+
// Run a function **n** times.
|
732
|
+
_.times = function (n, iterator, context) {
|
733
|
+
for (var i = 0; i < n; i++) iterator.call(context, i);
|
734
|
+
};
|
735
|
+
|
736
|
+
// Add your own custom functions to the Underscore object, ensuring that
|
737
|
+
// they're correctly added to the OOP wrapper as well.
|
738
|
+
_.mixin = function(obj) {
|
739
|
+
each(_.functions(obj), function(name){
|
740
|
+
addToWrapper(name, _[name] = obj[name]);
|
741
|
+
});
|
742
|
+
};
|
743
|
+
|
744
|
+
// Generate a unique integer id (unique within the entire client session).
|
745
|
+
// Useful for temporary DOM ids.
|
746
|
+
var idCounter = 0;
|
747
|
+
_.uniqueId = function(prefix) {
|
748
|
+
var id = idCounter++;
|
749
|
+
return prefix ? prefix + id : id;
|
750
|
+
};
|
751
|
+
|
752
|
+
// By default, Underscore uses ERB-style template delimiters, change the
|
753
|
+
// following template settings to use alternative delimiters.
|
754
|
+
_.templateSettings = {
|
755
|
+
evaluate : /<%([\s\S]+?)%>/g,
|
756
|
+
interpolate : /<%=([\s\S]+?)%>/g
|
757
|
+
};
|
758
|
+
|
759
|
+
// JavaScript micro-templating, similar to John Resig's implementation.
|
760
|
+
// Underscore templating handles arbitrary delimiters, preserves whitespace,
|
761
|
+
// and correctly escapes quotes within interpolated code.
|
762
|
+
_.template = function(str, data) {
|
763
|
+
var c = _.templateSettings;
|
764
|
+
var tmpl = 'var __p=[],print=function(){__p.push.apply(__p,arguments);};' +
|
765
|
+
'with(obj||{}){__p.push(\'' +
|
766
|
+
str.replace(/\\/g, '\\\\')
|
767
|
+
.replace(/'/g, "\\'")
|
768
|
+
.replace(c.interpolate, function(match, code) {
|
769
|
+
return "'," + code.replace(/\\'/g, "'") + ",'";
|
770
|
+
})
|
771
|
+
.replace(c.evaluate || null, function(match, code) {
|
772
|
+
return "');" + code.replace(/\\'/g, "'")
|
773
|
+
.replace(/[\r\n\t]/g, ' ') + "__p.push('";
|
774
|
+
})
|
775
|
+
.replace(/\r/g, '\\r')
|
776
|
+
.replace(/\n/g, '\\n')
|
777
|
+
.replace(/\t/g, '\\t')
|
778
|
+
+ "');}return __p.join('');";
|
779
|
+
var func = new Function('obj', tmpl);
|
780
|
+
return data ? func(data) : func;
|
781
|
+
};
|
782
|
+
|
783
|
+
// The OOP Wrapper
|
784
|
+
// ---------------
|
785
|
+
|
786
|
+
// If Underscore is called as a function, it returns a wrapped object that
|
787
|
+
// can be used OO-style. This wrapper holds altered versions of all the
|
788
|
+
// underscore functions. Wrapped objects may be chained.
|
789
|
+
var wrapper = function(obj) { this._wrapped = obj; };
|
790
|
+
|
791
|
+
// Expose `wrapper.prototype` as `_.prototype`
|
792
|
+
_.prototype = wrapper.prototype;
|
793
|
+
|
794
|
+
// Helper function to continue chaining intermediate results.
|
795
|
+
var result = function(obj, chain) {
|
796
|
+
return chain ? _(obj).chain() : obj;
|
797
|
+
};
|
798
|
+
|
799
|
+
// A method to easily add functions to the OOP wrapper.
|
800
|
+
var addToWrapper = function(name, func) {
|
801
|
+
wrapper.prototype[name] = function() {
|
802
|
+
var args = slice.call(arguments);
|
803
|
+
unshift.call(args, this._wrapped);
|
804
|
+
return result(func.apply(_, args), this._chain);
|
805
|
+
};
|
806
|
+
};
|
807
|
+
|
808
|
+
// Add all of the Underscore functions to the wrapper object.
|
809
|
+
_.mixin(_);
|
810
|
+
|
811
|
+
// Add all mutator Array functions to the wrapper.
|
812
|
+
each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) {
|
813
|
+
var method = ArrayProto[name];
|
814
|
+
wrapper.prototype[name] = function() {
|
815
|
+
method.apply(this._wrapped, arguments);
|
816
|
+
return result(this._wrapped, this._chain);
|
817
|
+
};
|
818
|
+
});
|
819
|
+
|
820
|
+
// Add all accessor Array functions to the wrapper.
|
821
|
+
each(['concat', 'join', 'slice'], function(name) {
|
822
|
+
var method = ArrayProto[name];
|
823
|
+
wrapper.prototype[name] = function() {
|
824
|
+
return result(method.apply(this._wrapped, arguments), this._chain);
|
825
|
+
};
|
826
|
+
});
|
827
|
+
|
828
|
+
// Start chaining a wrapped Underscore object.
|
829
|
+
wrapper.prototype.chain = function() {
|
830
|
+
this._chain = true;
|
831
|
+
return this;
|
832
|
+
};
|
833
|
+
|
834
|
+
// Extracts the result from a wrapped and chained object.
|
835
|
+
wrapper.prototype.value = function() {
|
836
|
+
return this._wrapped;
|
837
|
+
};
|
838
|
+
|
839
|
+
})();
|