edu.ksu.canvas.impl.SubmissionImpl Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of canvas-api Show documentation
Show all versions of canvas-api Show documentation
A native Java library to talk to the Canvas REST API
package edu.ksu.canvas.impl;
import com.google.gson.Gson;
import com.google.gson.JsonObject;
import com.google.gson.reflect.TypeToken;
import edu.ksu.canvas.interfaces.SubmissionReader;
import edu.ksu.canvas.interfaces.SubmissionWriter;
import edu.ksu.canvas.model.Progress;
import edu.ksu.canvas.model.assignment.Submission;
import edu.ksu.canvas.net.Response;
import edu.ksu.canvas.net.RestClient;
import edu.ksu.canvas.oauth.OauthToken;
import edu.ksu.canvas.requestOptions.GetSubmissionsOptions;
import edu.ksu.canvas.requestOptions.MultipleSubmissionsOptions;
import org.apache.commons.lang3.StringUtils;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import java.io.IOException;
import java.lang.reflect.Type;
import java.util.List;
import java.util.Optional;
public class SubmissionImpl extends BaseImpl implements SubmissionReader, SubmissionWriter{
private static final Logger LOG = LoggerFactory.getLogger(SubmissionImpl.class);
/**
* Construct a new CanvasApi class with an OAuth token
*
* @param canvasBaseUrl The base URL of your canvas instance
* @param apiVersion The version of the Canvas API (currently 1)
* @param oauthToken OAuth token to use when executing API calls
* @param restClient a RestClient implementation to use when talking to Canvas
* @param connectTimeout Timeout in seconds to use when connecting
* @param readTimeout Timeout in seconds to use when waiting for data to come back from an open connection
* @param paginationPageSize How many objects to request per page on paginated requests
* @param serializeNulls Whether or not to include null fields in the serialized JSON. Defaults to false if null
*/
public SubmissionImpl(String canvasBaseUrl, Integer apiVersion, OauthToken oauthToken, RestClient restClient,
int connectTimeout, int readTimeout, Integer paginationPageSize, Boolean serializeNulls) {
super(canvasBaseUrl, apiVersion, oauthToken, restClient, connectTimeout, readTimeout,
paginationPageSize, serializeNulls);
}
@Override
public List getCourseSubmissions(final GetSubmissionsOptions options) throws IOException {
if(StringUtils.isBlank(options.getCanvasId()) || options.getAssignmentId() == null) {
throw new IllegalArgumentException("Course and assignment IDs are required for this API call");
}
LOG.debug(String.format("Listing assignment submissions for course %s, assignment %d", options.getCanvasId(), options.getAssignmentId()));
final String url = buildCanvasUrl(String.format("courses/%s/assignments/%d/submissions", options.getCanvasId(), options.getAssignmentId()), options.getOptionsMap());
return getListFromCanvas(url);
}
@Override
public List listCourseSubmissionsForMultipleAssignments(GetSubmissionsOptions options)
throws IOException {
if (StringUtils.isBlank(options.getCanvasId())) {
throw new IllegalArgumentException("Course ID is required for this API call");
}
LOG.debug(String.format("Listing submissions for multiple assignments in course %s", options.getCanvasId()));
String url = buildCanvasUrl(String.format("courses/%s/students/submissions", options.getCanvasId()),
options.getOptionsMap());
return getListFromCanvas(url);
}
@Override
public List getSectionSubmissions(final GetSubmissionsOptions options) throws IOException {
if(StringUtils.isBlank(options.getCanvasId()) || options.getAssignmentId() == null) {
throw new IllegalArgumentException("Section and assignment IDs are required for this API call");
}
LOG.debug(String.format("Listing assignment submissions for section %s, assignment %d", options.getCanvasId(), options.getAssignmentId()));
final String url = buildCanvasUrl(String.format("sections/%s/assignments/%d/submissions", options.getCanvasId(), options.getAssignmentId()), options.getOptionsMap());
return getListFromCanvas(url);
}
@Override
public Optional getSingleCourseSubmission(final GetSubmissionsOptions options) throws IOException {
if(StringUtils.isAnyBlank(options.getCanvasId(), options.getUserId()) || options.getAssignmentId() == null) {
throw new IllegalArgumentException("Course, assignment and user ID are all required for this API call");
}
LOG.debug(String.format("Getting submission for course %s, assignment %d, user %s", options.getCanvasId(), options.getAssignmentId(), options.getUserId()));
final String url = buildCanvasUrl(String.format("courses/%s/assignments/%d/submissions/%s", options.getCanvasId(), options.getAssignmentId(), options.getUserId()), options.getOptionsMap());
return getFromCanvas(url);
}
@Override
public Optional getSingleSectionSubmission(final GetSubmissionsOptions options) throws IOException {
if(StringUtils.isAnyBlank(options.getCanvasId(), options.getUserId()) || options.getAssignmentId() == null) {
throw new IllegalArgumentException("Section, assignment and user ID are all required for this API call");
}
LOG.debug(String.format("Getting submission for section %s, assignment %d, user %s", options.getCanvasId(), options.getAssignmentId(), options.getUserId()));
final String url = buildCanvasUrl(String.format("sections/%s/assignments/%d/submissions/%s", options.getCanvasId(), options.getAssignmentId(), options.getUserId()), options.getOptionsMap());
return getFromCanvas(url);
}
@Override
public Optional