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

81 lines
2.4 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 {
2020-05-18 17:15:16 +00:00
/// Get information about a single survey
static Future<Survey> getSurveyInfo(int postID) async =>
apiToSurvey((await APIRequest.withLogin("surveys/get_info")
.addInt("postID", postID)
.execWithThrow())
.getObject());
2019-06-28 09:32:36 +00:00
/// 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;
}
2020-05-18 16:43:57 +00:00
/// Create a new choice in a survey
///
/// Throws in case of failure
static Future<void> createNewChoice(int postID, String newChoice) async =>
await APIRequest.withLogin("surveys/create_new_choice")
.addInt("postID", postID)
.addString("choice", newChoice)
.execWithThrow();
/// Prevent new choices from being created on a survey
2020-05-18 16:43:57 +00:00
///
/// Throws in case of failure
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
);
}
}