Project

isurvey

0.0
No commit activity in last 3 years
No release in over 3 years
Communicate with the iSurvey SOAP api.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 1.3
>= 0
>= 0
~> 2.0

Runtime

~> 2.0
 Project Readme

Isurvey

Gem for interacting with iSurvey's SOAP api.

Installation

Add this line to your application's Gemfile:

gem 'isurvey'

And then execute:

$ bundle

Or install it yourself as:

$ gem install isurvey

You must set up your company identifier and survey password. Perhaps in config/initializers/isurvey.rb if you are using Rails.

Isurvey::Credentials.company_identifier = [cp]
Isurvey::Credentials.survey_password = [sp]

Before being used, the API must be loaded. This can be done in your application controller or in any other place you see fit.

Isurvey::API.load

Usage

There are questions, answers, and results. Questions are available through Isurvey::Question, answers are available through Isurvey::Answer, and results are available through Isurvey::Result. It may help to mention that results own answers.

To get a list of all questions:

Isurvey::Question.all

To get a list of all answers:

Isurvey::Answer.all

To get a list of all results:

Isurvey::Result.all

All of the properties available through the iSurvey API are also available through the gem. You obtain a property value by calling for it on the appropriate class; for example, Isurvey::Answer.first.screen_id would give you the screen_id of the first Answer.

For questions, the available properties are:

:screen_id, :question_number, :screen_id_next, :show_labels, :selectable_images, :screen_text, :screen_instructions, :theme_class_id, :screen_options, :answers

For answers, the available properties are:

:screen_id, :question_id, :answer_id, :result_answer, :response_date, :question

For results, the available properties are:

:screen_results, :result_id, :result_device_name, :is_demo_survey, :survey_id, :survey_version, :survey_start_date, :survey_end_date, :result_location_accuracy, :result_location_altitude, :result_location_latitude, :result_location_longitude, :result_device_guid, :result_location_status, :is_incomplete, :answers

Any property can also be used to find on either questions or answers. For example:

Isurvey::Question.find_by_screen_id(:id)
Isurvey::Answer.find_by_question_id(:id)
Isurvey::Result.find_by_result_id(:id)

You can query a question for its answers, or an answer for its question.

Isurvey::Question.first.answers
Isurvey::Answer.first.question

You can get answers from a result.

Isurvey::Result.first.answers

You can also find answers by result id.

Isurvey::Question.first.answers_by_result_id(:id)
Isurvey::Answer.by_result_id(:id)

Questions and Answers have shortcut methods that allow you to query for the first or some index:

Isurvey::Question.first
Isurvey::Answer[10]

You can also get direct access to the API.

Get a list of the result ids:

Isurvey::API.result_ids

These are also available, though I advise against using them unless there is a good reason:

Isurvey::API.questions
Isurvey::API.answers

Contributing

  1. Fork it
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create new Pull Request