webgui/lib/WebGUI/Asset/Wobject/Survey.pm

3103 lines
102 KiB
Perl

package WebGUI::Asset::Wobject::Survey;
#-------------------------------------------------------------------
# WebGUI is Copyright 2001-2009 Plain Black Corporation.
#-------------------------------------------------------------------
# Please read the legal notices (docs/legal.txt) and the license
# (docs/license.txt) that came with this distribution before using
# this software.
#-------------------------------------------------------------------
# http://www.plainblack.com info@plainblack.com
#-------------------------------------------------------------------
use strict;
use JSON;
use WebGUI::International;
use WebGUI::Form::File;
use Moose;
use WebGUI::Definition::Asset;
extends 'WebGUI::Asset::Wobject';
define assetName => ['assetName', 'Asset_Survey'];
define icon => 'survey.gif';
define tableName => 'Survey';
property exitURL => (
fieldType => 'text',
default => undef,
tab => 'properties',
label => ['Survey Exit URL', 'Asset_Survey'],
hoverHelp => ['Survey Exit URL help', 'Asset_Survey'],
);
property timeLimit => (
fieldType => 'integer',
default => 0,
tab => 'properties',
label => ['timelimit', 'Asset_Survey'],
hoverHelp => ['timelimit hoverHelp', 'Asset_Survey'],
);
property maxResponsesPerUser => (
fieldType => 'integer',
tab => 'properties',
default => 1,
label => ['Max user responses', 'Asset_Survey'],
hoverHelp => ['Max user responses help', 'Asset_Survey'],
);
property doAfterTimeLimit => (
fieldType => 'selectBox',
default => 'exitUrl',
tab => 'properties',
hoverHelp => ['do after timelimit hoverHelp', 'Asset_Survey'],
label => ['do after timelimit label', 'Asset_Survey'],
options => \&_doAfterTimeLimit_options,
);
sub _doAfterTimeLimit_options {
my $session = shift->session;
my $i18n = WebGUI::International->new($session, 'Asset_Survey');
my $options = {
'exitUrl' => $i18n->get('exit url label'),
'restartSurvey' => $i18n->get('restart survey label'),
};
return $options;
}
property onSurveyEndWorkflowId => (
tab => 'properties',
default => undef,
type => 'WebGUI::Asset::Wobject::Survey',
fieldType => 'workflow',
label => 'Survey End Workflow',
hoverHelp => 'Workflow to run when user completes the Survey',
);
property allowBackBtn => (
fieldType => 'yesNo',
default => 0,
tab => 'properties',
label => ['Allow back button', 'Asset_Survey'],
hoverHelp => ['Allow back button help', 'Asset_Survey'],
);
# Display Tab
property templateId => (
fieldType => 'template',
default => 'PBtmpl0000000000000061',
tab => 'display',
namespace => 'Survey',
label => ['survey template', 'Asset_Survey'],
hoverHelp => ['survey template help', 'Asset_Survey'],
);
property surveySummaryTemplateId => (
tab => 'display',
fieldType => 'template',
label => ['Survey Summary Template', 'Asset_Survey'],
hoverHelp => ['Survey Summary Template help', 'Asset_Survey'],
default => '7F-BuEHi7t9bPi008H8xZQ',
namespace => 'Survey/Summary',
);
property surveyTakeTemplateId => (
tab => 'display',
fieldType => 'template',
label => ['Take Survey Template', 'Asset_Survey'],
hoverHelp => ['Take Survey Template help', 'Asset_Survey'],
default => 'd8jMMMRddSQ7twP4l1ZSIw',
namespace => 'Survey/Take',
);
property surveyQuestionsId => (
tab => 'display',
fieldType => 'template',
label => ['Questions Template', 'Asset_Survey'],
hoverHelp => ['Questions Template help', 'Asset_Survey'],
default => 'CxMpE_UPauZA3p8jdrOABw',
namespace => 'Survey/Take',
);
property surveyEditTemplateId => (
tab => 'display',
fieldType => 'template',
label => ['Survey Edit Template', 'Asset_Survey'],
hoverHelp => ['Survey Edit Template help', 'Asset_Survey'],
default => 'GRUNFctldUgop-qRLuo_DA',
namespace => 'Survey/Edit',
);
property sectionEditTemplateId => (
tab => 'display',
fieldType => 'template',
label => ['Section Edit Template', 'Asset_Survey'],
hoverHelp => ['Section Edit Template help', 'Asset_Survey'],
default => '1oBRscNIcFOI-pETrCOspA',
namespace => 'Survey/Edit',
);
property questionEditTemplateId => (
tab => 'display',
fieldType => 'template',
label => ['Question Edit Template', 'Asset_Survey'],
hoverHelp => ['Question Edit Template help', 'Asset_Survey'],
default => 'wAc4azJViVTpo-2NYOXWvg',
namespace => 'Survey/Edit',
);
property answerEditTemplateId => (
tab => 'display',
fieldType => 'template',
label => ['Answer Edit Template', 'Asset_Survey'],
hoverHelp => ['Answer Edit Template help', 'Asset_Survey'],
default => 'AjhlNO3wZvN5k4i4qioWcg',
namespace => 'Survey/Edit',
);
property feedbackTemplateId => (
tab => 'display',
fieldType => 'template',
default => 'nWNVoMLrMo059mDRmfOp9g',
label => ['Feedback Template', 'Asset_Survey'],
hoverHelp => ['Feedback Template help', 'Asset_Survey'],
namespace => 'Survey/Feedback',
);
property overviewTemplateId => (
tab => 'display',
fieldType => 'template',
default => 'PBtmpl0000000000000063',
label => ['Overview Report Template', 'Asset_Survey'],
hoverHelp => ['Overview Report Template help', 'Asset_Survey'],
namespace => 'Survey/Overview',
);
property gradebookTemplateId => (
tab => 'display',
fieldType => 'template',
label => ['Gradebook Report Template', 'Asset_Survey'],
hoverHelp => ['Gradebook Report Template help', 'Asset_Survey'],
default => 'PBtmpl0000000000000062',
namespace => 'Survey/Gradebook',
);
property testResultsTemplateId => (
tab => 'display',
fieldType => 'template',
label => ['test results template', 'Asset_Survey'],
hoverHelp => ['test results template help', 'Asset_Survey'],
default => 'S3zpVitAmhy58CAioH359Q',
namespace => 'Survey/TestResults',
);
property showProgress => (
fieldType => 'yesNo',
default => 0,
tab => 'display',
label => ['Show user their progress', 'Asset_Survey'],
hoverHelp => ['Show user their progress help', 'Asset_Survey'],
);
property showTimeLimit => (
fieldType => 'yesNo',
default => 0,
tab => 'display',
label => ['Show user their time remaining', 'Asset_Survey'],
hoverHelp => ['Show user their time remaining', 'Asset_Survey'],
);
property quizModeSummary => (
fieldType => 'yesNo',
default => 0,
tab => 'display',
label => ['Quiz mode summaries', 'Asset_Survey'],
hoverHelp => ['Quiz mode summaries help', 'Asset_Survey'],
);
# Security Tab
property groupToEditSurvey => (
fieldType => 'group',
tab => 'security',
default => 4,
label => ['Group to edit survey', 'Asset_Survey'],
hoverHelp => ['Group to edit survey help', 'Asset_Survey'],
);
property groupToTakeSurvey => (
fieldType => 'group',
tab => 'security',
default => 2,
label => ['Group to take survey', 'Asset_Survey'],
hoverHelp => ['Group to take survey help', 'Asset_Survey'],
);
property groupToViewReports => (
fieldType => 'group',
tab => 'security',
default => 4,
label => ['Group to view reports', 'Asset_Survey'],
hoverHelp => ['Group to view reports help', 'Asset_Survey'],
);
# Other
property surveyJSON => (
fieldType => 'text',
default => '',
autoGenerate => 0,
noFormPost => 1,
);
use WebGUI::Asset::Wobject::Survey::SurveyJSON;
use WebGUI::Asset::Wobject::Survey::ResponseJSON;
use WebGUI::Asset::Wobject::Survey::Test;
use WebGUI::Form::Country;
use WebGUI::VersionTag;
use Text::CSV_XS;
use Params::Validate qw(:all);
Params::Validate::validation_options( on_fail => sub { WebGUI::Error::InvalidParam->throw( error => shift ) } );
#----------------------------------------------------------------------------
=head2 getHelpers ( )
Add survey-specific URLs to the asset helpers list
=cut
override getHelpers => sub {
my ( $self ) = @_;
my $helpers = super();
my $i18n = WebGUI::International->new($self->session, "Asset_Survey");
$helpers->{edit_survey} = {
url => $self->getUrl("func=editSurvey"),
label => $i18n->get('edit survey'),
};
$helpers->{take_survey} = {
url => $self->getUrl("func=takeSurvey"),
label => $i18n->get('take survey'),
};
$helpers->{graph} = {
url => $self->getUrl("func=graph"),
label => $i18n->get('visualize'),
};
$helpers->{edit_tests} = {
url => $self->getUrl("func=editTestSuite"),
label => $i18n->get("test suite"),
};
$helpers->{run_tests} = {
url => $self->getUrl("func=runTests"),
label => $i18n->get("run all tests"),
};
$helpers->{run_tests_tap} = {
url => $self->getUrl("func=runTests;format=tap"),
label => $i18n->get("run all tests") . " (TAP)",
};
return $helpers;
};
#-------------------------------------------------------------------
=head2 surveyJSON_update ( )
Convenience method that delegates to L<WebGUI::Asset::Wobject::Survey::SurveyJSON/update>
and automatically calls L<"persistSurveyJSON"> afterwards.
=cut
sub surveyJSON_update {
my $self = shift;
my $ret = $self->getSurveyJSON->update(@_);
$self->persistSurveyJSON();
return $ret;
}
#-------------------------------------------------------------------
=head2 surveyJSON_copy ( )
Convenience method that delegates to L<WebGUI::Asset::Wobject::Survey::SurveyJSON/copy>
and automatically calls L<"persistSurveyJSON"> afterwards.
=cut
sub surveyJSON_copy {
my $self = shift;
my $ret =$self->getSurveyJSON->copy(@_);
$self->persistSurveyJSON();
return $ret;
}
#-------------------------------------------------------------------
=head2 surveyJSON_remove ( )
Convenience method that delegates L<WebGUI::Asset::Wobject::Survey::SurveyJSON/remove>
and automatically calls L<"persistSurveyJSON"> afterwards.
=cut
sub surveyJSON_remove {
my $self = shift;
my $ret = $self->getSurveyJSON->remove(@_);
$self->persistSurveyJSON();
return $ret;
}
#-------------------------------------------------------------------
=head2 surveyJSON_newObject ( )
Convenience method that delegates L<WebGUI::Asset::Wobject::Survey::SurveyJSON/newObject>
and automatically calls L<"persistSurveyJSON"> afterwards.
=cut
sub surveyJSON_newObject {
my $self = shift;
my $ret = $self->getSurveyJSON->newObject(@_);
$self->persistSurveyJSON();
return $ret;
}
#-------------------------------------------------------------------
=head2 recordResponses ( )
Convenience method that delegates to L<WebGUI::Asset::Wobject::Survey::ResponseJSON/recordResponses>
and automatically calls L<"persistSurveyJSON"> afterwards.
=cut
sub recordResponses {
my $self = shift;
my $ret = $self->responseJSON->recordResponses(@_);
$self->persistResponseJSON();
return $ret;
}
#-------------------------------------------------------------------
=head2 getSurveyJSON ( [json] )
Lazy-loading mutator for the L<WebGUI::Asset::Wobject::Survey::SurveyJSON> property.
It is stored in the database as a serialized JSON-encoded string in the surveyJSON db field.
If you access and change surveyJSON you will need to manually call L<"persistSurveyJSON">
to have your changes persisted to the database.
=head3 json (optional)
A serialized JSON-encoded string representing a SurveyJSON object. If provided,
will be used to instantiate the SurveyJSON instance rather than querying the database.
=cut
sub getSurveyJSON {
my $self = shift;
my ($json) = validate_pos(@_, { type => SCALAR, optional => 1 });
if (!$self->{_surveyJSON} || $json) {
# See if we need to load surveyJSON from the database
if ( !defined $json ) {
$json = $self->surveyJSON;
}
# Instantiate the SurveyJSON instance, and store it
$self->{_surveyJSON} = WebGUI::Asset::Wobject::Survey::SurveyJSON->new( $self->session, $json );
}
return $self->{_surveyJSON};
}
#-------------------------------------------------------------------
=head2 responseJSON ( [json], [responseId] )
Lazy-loading mutator for the L<WebGUI::Asset::Wobject::Survey::ResponseJSON> property.
It is stored in the database as a serialized JSON-encoded string in the responseJSON db field.
If you access and change responseJSON you will need to manually call L<"persistResponseJSON">
to have your changes persisted to the database.
=head3 json (optional)
A serialized JSON-encoded string representing a ResponseJSON object. If provided,
will be used to instantiate the ResponseJSON instance rather than querying the database.
=head3 responseId (optional)
A responseId to use when retrieving ResponseJSON from the database (defaults to the value returned by L<"responseId">)
=cut
sub responseJSON {
my $self = shift;
my ($json, $responseId) = validate_pos(@_, { type => SCALAR | UNDEF, optional => 1 }, { type => SCALAR, optional => 1});
# Mutate if lazy-loading, or json/responseId provided
if (!$self->{_responseJSON} || $json || $responseId) {
# Either user-provided, or loaded from L<responseId>
$responseId ||= $self->responseId;
# If json undefined, load responseJSON from the db
if (!defined $json) {
$json = $self->session->db->quickScalar( 'select responseJSON from Survey_response where Survey_responseId = ?', [ $responseId ] );
}
# Instantiate the ResponseJSON instance, and store it
$self->{_responseJSON} = WebGUI::Asset::Wobject::Survey::ResponseJSON->new( $self->getSurveyJSON, $json );
}
return $self->{_responseJSON};
}
=head2 getGraphFormats
Returns the list of supported Graph formats
=cut
sub getGraphFormats {
return qw(text ps gif jpeg png svg svgz plain);
}
=head2 getGraphLayouts
Returns the list of supported Graph layouts
=cut
sub getGraphLayouts {
return qw(dot neato twopi circo fdp);
}
#-------------------------------------------------------------------
=head2 graph ( )
Generates a graph visualisation to survey.svg using GraphViz.
=cut
sub graph {
my $self = shift;
my %args = validate(@_, { format => 1, layout => 1 });
my $session = $self->session;
eval { require GraphViz };
if ($@) {
return;
}
my $format = $args{format};
if (! grep {$_ eq $format} $self->getGraphFormats) {
$session->log->warn("Invalid format: $format");
return;
}
my $layout = $args{layout};
if (! grep {$_ eq $layout} $self->getGraphLayouts) {
$session->log->warn("Invalid layout: $layout");
return;
}
my $filename = "survey.$format";
my $storage = WebGUI::Storage->createTemp($session);
$storage->addFileFromScalar($filename);
my $path = $storage->getPath($filename);
my $FONTSIZE = 10;
my %COLOR = (
bg => 'white',
start => 'CornflowerBlue',
start_fill => 'Green',
section => 'CornflowerBlue',
section_fill => 'LightYellow',
question => 'CornflowerBlue',
question_fill => 'LightBlue',
start_edge => 'Green',
fall_through_edge => 'CornflowerBlue',
goto_edge => 'DarkOrange',
goto_expression_edge => 'DarkViolet',
);
# Create the GraphViz object used to generate the image
# N.B. dot gives vertical layout, neato gives purdy circular
my $g = GraphViz->new( bgcolor => $COLOR{bg}, fontsize => $FONTSIZE, layout => $layout); # overlap => 'orthoyx'
$g->add_node(
'Start',
label => 'Start',
fontsize => $FONTSIZE,
shape => 'ellipse',
style => 'filled',
color => $COLOR{start},
fillcolor => $COLOR{start_fill},
);
my $very_first = 1;
my $add_goto_edge = sub {
my ( $obj, $id, $taillabel ) = @_;
return unless $obj;
if ( my $goto = $obj->{goto} ) {
$g->add_edge(
$id => $goto,
taillabel => $taillabel || 'Jump To',
labelfontcolor => $COLOR{goto_edge},
labelfontsize => $FONTSIZE,
color => $COLOR{goto_edge},
);
}
};
my $add_goto_expression_edges = sub {
my ( $obj, $id, $taillabel ) = @_;
return unless $obj;
return unless $obj->{gotoExpression};
my $rj = 'WebGUI::Asset::Wobject::Survey::ResponseJSON';
# for my $gotoExpression ( split /\n/, $obj->{gotoExpression} ) {
# if ( my $processed = $rj->parseGotoExpression( $session, $gotoExpression ) ) {
# $g->add_edge(
# $id => $processed->{target},
# taillabel => $taillabel ? "$taillabel: $processed->{expression}" : $processed->{expression},
# labelfontcolor => $COLOR{goto_expression_edge},
# labelfontsize => $FONTSIZE,
# color => $COLOR{goto_expression_edge},
# );
# }
# }
};
my @fall_through;
my $sNum = 0;
foreach my $s ( @{ $self->getSurveyJSON->sections } ) {
$sNum++;
my $s_id = $s->{variable} || "S$sNum";
$g->add_node(
$s_id,
label => "$s_id\n($s->{questionsPerPage} questions per page)",
fontsize => $FONTSIZE,
shape => 'ellipse',
style => 'filled',
color => $COLOR{section},
fillcolor => $COLOR{section_fill},
);
# See if this is the very first node
if ($very_first) {
$g->add_edge(
'Start' => $s_id,
taillabel => 'Begin Survey',
labelfontcolor => $COLOR{start_edge},
labelfontsize => $FONTSIZE,
color => $COLOR{start_edge},
);
$very_first = 0;
}
# See if there are any fall_throughs waiting
# if so, "next" == this section
while ( my $f = pop @fall_through ) {
$g->add_edge(
$f->{from} => $s_id,
taillabel => $f->{taillabel},
labelfontcolor => $COLOR{fall_through_edge},
labelfontsize => $FONTSIZE,
color => $COLOR{fall_through_edge},
);
}
# Add section-level goto and gotoExpression edges
$add_goto_edge->( $s, $s_id );
$add_goto_expression_edges->( $s, $s_id );
my $qNum = 0;
foreach my $q ( @{ $s->{questions} } ) {
$qNum++;
my $q_id = $q->{variable} || "S$sNum-Q$qNum";
# Link Section to first Question
if ( $qNum == 1 ) {
$g->add_edge( $s_id => $q_id, style => 'dotted' );
}
# Add Question node
$g->add_node(
$q_id,
label => $q->{required} ? "$q_id *" : $q_id,
fontsize => $FONTSIZE,
shape => 'ellipse',
style => 'filled',
color => $COLOR{question},
fillcolor => $COLOR{question_fill},
);
# See if there are any fall_throughs waiting
# if so, "next" == this question
while ( my $f = pop @fall_through ) {
$g->add_edge(
$f->{from} => $q_id,
taillabel => $f->{taillabel},
labelfontcolor => $COLOR{fall_through_edge},
labelfontsize => $FONTSIZE,
color => $COLOR{fall_through_edge},
);
}
# Add question-level goto and gotoExpression edges
$add_goto_edge->( $q, $q_id );
$add_goto_expression_edges->( $q, $q_id );
my $aNum = 0;
foreach my $a ( @{ $q->{answers} } ) {
$aNum++;
my $a_id = $a->{text} || "S$sNum-Q$qNum-A$aNum";
$add_goto_expression_edges->( $a, $q_id, $a_id );
if ( $a->{goto} ) {
$add_goto_edge->( $a, $q_id, $a_id );
}
else {
# Link this question to next question with Answer as taillabel
push @fall_through,
{
from => $q_id,
taillabel => $a_id,
};
}
}
}
}
# Render the image to a file
my $method = "as_$format";
$g->$method($path);
if (wantarray) {
return ( $storage, $filename);
} else {
return $storage->getUrl($filename);
}
}
#-------------------------------------------------------------------
=head2 www_editSurvey ( )
Loads the initial edit survey page. All other edit actions are ajax calls from this page.
=cut
sub www_editSurvey {
my $self = shift;
return $self->session->privilege->insufficient()
if !$self->session->user->isInGroup( $self->groupToEditSurvey );
return $self->session->privilege->locked() unless $self->canEditIfLocked;
return $self->processTemplate( {}, $self->surveyEditTemplateId );
}
#-------------------------------------------------------------------
=head2 www_graph ( )
Visualize the Survey in the requested format and layout
=cut
sub www_graph {
my $self = shift;
my $session = $self->session;
return $self->session->privilege->insufficient()
if !$self->session->user->isInGroup( $self->groupToEditSurvey );
my $i18n = WebGUI::International->new($session, "Asset_Survey");
eval { require GraphViz };
if ($@) {
return '<h1>' . $i18n->get('survey visualization') . '</h1>Survey Visualization requires the GraphViz module';
}
my $format = $self->session->form->param('format');
my $layout = $self->session->form->param('layout');
my $f = WebGUI::FormBuilder->new($session, action => $self->getUrl);
$f->addField( "hidden",
name=>'func',
value=>'graph'
);
$f->addField( "selectBox",
name => 'format',
label => $i18n->get('visualization format'),
hoverHelp => $i18n->get('visualization format help'),
options => { map { $_ => $_ } $self->getGraphFormats },
defaultValue => [$format],
sortByValue => 1,
);
$f->addField( "selectBox",
name => 'layout',
label => $i18n->get('visualization layout algorithm'),
hoverHelp => $i18n->get('visualization layout algorithm help'),
options => { map { $_ => $_ } $self->getGraphLayouts },
defaultValue => [$layout],
sortByValue => 1,
);
$f->addField( "submit",
defaultValue => $i18n->get('generate'),
);
my $output;
if ($format && $layout) {
if (my $url = $self->graph( { format => $format, layout => $layout } )) {
$output .= "<p>" . $i18n->get('visualization success') . qq{ <a href="$url">survey.$format</a></p>};
}
}
return '<h1>' . $i18n->get('survey visualization') . '</h1>' . $f->toHtml . $output;
}
=head2 hasResponses
Returns true if this Survey instance revision has any responses (started, finished or otherwise)
associated with it
=cut
sub hasResponses {
my $self = shift;
my $session = $self->session;
return $self->session->db->quickScalar(
'select count(*) from Survey_response where assetId = ? and revisionDate = ?',
[ $self->getId, $self->revisionDate ] ) > 0;
}
#-------------------------------------------------------------------
=head2 hasTimedOut ( $limit )
Checks to see whether this survey has timed out, based on the internally stored starting
time, and the suppied $limit value.
=head3 $limit
How long the user has to take the survey, in minutes. Defaults to the value of C<timeLimit>
=cut
sub hasTimedOut {
my $self = shift;
my $limit = shift;
$limit = $self->timeLimit if not defined $limit;
return $limit > 0 && $self->startDate + $limit * 60 < time;
}
#-------------------------------------------------------------------
=head2 startDate ([ $startDate ])
Mutator for the Response start date, which is stored in a column of
the Survey_response table.
=head3 $startDate (optional)
If defined, sets the starting time to $startDate.
=cut
sub startDate {
my $self = shift;
my ($startDate) = validate_pos(@_, {type => SCALAR, optional => 1});
if ( defined $startDate ) {
$self->session->db->write('update Survey_response set startDate = ? where Survey_responseId = ?', [$startDate, $self->responseId]);
$self->{_startDate} = $startDate;
}
if (!$self->{_startDate}) {
$self->{_startDate} = $self->session->db->quickScalar('select startDate from Survey_response where Survey_responseId = ?', [$self->responseId]);
}
return $self->{_startDate};
}
#-------------------------------------------------------------------
=head2 submitObjectEdit ( $params )
Called by L<www_submitObjectEdit> when an edit is submitted to a survey object.
A new revision of this Survey object will be created automatically if any responses exist for the current
revision (completed or in-progress). This ensures that the revision bound to a response never changes once
a response has been started.
=head3 params
The updated params of the object. If the special hash keys "delete", "copy", "removetype" or "addtype" are present,
these special actions will be carried out by delegating to e.g. L<deleteObject>, L<copyObject>, etc..
=cut
sub submitObjectEdit {
my $self = shift;
my $params = shift || {};
my $session = $self->session;
# Id is made up of at most: sectionIndex-questionIndex-answerIndex
my @address = split /-/, $params->{id};
# Get a reference to the Survey instance that we want to perform updates on
my $survey = $self;
# We will create a new revision if any responses exist for the current revision
if ($self->hasResponses) {
$self->session->log->debug( "Creating a new revision, responses exist for the current revision: "
. $self->revisionDate );
# New revision should be created and then committed automatically
my $newVersionTag = WebGUI::VersionTag->create($session, { workflowId => 'pbworkflow00000000003', });
# Create the new revision
$survey = $self->addRevision({
tagId => $newVersionTag->getId,
status => "pending",
});
$newVersionTag->commit();
$survey = $survey->cloneFromDb;
}
# See if any special actions were requested..
if ( $params->{delete} ) {
return $survey->deleteObject( \@address );
}
elsif ( $params->{copy} ) {
return $survey->copyObject( \@address );
}
elsif ( $params->{removetype} ) {
return $survey->removeType( \@address );
}
elsif ( $params->{addtype} ) {
return $survey->addType( $params->{addtype}, \@address );
}
# Update the addressed object (and have it automatically persisted)
$survey->surveyJSON_update( \@address, $params );
# Return the updated Survey structure
return $survey->www_loadSurvey( { address => \@address } );
}
#-------------------------------------------------------------------
=head2 www_submitObjectEdit ( )
This is called when an edit is submitted to a survey object. The POST should contain the id and updated params
of the object, and also if the object is being deleted or copied.
In general, the id contains a section index, question index, and answer index, separated by dashes.
See L<WebGUI::Asset::Wobject::Survey::ResponseJSON/sectionIndex>.
=cut
sub www_submitObjectEdit {
my $self = shift;
return $self->session->privilege->insufficient()
unless $self->session->user->isInGroup( $self->groupToEditSurvey );
return $self->session->privilege->locked()
unless $self->canEditIfLocked;
return $self->submitObjectEdit( $self->session->form->paramsHashRef );
}
#-------------------------------------------------------------------
=head2 www_jumpTo
Allow survey editors to jump to a particular section or question in a
Survey by tricking Survey into thinking they've completed the survey up to that
point. This is useful for user-testing large Survey instances where you don't want
to waste your time clicking through all of the initial questions to get to the one
you want to look at.
Note that calling this method will delete any in-progress survey responses for the
current user (although only survey builders can call this method so that shouldn't be
a problem).
=cut
sub www_jumpTo {
my $self = shift;
return $self->session->privilege->insufficient()
if !$self->session->user->isInGroup( $self->groupToEditSurvey );
my $id = $self->session->form->param('id');
# When the Edit Survey screen first loads the first section will have an id of 'undefined'
# In this case, treat it the same as '0'
$id = $id eq 'undefined' ? 0 : $id;
$self->session->log->debug("www_jumpTo: $id");
# Remove any in-progress responses for current user
$self->session->db->write( 'delete from Survey_response where assetId = ? and userId = ? and isComplete = 0',
[ $self->getId, $self->session->user->userId() ] );
# Break the $id down into sIndex and qIndex
my ($sIndex, $qIndex) = split /-/, $id;
# Go through items in surveyOrder until we find the item corresponding to $id
my $currentIndex = 0;
for my $address (@{ $self->responseJSON->surveyOrder }) {
my ($order_sIndex, $order_qIndex) = @{$address}[0,1];
# For starters, check that we're on the right Section
if ($sIndex ne $order_sIndex) {
# Bad luck, try the next one..
$currentIndex++;
next;
}
# For a match, either qIndex must be empty (target is a Section), or
# the qIndices must match
if (!defined $qIndex || $qIndex eq $order_qIndex) {
# Set the nextResponse to be the index we're up to
$self->session->log->debug("Found id: $id at index: $currentIndex in surveyOrder");
$self->responseJSON->nextResponse( $currentIndex );
$self->persistResponseJSON(); # Manually persist ResponseJSON to the database
return $self->www_takeSurvey;
}
# Keep looking..
$currentIndex++;
}
# Search failed, so return the Edit Survey page instead.
$self->session->log->debug("Unable to find id: $id");
return $self->www_editSurvey;
}
#-------------------------------------------------------------------
=head2 removeType ( $address )
Remove the requested questionType, and then reloads the Survey.
=head3 $address
Specifies which questionType to delete.
=cut
sub removeType{
my $self = shift;
my $address = shift;
$self->getSurveyJSON->removeType($address);
$self->persistSurveyJSON();
return $self->www_loadSurvey( { address => $address } );
}
#-------------------------------------------------------------------
=head2 addType ( $name, $address )
Adds a new questionType, and then reloads the Survey.
=head3 $name
The name of the new question type.
=head3 $address
Specifies where to add the question.
=cut
sub addType{
my $self = shift;
my $name = shift;
my $address = shift;
$self->getSurveyJSON->addType($name,$address);
$self->persistSurveyJSON();
return $self->www_loadSurvey( { address => $address } );
}
#-------------------------------------------------------------------
=head2 copyObject ( )
Takes the address of a survey object and creates a copy. The copy is placed at the end of this object's parent's list.
Returns the address to the new object.
=head3 $address
See L<WebGUI::Asset::Wobject::Survey::SurveyJSON/Address Parameter>
=cut
sub copyObject {
my ( $self, $address ) = @_;
# Each object checks the ref and then either updates or passes it to the correct child.
# New objects will have an index of -1.
$address = $self->surveyJSON_copy($address);
# The parent address of the deleted object is returned.
return $self->www_loadSurvey( { address => $address } );
}
#-------------------------------------------------------------------
=head2 deleteObject( $address )
Deletes the object matching the passed in address.
Returns the address to the parent object, or the very first section.
=head3 $address
See L<WebGUI::Asset::Wobject::Survey::SurveyJSON/Address Parameter>
=cut
sub deleteObject {
my ( $self, $address ) = @_;
$self->session->log->debug("Deleting object: " . join '-', @$address);
# Each object checks the ref and then either updates or passes it to the correct child.
# New objects will have an index of -1.
my $message = $self->surveyJSON_remove($address);
# The parent address of the deleted object is returned.
if ( @{$address} == 1 ) {
$address->[0] = 0;
}
else {
pop @{$address};
}
return $self->www_loadSurvey( { address => $address, message => $message } );
}
#-------------------------------------------------------------------
=head2 www_newObject()
Creates a new object from a POST param containing the new objects id concatenated on hyphens.
=cut
sub www_newObject {
my $self = shift;
return $self->session->privilege->insufficient()
if !$self->session->user->isInGroup( $self->groupToEditSurvey );
my $ref;
my $ids = $self->session->form->process('data');
my @inAddress = split /-/, $ids;
# Don't save after this as the new object should not stay in the survey
my $address = $self->getSurveyJSON->newObject( \@inAddress );
# The new temp object has an address of NEW, which means it is not a real final address.
return $self->www_loadSurvey( { address => $address, message => undef } );
}
#-------------------------------------------------------------------
=head2 www_dragDrop
Takes two ids from a form POST.
The "target" is the object being moved, the "before" is the object directly preceding the "target".
=cut
sub www_dragDrop {
my $self = shift;
return $self->session->privilege->insufficient()
if !$self->session->user->isInGroup( $self->groupToEditSurvey );
my $p = from_json( $self->session->form->process('data') );
my @tid = split /-/, $p->{target}->{id};
my @bid = split /-/, $p->{before}->{id};
my $target = $self->getSurveyJSON->getObject( \@tid );
$self->getSurveyJSON->remove( \@tid, 1 );
my $address = [0];
if ( @tid == 1 ) {
#sections can only be inserted after another section so chop off the question and answer portion of
$#bid = 0;
$bid[0] = -1 if ( !defined $bid[0] );
$self->session->log->debug("Moving section $bid[0] to $tid[0]");
#If target is being moved down, then before has just moved up do to the target being deleted
$bid[0]-- if($tid[0] < $bid[0]);
$address = $self->getSurveyJSON->insertObject( $target, [ $bid[0] ] );
}
elsif ( @tid == 2 ) { #questions can be moved to any section, but a pushed to the end of a new section.
if ( $bid[0] !~ /\d/ ) {
$bid[0] = $tid[0];
$bid[1] = $tid[1];
}
elsif ( @bid == 1 ) { #moved to a new section or head of current section
if ( $bid[0] !~ /\d/ ) {
$bid[0] = $tid[0];
$bid[1] = $tid[1];
}
if ( $bid[0] == $tid[0] ) {
#moved to top of current section
$bid[1] = -1;
}
else {
#else move to the end of the selected section
$bid[1] = $#{ $self->getSurveyJSON->questions( [ $bid[0] ] ) };
}
} ## end elsif ( @bid == 1 )
else{ #Moved within the same section
$bid[1]-- if($tid[1] < $bid[1]);
}
$address = $self->getSurveyJSON->insertObject( $target, [ $bid[0], $bid[1] ] );
} ## end elsif ( @tid == 2 )
elsif ( @tid == 3 ) { #answers can only be rearranged in the same question
if ( @bid == 2 and $bid[1] == $tid[1] ) {#moved to the top of the question
$bid[2] = -1;
$address = $self->getSurveyJSON->insertObject( $target, [ $bid[0], $bid[1], $bid[2] ] );
}
elsif ( @bid == 3 ) {
#If target is being moved down, then before has just moved up do to the target being deleted
$bid[2]-- if($tid[2] < $bid[2]);
$address = $self->getSurveyJSON->insertObject( $target, [ $bid[0], $bid[1], $bid[2] ] );
}
else {
#else put it back where it was
$address = $self->getSurveyJSON->insertObject( $target, \@tid );
}
}
# Manually persist SuveryJSON since we have directly modified it
$self->persistSurveyJSON();
return $self->www_loadSurvey( { address => $address } );
}
#-------------------------------------------------------------------
=head2 www_loadSurvey( [options] )
For loading the survey during editing.
Returns the survey meta list and the html data for editing a particular survey object.
=head3 options
Can either be a hashref containing the address to be edited. And/or a the specific variables to be edited.
If undef, the address is pulled form the form POST.
=cut
sub www_loadSurvey {
my ( $self, $options ) = @_;
my $editflag = 1;
my $address = defined $options->{address} ? $options->{address} : undef;
if ( !defined $address ) {
if ( my $inAddress = $self->session->form->process('data') ) {
if ( $inAddress eq q{-} ) {
$editflag = 0;
$address = [0];
}
else {
$address = [ split /-/, $inAddress ];
}
}
else {
$address = [0];
}
}
my $var
= defined $options->{var}
? $options->{var}
: $self->getSurveyJSON->getEditVars($address);
my $editHtml;
if ( $var->{type} eq 'section' ) {
$editHtml = $self->processTemplate( $var, $self->sectionEditTemplateId );
}
elsif ( $var->{type} eq 'question' ) {
$editHtml = $self->processTemplate( $var, $self->questionEditTemplateId );
}
elsif ( $var->{type} eq 'answer' ) {
$editHtml = $self->processTemplate( $var, $self->answerEditTemplateId );
}
WebGUI::Macro::process($self->session, \$editHtml);
# Generate the list of valid goto targets
my $gotoTargets = $self->getSurveyJSON->getGotoTargets;
my %buttons;
$buttons{question} = $address->[0];
if ( @{$address} == 2 or @{$address} == 3 ) {
$buttons{answer} = "$address->[0]-$address->[1]";
}
my $data = $self->getSurveyJSON->getDragDropList($address);
my $html;
my ( $scount, $qcount, $acount ) = ( -1, -1, -1 );
my $lastType;
my %lastId;
my @ids;
my ( $s, $q, $a ) = ( 0, 0, 0 ); #bools on if a button has already been created
foreach (@{$data}) {
if ( $_->{type} eq 'section' ) {
$lastId{section} = ++$scount;
if ( $lastType eq 'answer' ) {
$a = 1;
}
elsif ( $lastType eq 'question' ) {
$q = 1;
}
$html .= "<li id='$scount' class='section'>S" . ( $scount + 1 ) . ": $_->{text}<\/li>\n";
push( @ids, $scount );
}
elsif ( $_->{type} eq 'question' ) {
$lastId{question} = ++$qcount;
if ( $lastType eq 'answer' ) {
$a = 1;
}
$html .= "<li id='$scount-$qcount' class='question'>Q" . ( $qcount + 1 ) . ": $_->{text}<\/li>\n";
push @ids, "$scount-$qcount";
$lastType = 'question';
$acount = -1;
}
elsif ( $_->{type} eq 'answer' ) {
$lastId{answer} = ++$acount;
$html
.= "<li id='$scount-$qcount-$acount' class='answer'>A"
. ( $acount + 1 )
. ": $_->{text}<\/li>\n";
push @ids, "$scount-$qcount-$acount";
$lastType = 'answer';
}
}
$html = "<ul class='draglist'>$html</ul>";
my $warnings = $self->getSurveyJSON->validateSurvey();
my $return = {
address => $address, # the address of the focused object
buttons => \%buttons, # the data to create the Add buttons
edithtml => $editflag ? $editHtml : q{}, # the html edit the object
ddhtml => $html, # the html to create the draggable html divs
ids => \@ids, # list of all ids passed in which are draggable (for adding events)
type => $var->{type}, # the object type
gotoTargets => $gotoTargets,
warnings => $warnings #List of warnings to display to the user
};
$self->session->response->content_type('application/json');
return to_json($return);
}
#-------------------------------------------------------------------
=head2 prepareView ( )
See WebGUI::Asset::prepareView() for details.
=cut
sub prepareView {
my $self = shift;
$self->SUPER::prepareView();
my $templateId = $self->templateId;
if ( $self->session->form->process('overrideTemplateId') ne q{} ) {
$templateId = $self->session->form->process('overrideTemplateId');
}
my $template = WebGUI::Asset::Template->newById( $self->session, $templateId );
if (!$template) {
WebGUI::Error::ObjectNotFound::Template->throw(
error => qq{Template not found},
templateId => $templateId,
assetId => $self->getId,
);
}
$template->prepare;
$self->{_viewTemplate} = $template;
return;
}
#-------------------------------------------------------------------
=head2 purge
Completely remove from WebGUI.
=cut
override purge => sub {
my $self = shift;
$self->session->db->write( 'delete from Survey_response where assetId = ?', [ $self->getId() ] );
$self->session->db->write( 'delete from Survey_tempReport where assetId = ?', [ $self->getId() ] );
$self->session->db->write( 'delete from Survey where assetId = ?', [ $self->getId() ] );
return super();
};
#-------------------------------------------------------------------
=head2 view ( )
view defines all template variables, processes the template and
returns the output.
=cut
sub view {
my $self = shift;
my $var = $self->getMenuVars;
my $responseDetails = $self->getResponseDetails || {};
# Add lastResponse template vars
for my $tv qw(endDate complete restart timeout timeoutRestart) {
$var->{"lastResponse\u$tv"} = $responseDetails->{$tv};
}
$var->{lastResponseFeedback} = $responseDetails->{templateText};
$var->{maxResponsesSubmitted} = !$self->canTakeSurvey();
return $self->processTemplate( $var, undef, $self->{_viewTemplate} );
}
#-------------------------------------------------------------------
=head2 getMenuVars ( )
Returns the top menu template variables as a hashref.
=cut
sub getMenuVars {
my $self = shift;
return {
edit_survey_url => $self->getUrl('func=editSurvey'),
take_survey_url => $self->getUrl('func=takeSurvey'),
delete_responses_url => $self->getUrl('func=deleteResponses'),
view_simple_results_url => $self->getUrl('func=exportSimpleResults'),
view_transposed_results_url => $self->getUrl('func=exportTransposedResults'),
view_statistical_overview_url => $self->getUrl('func=viewStatisticalOverview'),
view_grade_book_url => $self->getUrl('func=viewGradeBook'),
user_canTakeSurvey => $self->canTakeSurvey,
user_canViewReports => $self->session->user->isInGroup( $self->groupToViewReports ),
user_canEditSurvey => $self->session->user->isInGroup( $self->groupToEditSurvey ),
};
}
#-------------------------------------------------------------------
=head2 getResponseDetails ( [$options] )
Looks up details about a given response.
=head3 options
=head4 responseId
A specific responseId to use. If none given, the most recent completed response is used.
=head4 userId
A specific userId to use. Defaults to the current user
=head4 templateId
A template to use. Defaults to this Survey's feedbackTemplateId
=head4 isComplete
A value of isComplete to filter against (defaults to isComplete > 0)
=cut
sub getResponseDetails {
my $self = shift;
my %opts = validate(@_, { userId => 0, responseId => 0, templateId => 0, isComplete => 0} );
my $responseId = $opts{responseId};
my $userId = $opts{userId} || $self->session->user->userId;
my $templateId = $opts{templateId} || $self->feedbackTemplateId || 'nWNVoMLrMo059mDRmfOp9g';
my $isComplete = $opts{isComplete};
# By default, get most recent completed response with any complete code (e.g. isComplete > 0)
# This includes abnormal finishes such as timeouts and restarts
my $isCompleteClause = defined $isComplete ? "isComplete = $isComplete" : 'isComplete > 0';
if (!$responseId) {
($responseId, my $revisionDate)
= $self->session->db->quickArray(
"select Survey_responseId, revisionDate from Survey_response where userId = ? and assetId = ? and $isCompleteClause order by endDate desc limit 1",
[ $userId, $self->getId ]);
if ($responseId && $revisionDate != $self->revisionDate) {
$self->session->log->debug("Revision Date $revisionDate for retrieved responseId $responseId does not match instantiated object "
. $self->getId . " revision date " . $self->revisionDate . ". getResponseDetails could possibly do weird things.");
}
}
if (!$responseId) {
$self->session->log->debug("ResponseId not found");
return;
}
my ( $completeCode, $endDate, $rJSON, $ruserId, $rusername ) = $self->session->db->quickArray(
'select isComplete, endDate, responseJSON, userId, username from Survey_response where Survey_responseId = ?',
[$responseId]
);
my $endDateEpoch = $endDate;
$endDate = $endDate && WebGUI::DateTime->new( $self->session, $endDate )->toUserTimeZone;
# Process the feedback text
my $feedback;
my $tags = {};
if ($rJSON) {
$rJSON = from_json($rJSON) || {};
# All tags become template vars
$tags = $rJSON->{tags} || {};
$tags->{complete} = $completeCode == 1;
$tags->{restart} = $completeCode == 2;
$tags->{timeout} = $completeCode == 3;
$tags->{timeoutRestart} = $completeCode == 4;
$tags->{endDate} = $endDate;
$tags->{endDateEpoch} = $endDateEpoch;
$tags->{userId} = $ruserId;
$tags->{username} = $rusername;
$tags->{responseId} = $responseId;
}
return {
templateVars => $tags,
templateText => $self->processTemplate( $tags, $templateId ),
completeCode => $completeCode,
endDate => $endDate,
endDateEpoch => $endDateEpoch,
userId => $ruserId,
username => $rusername,
complete => $tags->{complete},
restart => $tags->{restart},
timeout => $tags->{timeout},
timeoutRestart => $tags->{timeoutRestart},
responseId => $tags->{responseId},
};
}
#-------------------------------------------------------------------
=head2 newByResponseId ( responseId )
Class method. Instantiates a Survey instance from the given L<"responseId">, and loads the
user response into the Survey instance. The Survey object returned will be the revision
bound to the response.
=head3 responseId
An existing L<"responseId">. Will be loaded even if the response isComplete.
=cut
sub newByResponseId {
my $class = shift;
my ($session, $responseId) = validate_pos(@_, {isa => 'WebGUI::Session'}, { type => SCALAR });
my ($assetId, $revisionDate, $userId)
= $session->db->quickArray('select assetId, revisionDate, userId from Survey_response where Survey_responseId = ?', [$responseId]);
if (!$assetId) {
$session->log->warn("ResponseId not bound to valid assetId: $responseId");
return;
}
if (!$userId) {
$session->log->warn("ResponseId not bound to valid userId: $responseId");
return;
}
if (my $survey = $class->newById($session, $assetId, $revisionDate)) {
# Set the responseId manually rather than calling $self->responseId so that we
# can load a response regardless of whether it's marked isComplete
$survey->{responseId} = $responseId;
return $survey;
} else {
$session->log->warn("Unable to instantiate Asset for assetId: $assetId");
return;
}
}
#-------------------------------------------------------------------
=head2 www_takeSurvey
The take survey page does very little. It is a simple shell (controlled by surveyTakeTemplateId).
Survey questions are loaded asynchronously via javascript calls to L<"www_loadQuestions">.
=cut
sub www_takeSurvey {
my $self = shift;
if ( !$self->canTakeSurvey() ) {
$self->session->log->debug('canTakeSurvey false');
return;
}
# The template needs to know what Survey revisionDate is bound to the response, so that
# it can ask for questions for the appropriate Survey revision
# We don't mind if the revisionDate for the retrieved response doesn't match the revisionDate
# for this Survey object, because this www_ method simply returns the shell that is used to
# retrieve the actual Survey data (using the appropriate revisionDate url param)
my $responseId = $self->responseId({ignoreRevisionDate => 1});
my $revision = $self->session->db->quickScalar("select revisionDate from Survey_response where Survey_responseId = ?", [ $responseId ]);
my $out = $self->processTemplate( { revision => $revision }, $self->surveyTakeTemplateId );
return $self->processStyle($out);
}
#-------------------------------------------------------------------
=head2 www_deleteResponses
Deletes all responses from this survey instance.
=cut
sub www_deleteResponses {
my $self = shift;
return $self->session->privilege->insufficient()
if !$self->session->user->isInGroup( $self->groupToEditSurvey );
$self->session->db->write( 'delete from Survey_response where assetId = ?', [ $self->getId ] );
return;
}
#-------------------------------------------------------------------
=head2 www_submitQuestions
Handles questions submitted by the survey taker, adding them to their response.
=cut
sub www_submitQuestions {
my $self = shift;
if ( !$self->canTakeSurvey() ) {
$self->session->log->debug('canTakeSurvey false, surveyEnd');
return $self->surveyEnd();
}
my $responseId = $self->responseId();
if ( !$responseId ) {
$self->session->log->debug('No response id, surveyEnd');
return $self->surveyEnd();
}
my $responses = $self->session->form->paramsHashRef();
delete $responses->{func};
return $self->submitQuestions($responses);
}
#-------------------------------------------------------------------
=head2 submitQuestions
Handles questions submitted by the survey taker, adding them to their response.
=cut
sub submitQuestions {
my $self = shift;
my $responses = shift;
my $result = $self->recordResponses( $responses );
# check for special actions
if ($result && ref $result eq 'HASH') {
if ( my $url = $result->{terminal} ) {
$self->session->log->debug('Terminal, surveyEnd');
return $self->surveyEnd( { exitUrl => $url } );
} elsif ( exists $result->{exitUrl} ) {
$self->session->log->debug('exitUrl triggered, surveyEnd');
return $self->surveyEnd( { exitUrl => $result->{exitUrl} });
} elsif ( my $restart = $result->{restart} ) {
$self->session->log->debug('restart triggered');
return $self->surveyEnd( { restart => $restart } );
}
}
return $self->www_loadQuestions();
}
#-------------------------------------------------------------------
=head2 www_goBack
Handles the Survey back button
=cut
sub www_goBack {
my $self = shift;
if ( !$self->canTakeSurvey() ) {
$self->session->log->debug('canTakeSurvey false, surveyEnd');
return $self->surveyEnd();
}
my $responseId = $self->responseId();
if ( !$responseId ) {
$self->session->log->debug('No response id, surveyEnd');
return $self->surveyEnd();
}
if ( !$self->allowBackBtn ) {
$self->session->log->debug('allowBackBtn false, delegating to www_loadQuestions');
return $self->www_loadQuestions();
}
$self->responseJSON->pop;
$self->persistResponseJSON;
return $self->www_loadQuestions();
}
#-------------------------------------------------------------------
=head2 getSummary
Returns a copy of the summary stored in JSON, and the output of
the survey summary template.
=cut
sub getSummary {
my $self = shift;
my $summary = $self->responseJSON->showSummary();
my $out = $self->processTemplate( $summary, $self->surveySummaryTemplateId );
return ($summary,$out);
}
#-------------------------------------------------------------------
=head2 www_showFeedback
Displays feedback on demand for a given responseId
=cut
sub www_showFeedback {
my $self = shift;
my $responseId = $self->session->form->param('responseId');
# Only continue if we were given a responseId
return if !$responseId;
my $responseUserId
= $self->session->db->quickScalar('select userId from Survey_response where Survey_responseId = ?', [ $responseId ]);
# Only continue if responseId gave us a legit userId
return if !$responseUserId;
my $responseUser = WebGUI::User->new($self->session, $responseUserId);
return if !$responseUser;
# Only continue if current user is allowed to view this response
unless ( $self->session->user->userId eq $responseUserId || $self->session->user->isInGroup( $self->groupToViewReports ) ) {
$self->session->log->warn("User is not allowed to view responseId: $responseId, which belongs to user: $responseUserId");
return $self->session->privilege->insufficient();
}
my $rd = $self->getResponseDetails( { responseId => $responseId } ) || {};
my $out = $rd->{templateText};
return $self->session->style->process( $out, $self->styleTemplateId );
}
#-------------------------------------------------------------------
=head2 www_loadQuestions
Determines which questions to display to the survey taker next, loads and returns them.
=cut
sub www_loadQuestions {
my $self = shift;
my $wasRestarted = shift;
if ( !$self->canTakeSurvey() ) {
$self->session->log->debug('canTakeSurvey false, surveyEnd');
return $self->surveyEnd();
}
my $responseId = $self->responseId();
if ( !$responseId ) {
$self->session->log->debug('No responseId, surveyEnd');
return $self->surveyEnd();
}
if ( $self->hasTimedOut ) {
$self->session->log->debug('Response hasTimedOut, surveyEnd');
return $self->surveyEnd( { timeout => 1 } );
}
if ( $self->responseJSON->surveyEnd() ) {
$self->session->log->debug('Response surveyEnd, so calling surveyEnd');
if ( $self->quizModeSummary ) {
if(! $self->session->form->param('shownsummary')){
my ($summary,$html) = $self->getSummary();
my $json = to_json( { type => 'summary', summary => $summary, html => $html });
$self->session->response->content_type('application/json');
return $json;
}
}
return $self->surveyEnd();
}
my @questions;
eval { @questions = $self->responseJSON->nextQuestions(); };
my $section = $self->responseJSON->nextResponseSection();
$section->{id} = $self->responseJSON->nextResponseSectionIndex();
$section->{wasRestarted} = $wasRestarted;
my $text = $self->prepareShowSurveyTemplate( $section, \@questions );
return $text;
}
#-------------------------------------------------------------------
=head2 surveyEnd ( [ $options ] )
Marks the survey response as completed and carries out special actions such as restarting or exiting to an exitUrl
=head3 $options
The following options are supported
=over 3
=item timeout
Indicates that the survey has timed out. The doAfterTimeLimit setting controls whether the
survey restarts or exits to the exitUrl.
=item restart
The survey should be restarted
=item exitUrl
Exit to the supplied url, or if no url is provided exit to the survey's exitUrl.
=back
=cut
sub surveyEnd {
my $self = shift;
my %opts = validate(@_, { timeout => 0, restart => 0, exitUrl => 0 });
# If an in-progress response exists, mark it as complete
if ( my $responseId = $self->responseId( { noCreate => 1 } ) ) {
# Decide if we should flag any special actions such as restart or timeout
my $restart = $opts{restart};
my $timeoutRestart = $opts{timeout} && $self->doAfterTimeLimit eq 'restartSurvey';
my $timeout = $opts{timeout};
# First thing to do is to end the current response (and flag why it happened)
my $completeCode
= $timeoutRestart ? 4
: $timeout ? 3
: $restart ? 2
: 1
;
$self->session->log->debug("Completing survey response $responseId with completeCode: $completeCode");
$self->session->db->setRow(
'Survey_response',
'Survey_responseId', {
Survey_responseId => $responseId,
endDate => scalar time,
isComplete => $completeCode,
}
);
# When restarting, we just need to uncache everything response-related
if ( $restart || $timeoutRestart ) {
$self->session->log->debug("Detaching from response $responseId as part of restart");
delete $self->{_responseJSON};
delete $self->{responseId};
return $self->www_loadQuestions(1);
}
# Trigger workflow for everything else
if ( my $workflowId = $self->onSurveyEndWorkflowId ) {
$self->session->log->debug("Triggering onSurveyEndWorkflowId workflow: $workflowId");
WebGUI::Workflow::Instance->create(
$self->session,
{ workflowId => $workflowId,
methodName => 'newByResponseId',
className => 'WebGUI::Asset::Wobject::Survey',
parameters => $responseId,
}
)->start;
}
}
# If we get this far, it's time to forward users to an exitUrl
my $exitUrl = $opts{exitUrl};
undef $exitUrl if $exitUrl !~ /\w/;
undef $exitUrl if $exitUrl eq 'undefined';
$exitUrl = $exitUrl || $self->exitURL || $self->getUrl || q{/};
$exitUrl = $self->session->url->gateway($exitUrl) if($exitUrl !~ /^https?:/i);
my $json = to_json( { type => 'forward', url => $exitUrl } );
$self->session->response->content_type('application/json');
return $json;
}
#-------------------------------------------------------------------
=head2 prepareShowSurveyTemplate
Sends the processed template and questions structure to the client
=cut
sub prepareShowSurveyTemplate {
my ( $self, $section, $questions ) = @_;
my %textArea = ( 'TextArea', 1 );
my %text = ( 'Text', 1, 'Email', 1, 'Phone Number', 1, 'Text Date', 1, 'Currency', 1, 'Number', 1 );
my %slider = ( 'Slider', 1, 'Dual Slider - Range', 1, 'Multi Slider - Allocate', 1 );
my %dateType = ( 'Date', 1, 'Date Range', 1 );
my %dateShort = ( 'Year Month', 1 );
my %country = ( 'Country', 1 );
my %fileUpload = ( 'File Upload', 1 );
my %hidden = ( 'Hidden', 1 );
foreach my $q (@$questions) {
if ( $fileUpload{ $q->{questionType} } ) { $q->{fileLoader} = 1; }
elsif ( $text{ $q->{questionType} } ) { $q->{textType} = 1; }
elsif ( $textArea{ $q->{questionType} } ) { $q->{textAreaType} = 1; }
elsif ( $hidden{ $q->{questionType} } ) { $q->{hidden} = 1; }
elsif ( $self->getSurveyJSON->multipleChoiceTypes->{ $q->{questionType} } ) {
$q->{multipleChoice} = 1;
if ( $q->{maxAnswers} > 1 ) {
$q->{maxMoreOne} = 1;
}
}
elsif ( $dateType{ $q->{questionType} } ) {
$q->{dateType} = 1;
}
elsif ( $dateShort{ $q->{questionType} } ) {
$q->{dateShort} = 1;
foreach my $a(@{$q->{answers}}){
$a->{months} = [
{'month' => ''},
{'month' => 'January'},
{'month' => 'February'},
{'month' => 'March'},
{'month' => 'April'},
{'month' => 'May'},
{'month' => 'June'},
{'month' => 'July'},
{'month' => 'August'},
{'month' => 'September'},
{'month' => 'October'},
{'month' => 'November'},
{'month' => 'December'}
];
}
}
elsif ( $country{ $q->{questionType} } ) {
$q->{country} = 1;
my @countries = map +{ 'country' => $_ }, WebGUI::Form::Country::getCountries();
foreach my $a(@{$q->{answers}}){
$a->{countries} = [ {'country' => ''}, @countries ];
}
}
elsif ( $slider{ $q->{questionType} } ) {
$q->{slider} = 1;
if ( $q->{questionType} eq 'Dual Slider - Range' ) {
$q->{dualSlider} = 1;
$q->{a1} = [ $q->{answers}->[0] ];
$q->{a2} = [ $q->{answers}->[1] ];
}
}
if ( $q->{verticalDisplay} ) {
$q->{verts} = '<p>';
$q->{verte} = '</p>';
}
}
$section->{questions} = $questions;
$section->{questionsAnswered} = $self->responseJSON->{questionsAnswered};
$section->{totalQuestions} = @{ $self->responseJSON->surveyOrder };
$section->{showProgress} = $self->showProgress;
$section->{showTimeLimit} = $self->showTimeLimit;
$section->{minutesLeft}
= int( ( ( $self->startDate() + ( 60 * $self->timeLimit ) ) - time() ) / 60 );
if(scalar @{$questions} == ($section->{totalQuestions} - $section->{questionsAnswered})){
$section->{isLastPage} = 1
}
$section->{allowBackBtn} = $self->allowBackBtn;
my $out = $self->processTemplate( $section, $self->surveyQuestionsId );
WebGUI::Macro::process($self->session, \$out);
$self->session->response->content_type('application/json');
return to_json( { type => 'displayquestions', section => $section, questions => $questions, html => $out } );
}
#-------------------------------------------------------------------
=head2 persistSurveyJSON ( )
Serializes the SurveyJSON instance and persists it to the database.
Calling this method is only required if you have directly accessed and modified
the L<WebGUI::Asset::Wobject::Survey::surveyJSON> object.
=cut
sub persistSurveyJSON {
my $self = shift;
my $data = $self->getSurveyJSON->freeze();
$self->update({surveyJSON=>$data});
return;
}
#-------------------------------------------------------------------
=head3 persistResponseJSON
Turns the response object into JSON and saves it to the DB.
=cut
sub persistResponseJSON {
my $self = shift;
my $data = $self->responseJSON->freeze();
$self->session->db->write( 'update Survey_response set responseJSON = ? where Survey_responseId = ?',
[ $data, $self->responseId( { ignoreRevisionDate => 1 } ) ] );
return;
}
#-------------------------------------------------------------------
=head2 responseId( [userId] )
Accessor for the responseId property, which is the unique identifier for a single
L<WebGUI::Asset::Wobject::Survey::ResponseJSON> instance. See also L<"responseJSON">.
The responseId of the current user is returned, or created if one does not already exist.
=head3 options
The following options are supported:
=head4 userId (optional)
If specified, this user is used rather than the current user
=head4 isComplete
A value of isComplete to filter against (defaults to isComplete = 0)
=head4 noCreate
If a responseId does not already exist, do not create one (default is to create an new responseId)
=head4 ignoreRevisionDate
Ignore the fact that the revisionDate bound to the retrieved response does not match the revisionDate for this Survey instance.
=cut
sub responseId {
my $self = shift;
my %opts = validate( @_, { userId => 0, isComplete => 0, noCreate => 0, ignoreRevisionDate => 0 } );
my $userId = $opts{userId} || $self->session->user->userId;
my $isComplete = $opts{isComplete};
my $noCreate = $opts{noCreate};
my $ignoreRevisionDate = $opts{ignoreRevisionDate};
my $user = WebGUI::User->new( $self->session, $userId );
my $ip = $self->session->request->address;
my $responseId = $self->{responseId};
return $responseId if $responseId;
# If a cached responseId doesn't exist, get the current in-progress response from the db
# By default, get current response (e.g. isComplete = 0)
my $isCompleteClause = defined $isComplete ? "isComplete = $isComplete" : 'isComplete = 0';
if (!$responseId) {
($responseId, my $revisionDate) = $self->session->db->quickArray(
"select Survey_responseId, revisionDate from Survey_response where userId = ? and assetId = ? and $isCompleteClause order by endDate desc limit 1",
[ $userId, $self->getId ]
);
if (!$ignoreRevisionDate && $responseId && $revisionDate != $self->revisionDate) {
$self->session->log->warn("Revision Date $revisionDate for retrieved responseId $responseId does not match instantiated object "
. $self->getId . " revision date " . $self->revisionDate . ". Refusing to return response");
return;
}
}
if ( !$responseId && $noCreate ) {
$self->session->log->debug("ResponseId doesn't exist, but we were asked not to create a new one");
return;
}
# If no current in-progress response exists, create one (as long as we're allowed to)
# N.B. Response is bound to current Survey revisionDate
if ( !$responseId ) {
my $maxResponsesPerUser = $self->maxResponsesPerUser;
my $takenCount = $self->takenCount( { userId => $userId } );
if ( $maxResponsesPerUser == 0 || $takenCount < $maxResponsesPerUser ) {
# Create a new response
my $startDate = time;
$responseId = $self->session->db->setRow(
'Survey_response',
'Survey_responseId', {
Survey_responseId => 'new',
userId => $userId,
ipAddress => $ip,
username => $user->username,
startDate => $startDate,
endDate => 0,
assetId => $self->getId,
revisionDate => $self->revisionDate,
anonId => undef,
}
);
# Store the newly created responseId
$self->{responseId} = $responseId;
$self->startDate($startDate);
$self->session->log->debug("Created new Survey response: $responseId for user: $userId for Survey: " . $self->getId);
# Manually persist ResponseJSON since we have changed $self->responseId
$self->persistResponseJSON();
}
else {
$self->session->log->debug("Refusing to create new response, takenCount ($takenCount) >= maxResponsesPerUser ($maxResponsesPerUser)");
}
}
$self->{responseId} = $responseId;
return $self->{responseId};
}
=head2 takenCount ( $options )
Counts the number of existing responses
N.B. only counts responses with completeCode of 1
(others codes indicate abnormal completion such as restart
and thus should not count towards tally)
=head3 options
The following options are supported
=head4 userId (optional)
The userId to count responses for. Defaults to the current user
=head4 ipAddress (optional)
An IP address to filter responses by
=head4 isComplete (optional)
A complete code to use to filter responses by (optional, defaults to 1)
=cut
sub takenCount {
my $self = shift;
my %opts = validate(@_, { userId => 0, ipAddress => 0, isComplete => 0 });
my $isComplete = defined $opts{isComplete} ? $opts{isComplete} : 1;
$opts{userId} ||= $self->session->user->userId;
my $sql = 'select count(*) from Survey_response where';
$sql .= ' assetId = ' . $self->session->db->quote($self->getId);
$sql .= ' and isComplete = ' . $self->session->db->quote($isComplete);
for my $o qw(userId ipAddress) {
if (my $o_value = $opts{$o}) {
$sql .= " and $o = " . $self->session->db->quote($o_value);
}
}
$self->session->log->debug($sql);
my $count = $self->session->db->quickScalar($sql);
return $count;
}
#-------------------------------------------------------------------
=head2 canTakeSurvey
Determines if the current user has permissions to take the survey.
=cut
sub canTakeSurvey {
my $self = shift;
return $self->{canTake} if ( defined $self->{canTake} );
# Immediately reject if not in groupToTakeSurvey or groupToEditSurvey
if ( !$self->session->user->isInGroup( $self->groupToTakeSurvey ) && !$self->session->user->isInGroup( $self->groupToEditSurvey ) ) {
return 0;
}
my $maxResponsesPerUser = $self->maxResponsesPerUser;
my $ip = $self->session->request->address;
my $userId = $self->session->user->userId();
my $takenCount = 0;
if ( $userId eq 1 ) {
$takenCount = $self->takenCount( { ipAddress => $ip });
}
else {
$takenCount = $self->takenCount;
}
# A maxResponsesPerUser value of 0 implies unlimited
if ( $maxResponsesPerUser > 0 && $takenCount >= $maxResponsesPerUser ) {
$self->{canTake} = 0;
}
else {
$self->{canTake} = 1;
}
return $self->{canTake};
}
#-------------------------------------------------------------------
=head2 www_viewGradeBook (){
Returns the Grade Book screen.
=cut
sub www_viewGradeBook {
my $self = shift;
my $db = $self->session->db;
return $self->session->privilege->insufficient()
if !$self->session->user->isInGroup( $self->groupToViewReports );
my $var = $self->getMenuVars;
$self->loadTempReportTable();
my $paginator = WebGUI::Paginator->new( $self->session, $self->getUrl('func=viewGradebook') );
my $userClause = '';
if (my $userId = $self->session->form->process('userId')) {
$userClause = ' and userId = ' . $db->quote($userId);
}
my $quotedAssetId = $db->quote( $self->getId );
$paginator->setDataByQuery( <<END_SQL );
select userId, username, ipAddress, Survey_responseId, startDate, endDate
from Survey_response
where assetId = $quotedAssetId
$userClause
order by username, ipAddress, startDate
END_SQL
my $rows = $paginator->getPageData;
$var->{question_count} = $self->getSurveyJSON->questionCount;
my @responseloop;
foreach my $row ( @{$rows} ) {
my ($correctCount)
= $db->quickArray(
'select count(*) from Survey_tempReport' . ' where Survey_responseId=? and isCorrect=1',
[ $row->{Survey_responseId} ] );
push @responseloop,
{
response_feedback_url => $self->getUrl("func=showFeedback;responseId=$row->{Survey_responseId}"),
response_id => $row->{Survey_responseId},
response_userId => $row->{userId},
response_ip => $row->{ip},
response_startDate => $row->{startDate}
&& WebGUI::DateTime->new( $self->session, $row->{startDate} )->toUserTimeZone,
response_endDate => $row->{endDate}
&& WebGUI::DateTime->new( $self->session, $row->{endDate} )->toUserTimeZone,
response_user_name => ( $row->{userId} eq '1' ) ? $row->{ipAddress} : $row->{username},
response_count_correct => $correctCount,
response_percent => sprintf('%.0f', ( $correctCount / $var->{question_count} ) * 100 ),
};
}
$var->{response_loop} = \@responseloop;
$paginator->appendTemplateVars($var);
# Clean up
$self->clearTempReportTable;
my $out = $self->processTemplate( $var, $self->gradebookTemplateId );
return $self->processStyle($out);
}
#-------------------------------------------------------------------
=head2 www_viewStatisticalOverview (){
Returns the Statistical Overview screen.
=cut
sub www_viewStatisticalOverview {
my $self = shift;
my $db = $self->session->db;
return $self->session->privilege->insufficient()
if !$self->session->user->isInGroup( $self->groupToViewReports );
$self->loadTempReportTable();
my $survey = $self->getSurveyJSON;
my $var = $self->getMenuVars;
my $paginator = WebGUI::Paginator->new($self->session,$self->getUrl('func=viewStatisticalOverview'));
my @questionloop;
for ( my $sectionIndex = 0; $sectionIndex <= $#{ $survey->sections() }; $sectionIndex++ ) {
for ( my $questionIndex = 0; $questionIndex <= $#{ $survey->questions([$sectionIndex]) }; $questionIndex++ ) {
my $question = $survey->question( [ $sectionIndex, $questionIndex ] );
my $questionType = $question->{questionType};
my (@answerloop, $totalResponses);;
if ($questionType eq 'Multiple Choice'){
$totalResponses = $db->quickScalar('select count(*) from Survey_tempReport'
. ' where sectionNumber=? and questionNumber=?',[$sectionIndex,$questionIndex]);
for ( my $answerIndex = 0; $answerIndex <= $#{ $survey->answers([$sectionIndex,$questionIndex]) }; $answerIndex++ ) {
my $numResponses = $db->quickScalar('select count(*) from Survey_tempReport'
. ' where sectionNumber=? and questionNumber=? and answerNumber=?',
[$sectionIndex,$questionIndex,$answerIndex]);
my $responsePercent;
if ($totalResponses) {
$responsePercent = sprintf('%.0f', ($numResponses/$totalResponses)*100);
} else {
$responsePercent = 0;
}
my @commentloop;
my $comments = $db->read('select answerComment from Survey_tempReport'
. ' where sectionNumber=? and questionNumber=? and answerNumber=?',
[$sectionIndex,$questionIndex,$answerIndex]);
while (my ($comment) = $comments->array) {
push @commentloop,{
'answer_comment'=>$comment
};
}
push @answerloop,{
'answer_isCorrect'=>$survey->answer( [ $sectionIndex, $questionIndex, $answerIndex ] )->{isCorrect},
'answer' => $survey->answer( [ $sectionIndex, $questionIndex, $answerIndex ] )->{text},
'answer_response_count' =>$numResponses,
'answer_response_percent' =>$responsePercent,
'comment_loop'=>\@commentloop
};
}
}
else{
my $responses = $db->read('select answerValue,answerComment from Survey_tempReport'
. ' where sectionNumber=? and questionNumber=?',
[$sectionIndex,$questionIndex]);
while (my $response = $responses->hashRef) {
push @answerloop,{
'answer_value' =>$response->{answerValue},
'answer_comment' =>$response->{answerComment}
};
}
}
push @questionloop, {
question => $question->{text},
question_id => "${sectionIndex}_$questionIndex",
question_isMultipleChoice => ($questionType eq 'Multiple Choice'),
question_response_total => $totalResponses,
answer_loop => \@answerloop,
questionallowComment => $question->{allowComment}
};
}
}
$paginator->setDataByArrayRef(\@questionloop);
@questionloop = @{$paginator->getPageData};
$var->{question_loop} = \@questionloop;
$paginator->appendTemplateVars($var);
# Clean up
$self->clearTempReportTable;
my $out = $self->processTemplate( $var, $self->overviewTemplateId );
return $self->processStyle($out);
}
#-------------------------------------------------------------------
=head2 export ( $options )
Triggers the user's browser to download the given content as a file
Accepts the following options:
=over 4
=item content (optional)
The content to return. If not specified, the sql param is used.
=item sql (optional)
An sql string to use to look up content.
=item sqlParams (optional)
An array of sql positional parameters.
=item format
Either C<csv> or C<tab>
=item name
The filename to use for the downloadable content
=back
=cut
sub export {
my $self = shift;
my %opts = validate(@_, { content => 0, sql => 0, sqlParams => {default => []}, format => { default => 'csv' }, name => 1 });
my $format = lc $opts{format};
$format = 'csv' unless $format eq 'csv' || $format eq 'tab';
# Content is either passed in, or we lookup via SQL query
my $content = $opts{content};
if (!$content) {
# Use the appropriate SQL 'quick' method
my $method = $format eq 'csv' ? 'quickCSV' : 'quickTab';
$content = $self->session->db->$method( $opts{sql}, $opts{sqlParams} );
}
# Clean up
$self->clearTempReportTable;
my $filename = $self->session->url->escape( $self->title . "_$opts{name}.$format" );
$self->session->response->header( 'Content-Disposition' => qq{attachment; filename="}.$filename.'"');
$self->session->response->content_type("text/$format");
return $content;
}
#-------------------------------------------------------------------
=head2 www_exportSimpleResults ()
Exports transposed results as CSV (or tabbed depending on the C<format> form param)
=cut
sub www_exportSimpleResults {
my $self = shift;
return $self->session->privilege->insufficient()
if !$self->session->user->isInGroup( $self->groupToViewReports);
$self->loadTempReportTable( ignoreRevisionDate => 1 );
return $self->export(
sql => 'select * from Survey_tempReport t where t.assetId=? order by t.Survey_responseId, t.order',
sqlParams => [ $self->getId() ],
format => scalar $self->session->form->process('format'),
name => 'simple',
);
}
#-------------------------------------------------------------------
=head2 www_exportTransposedResults ()
Returns transposed results as CSV (or tabbed depending on the C<format> form param)
=cut
sub www_exportTransposedResults {
my $self = shift;
return $self->session->privilege->insufficient()
if !$self->session->user->isInGroup( $self->groupToViewReports );
$self->loadTempReportTable( ignoreRevisionDate => 1, );
return $self->export(
sql => <<END_SQL,
select r.userId, r.username, r.ipAddress, r.startDate, r.endDate, r.isComplete, t.*
from Survey_tempReport t
left join Survey_response r using(Survey_responseId)
where t.assetId = ?
order by r.userId, r.Survey_responseId, t.order
END_SQL
sqlParams => [ $self->getId() ],
format => scalar $self->session->form->process('format'),
name => 'transposed',
);
}
#-------------------------------------------------------------------
=head2 www_exportStructure
Exports the surveyJSON as either HTML or a downloadable CSV file, based on the
C<format> form variable.
=cut
sub www_exportStructure {
my $self = shift;
return $self->session->privilege->insufficient()
unless ( $self->session->user->isInGroup( $self->groupToEditSurvey ) );
if ($self->session->form->param('format') eq 'html') {
my $output = <<END_HTML;
<p>N.B. Items are formatted as:
<ul>
<li>Section Number: (<b>variable</b>) &ldquo;Section Title&rdquo;</li>
<li>Question Number: (<b>variable</b>) &ldquo;Question Title&rdquo;</li>
<ul><li>Answer Number: (<b>Recorded Answer,Answer Score</b>) &ldquo;Answer Text&rdquo;</li></ul>
</ul>
</p>
<div style="border: 1px dashed; margin: 10px; padding: 10px;">
END_HTML
my $sNum = 1;
for my $s (@{$self->getSurveyJSON->sections}) {
$output .= "S$sNum: (<b>$s->{variable}</b>) &ldquo;$s->{title}&rdquo;";
$output .= '<ul>';
my $qNum = 0;
for my $q (@{$s->{questions}}) {
$qNum++;
$output .= '<li>';
$output .= "Q$qNum: (<b>$q->{variable}</b>) &ldquo;$q->{text}&rdquo;";
$output .= '<ul>';
my $aNum = 0;
for my $a (@{$q->{answers}}) {
$aNum++;
$output .= '<li>';
$output .= "A$aNum: (<b>$a->{recordedAnswer},$a->{value}</b>) &ldquo;$a->{text}&rdquo;";
$output .= '</li>';
}
$output .= '</ul>';
$output .= '</li>';
}
$output .= '</ul>';
}
$output .= '</div>';
return $self->session->style->userStyle($output);
} else {
my @rows = ([qw( numbering type variable recordedValue score text goto gotoExpression)]);
my $sNum = 0;
for my $s (@{$self->getSurveyJSON->sections}) {
$sNum++;
push @rows, ["S$sNum", 'Section', $s->{variable}, '', '', $s->{text}, $s->{goto}, $s->{gotoExpression}];
my $qNum = 0;
for my $q (@{$s->{questions}}) {
$qNum++;
push @rows, ["S$sNum-Q$qNum", 'Question', $q->{variable}, '', '', $q->{text}, $q->{goto}, $q->{gotoExpression}];
my $aNum = 0;
for my $a (@{$q->{answers}}) {
$aNum++;
push @rows, ["S$sNum-Q$qNum-A$aNum", 'Answer', '', $a->{recordedAnswer}, $a->{value}, $a->{text}, $a->{goto}, $a->{gotoExpression}];
}
}
}
my $csv = Text::CSV_XS->new( { binary => 1 } );
my @lines = map {$csv->combine(@$_); $csv->string} @rows;
my $output = join "\n", @lines;
my $filename = $self->session->url->escape( $self->title . "_structure.csv" );
$self->session->response->header( 'Content-Disposition' => qq{attachment; filename="}.$filename.'"');
$self->session->response->content_type("text/csv");
return $output;
}
}
#-------------------------------------------------------------------
=head2 clearTempReportTable
Clears the Survey_tempReport table
Typically called after L<loadTempReportTable> has been used
=cut
sub clearTempReportTable {
my $self = shift;
$self->session->db->write( 'delete from Survey_tempReport where assetId = ?', [ $self->getId() ] );
}
#-------------------------------------------------------------------
=head2 loadTempReportTable
Loads the responses from the survey into the Survey_tempReport table, so that other or custom reports can be ran against this data.
Accepts the following options:
=over 4
=item ignoreRevisionDate
Normally it only makes sense to compare responses for the current revisionDate (because the Survey structure can change
between revisions). This flag tells us to ignore response revisionDate.
=back
=cut
sub loadTempReportTable {
my $self = shift;
my %opts = validate(@_, { ignoreRevisionDate => 0 });
# Remove old temp report data
$self->clearTempReportTable;
# Build the sql that will select all responses
my $sql = 'select * from Survey_response where assetId = ?';
# Mostly it only makes sense to export responses for a single revisionDate (because Survey
# structure can change between revisions)
$sql .= ' and revisionDate = ' . $self->session->db->quote($self->revisionDate) unless $opts{ignoreRevisionDate};
# Populate the temp report table with new data
my $refs = $self->session->db->buildArrayRefOfHashRefs( $sql, [ $self->getId() ] );
for my $ref ( @{$refs} ) {
# Inject the responseJSON
$self->responseJSON( $ref->{responseJSON}, $ref->{Survey_responseId} );
my $order = 1;
for my $q ( @{ $self->responseJSON->responseReport } ) {
if ( @{ $q->{answers} } == 0 and $q->{comment} =~ /\w/ ) {
$self->session->db->write(
'insert into Survey_tempReport VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)',
[ $self->getId(), # assetId
$ref->{Survey_responseId}, # Survey_responseId
$order++, # order
$q->{section},, # sectionNumber
$q->{sectionName}, # sectionName
$q->{question}, # questionNumber
$q->{questionName}, # questionName
$q->{questionComment}, # questionComment
undef,
undef,
undef,
undef,
undef,
undef,
undef
]
);
next;
}
for my $a ( @{ $q->{answers} } ) {
$self->session->db->write(
'insert into Survey_tempReport VALUES (?,?,?,?,?,?,?,?,?,?,?,?,?,?,?)',
[ $self->getId(), # assetId
$ref->{Survey_responseId}, # Survey_responseId
$order++, # order
$q->{section}, # sectionNumber
$q->{sectionName}, # sectionName
$q->{question}, # questionNumber
$q->{questionName}, # questionName
$q->{questionComment}, # questionComment
$a->{id}, # answerNumber
$a->{value}, # answerValue
$a->{verbatim}, # answerComment
$a->{time}, # entryDate
$a->{isCorrect}, # isCorrect
$a->{score}, # value (e.g. answer score)
undef # fileStoreageId
]
);
}
}
}
return 1;
}
#-------------------------------------------------------------------
=head2 www_downloadDefaultQuestionTypes
Sends the user a json file of the default question types, which can be imported to other WebGUI instances.
=cut
sub www_downloadDefaultQuestionTypes{
my $self = shift;
return $self->session->privilege->insufficient()
if !$self->session->user->isInGroup( $self->groupToViewReports );
my $content = to_json($self->getSurveyJSON->{multipleChoiceTypes});
$self->session->response->header( 'Content-Disposition' => qq{attachment; filename="WebGUI-Survey-DefaultQuestionTypes.json"});
$self->session->response->content_type("application/json");
return $content;
}
#-------------------------------------------------------------------
=head2 www_deleteTest ( )
Deletes a test
=cut
sub www_deleteTest {
my $self = shift;
my $session = $self->session;
return $self->session->privilege->insufficient()
unless $self->session->user->isInGroup( $self->groupToEditSurvey );
my $test = WebGUI::Asset::Wobject::Survey::Test->new($session, $session->form->get("testId"));
if (defined $test) {
$test->delete;
}
return $self->www_editTestSuite;
}
#------------------------------------------------------------------
=head2 www_demoteTest ( )
Moves a Test down one position
=cut
sub www_demoteTest {
my $self = shift;
my $session = $self->session;
return $self->session->privilege->insufficient()
unless $self->session->user->isInGroup( $self->groupToEditSurvey );
my $test = WebGUI::Asset::Wobject::Survey::Test->new($session, $session->form->get("testId"));
if (defined $test) {
$test->demote;
}
return $self->www_editTestSuite;
}
#-------------------------------------------------------------------
=head2 www_editTestSuite ( $error )
Configure a set of tests
=head3 $error
Allows another method to pass an error into this method, to display to the user.
=cut
sub www_editTestSuite {
my $self = shift;
my $error = shift;
my $session = $self->session;
return $self->session->privilege->insufficient()
unless $self->session->user->isInGroup( $self->groupToEditSurvey );
if ($error) {
$error = qq|<div class="error">$error</div>\n|;
}
my $i18n = WebGUI::International->new($session, "Asset_Survey");
my $addmenu = '<div style="float: left; width: 200px; font-size: 11px;">';
$addmenu .= sprintf '<a href="%s">%s</a>', $session->url->page('func=editTest'), $i18n->get('add a test');
$addmenu .= '</div>';
my $testsFound = 0;
my $tests = '<table class="content"><tr><th></th><th>' . $i18n->get('test name') . '</th></tr><tbody class="tableData">';
my $getATest = WebGUI::Asset::Wobject::Survey::Test->getAllIterator($session, { sequenceKeyValue => $self->getId } );
my $icon = $session->icon;
while (my $test = $getATest->()) {
$testsFound++;
my $testId = $test->getId;
my $name = $test->get('name');
$tests .= '<tr><td>'
. $icon->delete( 'func=deleteTest;testId='.$testId, undef, $i18n->get('confirm delete test'))
. $icon->edit( 'func=editTest;testId='.$testId)
. $icon->moveDown('func=demoteTest;testId='.$testId)
. $icon->moveUp( 'func=promoteTest;testId='.$testId)
. qq{<a href="} . $session->url->page("func=runTest;testId=$testId") . qq{">Run Test</a>}
. '</td><td>'.$name.'</td></tr>';
}
$tests .= '</tbody></table><div style="clear: both;"></div>';
my $out = $error . $addmenu;
$out .= $tests if $testsFound;
return '<h1>Survey</h1>' . $out;
}
#-------------------------------------------------------------------
=head2 www_editTest ( )
Displays a form to edit the properties test.
=cut
sub www_editTest {
my $self = shift;
my $error = shift;
my $session = $self->session;
return $self->session->privilege->insufficient()
unless $self->session->user->isInGroup( $self->groupToEditSurvey );
if ($error) {
$error = qq|<div class="error">$error</div>\n|;
}
##Make a Survey test to use to populate the form.
my $testId = $session->form->get('testId');
my $test;
if ($testId) {
$test = WebGUI::Asset::Wobject::Survey::Test->new($session, $testId);
}
else {
##We need a temporary test so that we can call dynamicForm, below
$testId = 'new';
$test = WebGUI::Asset::Wobject::Survey::Test->new($session, { assetId => $self->getId });
}
##Build the form
my $form = WebGUI::FormBuilder->new($session, action => $self->getUrl);
$form->addField( "hidden", name=>"func", value=>"editTestSave");
$form->addField( "hidden", name=>"testId", value=>$testId);
$form->addField( "hidden", name=>"assetId", value=>$self->getId);
$test->crud_form($form, $test);
$form->addField( "submit", name => "save" );
if ($testId eq 'new') {
$test->delete;
}
my $i18n = WebGUI::International->new($session, 'Asset_Survey');
return '<h1>' . $i18n->get('edit test') . '</h1>' . $error . $form->toHtml;
}
#-------------------------------------------------------------------
=head2 www_editTestSave ( )
Saves the results of www_editTest().
=cut
sub www_editTestSave {
my $self = shift;
my $session = $self->session;
return $self->session->privilege->insufficient()
unless $self->session->user->isInGroup( $self->groupToEditSurvey );
my $form = $session->form;
# eval {
# 'fooBarBaz' =~ qr/$regexp/;
# };
# if ($@) {
# my $error = $@;
# $error =~ s/at \S+?\.pm line \d+.*$//;
# my $i18n = WebGUI::International->new($session, 'Asset_Survey');
# $error = join ' ', $i18n->get('Regular Expression Error:'), $error;
# return www_editTest($session, $error);
# }
my $testId = $form->get('testId');
my $test;
if ($testId eq 'new') {
$test = WebGUI::Asset::Wobject::Survey::Test->new($session, { assetId => $self->getId });
}
else {
$test = WebGUI::Asset::Wobject::Survey::Test->new($session, $testId);
}
$test->updateFromFormPost if $test;
return $self->www_editTestSuite;
}
#------------------------------------------------------------------
=head2 www_promoteTest ( )
Moves a test up one position
=head3 session
A reference to the current session.
=cut
sub www_promoteTest {
my $self = shift;
my $session = $self->session;
return $self->session->privilege->insufficient()
unless $self->session->user->isInGroup( $self->groupToEditSurvey );
my $test = WebGUI::Asset::Wobject::Survey::Test->new($session, $session->form->get("testId"));
if (defined $test) {
$test->promote;
}
return $self->www_editTestSuite;
}
#-------------------------------------------------------------------
=head2 www_runTest ( )
Runs a test
=cut
sub www_runTest {
my $self = shift;
my $session = $self->session;
return $self->session->privilege->insufficient()
unless $self->session->user->isInGroup( $self->groupToEditSurvey );
my $i18n = WebGUI::International->new($session, 'Asset_Survey');
my $ac = $self->getAdminConsole;
require TAP::Parser;
my $testId = $session->form->get("testId");
my $test = WebGUI::Asset::Wobject::Survey::Test->new($session, $testId)
or return $self->www_editTestSuite('Unable to find test');
# Remove any in-progress reponses for current user
$self->session->db->write( 'delete from Survey_response where assetId = ? and userId = ? and isComplete = 0',
[ $self->getId, $self->session->user->userId() ] );
my $result = $test->run or return $self->www_editTestSuite('Unable to run test');
my $tap = $result->{tap} or return $self->www_editTestSuite('Unable to determine test result');
my $parsed = $self->parseTap($tap) or return $self->www_editTestSuite('Unable to parse test output');
return '<h1>Test Results</h1>' . $parsed->{templateText};
}
=head2 parseTap
Parses TAP and returns an object containing the TAP::Parser, the template var (containing
all interesting TAP::Parser and TAP::Parser::Result properties) and the templated text
=cut
sub parseTap {
my ($self, $tap) = @_;
require TAP::Parser;
my $parser = TAP::Parser->new( { tap => $tap } );
# Expose TAP::Parser and TAP::Parser::Result info as template variables
my $var = {
results => [],
};
while ( my $result = $parser->next ) {
my $rvar = {};
for my $key (qw(
is_plan is_pragma is_test is_comment is_bailout is_version is_unknown
raw
type
as_string
is_ok
has_directive
has_todo
has_skip
)) {
$rvar->{$key} = $result->$key;
}
push @{$var->{results}}, $rvar;
}
# add summary results
for my $key (qw(
passed
failed
actual_passed
actual_failed
todo
todo_passed
skipped
plan
tests_planned
tests_run
skip_all
has_problems
exit
wait
parse_errors
)) {
$var->{$key} = $parser->$key;
}
my $out = $self->processTemplate($var, $self->testResultsTemplateId || 'S3zpVitAmhy58CAioH359Q');
return {
templateText => $out,
templateVar => $var,
parser => $parser,
};
}
#-------------------------------------------------------------------
=head2 www_runTests ( )
Runs all tests
=cut
sub www_runTests {
my $self = shift;
my $session = $self->session;
my $i18n = WebGUI::International->new($self->session, "Asset_Survey");
my $ac = $self->getAdminConsole;
return $self->session->privilege->insufficient()
unless $self->session->user->isInGroup( $self->groupToEditSurvey );
# Remove any in-progress reponses for current user
$self->session->db->write( 'delete from Survey_response where assetId = ? and userId = ? and isComplete = 0',
[ $self->getId, $self->session->user->userId() ] );
# Manage responses ourselves rather than doing it over and over per-test
my $responseId = $self->responseId( { userId => $self->session->user->userId } )
or return $self->www_editTestSuite('Unable to start survey response');
# Also initSurveyOrder ourselves once, and then preserve, rather than re-loading
$self->responseJSON->initSurveyOrder;
my $all = WebGUI::Asset::Wobject::Survey::Test->getAllIterator($session, { sequenceKeyValue => $self->getId } );
# Expose TAP::Parser::Aggregate info as template variables
my $var = {
aggregate => 1,
results => [],
};
my $format = $self->session->form->param('format');
local $| = 1 if $format eq 'tap';
my @parsers;
require TAP::Parser;
require TAP::Parser::Aggregator;
my $aggregate = TAP::Parser::Aggregator->new;
$aggregate->start;
while (my $test = $all->()) {
my $result = $test->run( { responseId => $responseId })
or return $self->www_editTestSuite('Unable to run test: ' . $test->getId);
my $tap = $result->{tap} or return $self->www_editTestSuite('Unable to determine test result: ' . $test->getId);
my $name = $test->get('name') || "Unnamed";
my $parsed = $self->parseTap($tap);
push @parsers, { $name => $parsed->{parser} };
push @{$var->{results}}, {
%{$parsed->{templateVar}},
name => $name,
testId => $test->getId,
text => $parsed->{templateText},
};
$self->session->output->print("$name\n$tap\n\n") if $format eq 'tap';
}
$aggregate->stop;
$aggregate->add( %$_ ) for @parsers;
# add summary results
for my $key (qw(
elapsed_timestr
all_passed
get_status
failed
parse_errors
passed
skipped
todo
todo_passed
wait
exit
total
has_problems
has_errors
)) {
$var->{$key} = $aggregate->$key;
}
my $out = $self->processTemplate($var, $self->testResultsTemplateId || 'S3zpVitAmhy58CAioH359Q');
if ($format eq 'tap') {
my $summary = <<'END_SUMMARY';
SUMMARY
-------
Passed: %s
Failed: %s
END_SUMMARY
$self->session->output->print(sprintf $summary, scalar $aggregate->passed, scalar $aggregate->failed);
return 'chunked';
} else {
return $ac->render($out, $i18n->get('test results'));
}
}
__PACKAGE__->meta->make_immutable;
1;