1
0
mirror of https://gitlab.com/comunic/comunicmobile synced 2024-10-23 06:53:23 +00:00
comunicmobile/lib/helpers/survey_helper.dart

63 lines
1.8 KiB
Dart
Raw Normal View History

2019-06-28 09:32:36 +00:00
import 'package:comunic/models/api_request.dart';
import 'package:comunic/models/survey.dart';
import 'package:comunic/models/survey_choice.dart';
import 'package:meta/meta.dart';
/// Survey helper
///
/// @author Pierre HUBERT
class SurveyHelper {
/// Cancel the response of a user to a survey
Future<bool> cancelResponse(Survey survey) async {
return (await APIRequest(
uri: "surveys/cancel_response",
needLogin: true,
args: {"postID": survey.postID.toString()}).exec())
.isOK;
}
/// Send the response of a user to a survey
Future<bool> respondToSurvey(
{@required Survey survey, @required SurveyChoice choice}) async {
assert(survey != null);
assert(choice != null);
return (await APIRequest(
uri: "surveys/send_response",
needLogin: true,
args: {
"postID": survey.postID.toString(),
"choiceID": choice.id.toString(),
},
).exec())
.isOK;
}
/// Prevent new choices from being created on a survey
static Future<void> blockNewChoicesCreation(int postID) async =>
await APIRequest.withLogin("surveys/block_new_choices_creation")
.addInt("postID", postID)
.execWithThrow();
2019-06-28 09:32:36 +00:00
/// Turn an API entry into a [Survey] object
static Survey apiToSurvey(Map<String, dynamic> map) {
// Parse survey responses
Set<SurveyChoice> choices = Set();
map["choices"].forEach((k, e) => choices.add(SurveyChoice(
id: e["choiceID"], name: e["name"], responses: e["responses"])));
return Survey(
id: map["ID"],
userID: map["userID"],
postID: map["postID"],
creationTime: map["creation_time"],
question: map["question"],
userChoice: map["user_choice"],
choices: choices,
allowNewChoicesCreation: map["allowNewChoices"],
2019-06-28 09:32:36 +00:00
);
}
}