use of com.instructure.canvasapi2.models.ToDo 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.models.ToDo 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.models.ToDo 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<>();
}
}
use of com.instructure.canvasapi2.models.ToDo in project instructure-android by instructure.
the class CourseManager method getCoursesWithEnrollmentType.
public static void getCoursesWithEnrollmentType(boolean forceNetwork, StatusCallback<List<Course>> callback, String type) {
if (isTesting() || mTesting) {
// TODO:
} else {
RestBuilder adapter = new RestBuilder(callback);
RestParams params = new RestParams.Builder().withPerPageQueryParam(false).withShouldIgnoreToken(false).withForceReadFromNetwork(forceNetwork).build();
CourseAPI.getCoursesByEnrollmentType(adapter, callback, params, type);
}
}
use of com.instructure.canvasapi2.models.ToDo in project instructure-android by instructure.
the class CourseManager method getGroupsForCourse.
public static void getGroupsForCourse(long courseId, StatusCallback<List<Group>> callback, final boolean forceNetwork) {
if (isTesting() || mTesting) {
// TODO
} else {
final RestParams params = new RestParams.Builder().withForceReadFromNetwork(forceNetwork).withPerPageQueryParam(true).build();
final RestBuilder adapter = new RestBuilder(callback);
StatusCallback<List<Group>> exhaustiveCallback = new ExhaustiveListCallback<Group>(callback) {
@Override
public void getNextPage(@NonNull StatusCallback<List<Group>> callback, @NonNull String nextUrl, boolean isCached) {
CourseAPI.getNextPageGroups(nextUrl, adapter, callback, params);
}
};
adapter.setStatusCallback(exhaustiveCallback);
CourseAPI.getFirstPageGroups(courseId, adapter, exhaustiveCallback, params);
}
}
Aggregations