1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
/*
* Copyright 2013 Jesse Morgan
*/
package com.p4square.grow.frontend;
import java.util.Map;
import java.util.HashMap;
import freemarker.template.Template;
import org.restlet.data.Form;
import org.restlet.data.MediaType;
import org.restlet.data.Status;
import org.restlet.ext.freemarker.TemplateRepresentation;
import org.restlet.representation.Representation;
import org.restlet.resource.ServerResource;
import org.apache.log4j.Logger;
import net.jesterpm.fmfacade.json.JsonRequestClient;
import net.jesterpm.fmfacade.json.JsonResponse;
import net.jesterpm.fmfacade.FreeMarkerPageResource;
import com.p4square.grow.config.Config;
/**
* SurveyPageResource handles rendering the survey and processing user's answers.
*
* This resource expects the user to be authenticated and the ClientInfo User object
* to be populated. Each question is requested from the backend along with the
* user's previous answer. Each answer is sent to the backend and the user is redirected
* to the next question. After the last question the user is sent to his results.
*
* @author Jesse Morgan <jesse@jesterpm.net>
*/
public class SurveyPageResource extends FreeMarkerPageResource {
private static Logger cLog = Logger.getLogger(SurveyPageResource.class);
private Config mConfig;
private Template mSurveyTemplate;
private JsonRequestClient mJsonClient;
// Fields pertaining to this request.
private String mQuestionId;
private String mUserId;
@Override
public void doInit() {
super.doInit();
GrowFrontend growFrontend = (GrowFrontend) getApplication();
mConfig = growFrontend.getConfig();
mSurveyTemplate = growFrontend.getTemplate("templates/survey.ftl");
if (mSurveyTemplate == null) {
cLog.fatal("Could not find survey template.");
setStatus(Status.SERVER_ERROR_INTERNAL);
}
mJsonClient = new JsonRequestClient(getContext().getClientDispatcher());
mQuestionId = getAttribute("questionId");
mUserId = getRequest().getClientInfo().getUser().getIdentifier();
}
/**
* Return a page with a survey question.
*/
@Override
protected Representation get() {
try {
// Get the current question.
if (mQuestionId == null) {
// TODO: Get user's current question
mQuestionId = "1";
}
Map questionData = null;
{
JsonResponse response = backendGet("/assessment/question/" + mQuestionId);
if (!response.getStatus().isSuccess()) {
setStatus(Status.CLIENT_ERROR_NOT_FOUND);
return null;
}
questionData = response.getMap();
}
// Get any previous answer to the question
String selectedAnswer = null;
{
JsonResponse response = backendGet("/accounts/" + mUserId + "/assessment/answers/" + mQuestionId);
if (response.getStatus().isSuccess()) {
selectedAnswer = (String) response.getMap().get("answerId");
}
}
Map root = getRootObject();
root.put("question", questionData);
root.put("selectedAnswerId", selectedAnswer);
return new TemplateRepresentation(mSurveyTemplate, root, MediaType.TEXT_HTML);
} catch (Exception e) {
cLog.fatal("Could not render page: " + e.getMessage(), e);
setStatus(Status.SERVER_ERROR_INTERNAL);
return null;
}
}
/**
* Record a survey answer and redirect to the next question.
*/
@Override
protected Representation post(Representation entity) {
final Form form = new Form(entity);
final String answerId = form.getFirstValue("answer");
if (mQuestionId == null || answerId == null || answerId.length() == 0) {
// Something is wrong.
setStatus(Status.CLIENT_ERROR_BAD_REQUEST);
return null;
}
try {
// Find the question
Map questionData = null;
{
JsonResponse response = backendGet("/assessment/question/" + mQuestionId);
if (!response.getStatus().isSuccess()) {
// User is answering a question which doesn't exist
setStatus(Status.CLIENT_ERROR_NOT_FOUND);
return null;
}
questionData = response.getMap();
}
// Store answer
{
Map<String, String> answer = new HashMap<String, String>();
answer.put("answerId", answerId);
JsonResponse response = backendPut("/accounts/" + mUserId +
"/assessment/answers/" + mQuestionId, answer);
if (!response.getStatus().isSuccess()) {
// Something went wrong talking to the backend, error out.
cLog.fatal("Error recording survey answer " + response.getStatus());
setStatus(Status.SERVER_ERROR_INTERNAL);
return null;
}
}
// Find the next question or finish the assessment.
String nextPage = mConfig.getString("dynamicRoot", "");
{
String nextQuestionId = (String) questionData.get("nextQuestion");
if (nextQuestionId == null) {
nextPage += "/account/assessment/results";
} else {
nextPage += "/account/assessment/question/" + nextQuestionId;
}
}
getResponse().redirectSeeOther(nextPage);
return null;
} catch (Exception e) {
cLog.fatal("Could not render page: " + e.getMessage(), e);
setStatus(Status.SERVER_ERROR_INTERNAL);
return null;
}
}
/**
* @return The backend endpoint URI
*/
private String getBackendEndpoint() {
return mConfig.getString("backendUri", "riap://component/backend");
}
/**
* Helper method to send a GET to the backend.
*/
private JsonResponse backendGet(final String uri) {
cLog.debug("Sending backend GET " + uri);
final JsonResponse response = mJsonClient.get(getBackendEndpoint() + uri);
final Status status = response.getStatus();
if (!status.isSuccess() && !Status.CLIENT_ERROR_NOT_FOUND.equals(status)) {
cLog.warn("Error making backend request for '" + uri + "'. status = " + response.getStatus().toString());
}
return response;
}
protected JsonResponse backendPut(final String uri, final Map data) {
cLog.debug("Sending backend PUT " + uri);
final JsonResponse response = mJsonClient.put(getBackendEndpoint() + uri, data);
final Status status = response.getStatus();
if (!status.isSuccess() && !Status.CLIENT_ERROR_NOT_FOUND.equals(status)) {
cLog.warn("Error making backend request for '" + uri + "'. status = " + response.getStatus().toString());
}
return response;
}
}
|