use of com.instructure.canvasapi2.builders.RestParams in project instructure-android by instructure.
the class CalendarEventManager method getUpcomingEventsSynchronous.
@NonNull
public static List<ScheduleItem> getUpcomingEventsSynchronous(boolean forceNetwork) throws IOException {
if (isTesting() || mTesting) {
// TODO
return new ArrayList();
} else {
final RestBuilder adapter = new RestBuilder();
final RestParams params = new RestParams.Builder().withForceReadFromNetwork(forceNetwork).withPerPageQueryParam(true).build();
Response<List<ScheduleItem>> response = CalendarEventAPI.getUpcomingEventsSynchronous(adapter, params);
return (response != null && response.isSuccessful() && response.body() != null) ? response.body() : new ArrayList();
}
}
use of com.instructure.canvasapi2.builders.RestParams in project instructure-android by instructure.
the class CalendarEventManager method deleteCalendarEvent.
public static void deleteCalendarEvent(long eventId, String cancelReason, StatusCallback<ScheduleItem> callback) {
if (isTesting() || mTesting) {
// TODO
} else {
RestBuilder adapter = new RestBuilder(callback);
RestParams params = new RestParams.Builder().build();
CalendarEventAPI.deleteCalendarEvent(eventId, cancelReason, adapter, params, callback);
}
}
use of com.instructure.canvasapi2.builders.RestParams 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.RestParams 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.RestParams 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);
}
}
Aggregations