use of com.instructure.canvasapi2.builders.RestBuilder in project instructure-android by instructure.
the class CalendarEventManager method getAllCalendarEventsWithSubmissionsAirwolf.
public static void getAllCalendarEventsWithSubmissionsAirwolf(String airwolfDomain, String parentId, String studentId, String startDate, String endDate, ArrayList<String> canvasContexts, boolean forceNetwork, StatusCallback<List<ScheduleItem>> callback) {
if (isTesting() || mTesting) {
// TODO:
} else {
RestBuilder adapter = new RestBuilder(callback);
RestParams params = new RestParams.Builder().withPerPageQueryParam(true).withDomain(airwolfDomain).withAPIVersion("").withForceReadFromNetwork(forceNetwork).build();
CalendarEventAPI.getAllCalendarEventsWithSubmissionAirwolf(parentId, studentId, startDate, endDate, canvasContexts, adapter, callback, params);
}
}
use of com.instructure.canvasapi2.builders.RestBuilder in project instructure-android by instructure.
the class CourseManager method getCourseStudents.
public static void getCourseStudents(long courseId, StatusCallback<List<User>> callback, boolean forceNetwork) {
if (isTesting() || mTesting) {
CourseManager_Test.getCourseStudents(courseId, callback);
} else {
RestBuilder adapter = new RestBuilder(callback);
RestParams params = new RestParams.Builder().withPerPageQueryParam(true).withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
CourseAPI.getCourseStudents(courseId, adapter, callback, params);
}
}
use of com.instructure.canvasapi2.builders.RestBuilder in project instructure-android by instructure.
the class CourseManager method getCourseWithSyllabus.
public static void getCourseWithSyllabus(long courseId, StatusCallback<Course> callback, boolean forceNetwork) {
if (isTesting() || mTesting) {
CourseManager_Test.getCourse(courseId, callback);
} else {
RestBuilder adapter = new RestBuilder(callback);
RestParams params = new RestParams.Builder().withPerPageQueryParam(false).withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
CourseAPI.getCourseWithSyllabus(courseId, adapter, callback, params);
}
}
use of com.instructure.canvasapi2.builders.RestBuilder in project instructure-android by instructure.
the class CourseManager method getGradingPeriodsForCourse.
public static void getGradingPeriodsForCourse(StatusCallback<GradingPeriodResponse> callback, long courseId, boolean forceNetwork) {
if (isTesting() || mTesting) {
CourseManager_Test.getGradingPeriodsForCourse(callback, courseId);
} else {
RestBuilder adapter = new RestBuilder(callback);
RestParams params = new RestParams.Builder().withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
CourseAPI.getGradingPeriodsForCourse(adapter, callback, params, courseId);
}
}
use of com.instructure.canvasapi2.builders.RestBuilder in project instructure-android by instructure.
the class CourseManager method getFavoriteCoursesSynchronous.
// endregion
@NonNull
public static List<Course> getFavoriteCoursesSynchronous(final boolean forceNetwork) throws IOException {
if (isTesting() || mTesting) {
// TODO
return new ArrayList<>();
} else {
final RestBuilder adapter = new RestBuilder();
RestParams params = new RestParams.Builder().withPerPageQueryParam(true).withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
Response<List<Course>> response = CourseAPI.getFavoriteCoursesSynchronously(adapter, params);
if (response != null && response.isSuccessful() && response.body() != null)
return response.body();
else
return new ArrayList<>();
}
}
Aggregations