use of com.instructure.canvasapi2.models.RemoteFile in project instructure-android by instructure.
the class AnnouncementFragment method formatHTMLWithAttachment.
private void formatHTMLWithAttachment() {
RemoteFile attachment = mAnnouncement.getAttachments().get(0);
String html = mAnnouncement.getMessage() + "<p><a href=\"" + attachment.getUrl() + "\" >" + attachment.getFileName() + "</a></p>";
mAnnouncementWebView.formatHTML(html, mAnnouncement.getTitle());
}
use of com.instructure.canvasapi2.models.RemoteFile in project instructure-android by instructure.
the class FileFolderAPI method uploadFileSynchronousNoRedirect.
@WorkerThread
public static /* Used to manually handle the last redirect */
RemoteFile uploadFileSynchronousNoRedirect(@NonNull RestBuilder adapter, String uploadUrl, Map<String, RequestBody> uploadParams, String mimeType, File file) throws IOException {
RestParams params = new RestParams.Builder().withShouldIgnoreToken(true).withDomain(uploadUrl).withPerPageQueryParam(false).build();
RequestBody fileBody = RequestBody.create(MediaType.parse(mimeType), file);
Headers headers = adapter.buildNoRedirects(FilesFoldersInterface.class, params).uploadFile(uploadParams, fileBody).execute().headers();
String redirect = headers.get("Location");
String newFileUrl = redirect.split("/create_success")[0];
// POST to the redirect... according to the docs we need to do this to finalize the file upload process
RemoteFile newFile = adapter.build(FilesFoldersInterface.class, params).postNewlyCreatedFile(redirect).execute().body();
// We weren't receiving a url in the response from the POST to the redirect - here we grab the full file info as a work around
FileFolder fileFolder = FileFolderManager.getFileFolderFromURLSynchronous(newFileUrl);
newFile.setUrl(fileFolder.getUrl());
newFile.setThumbnailUrl(fileFolder.getThumbnailUrl());
return newFile;
}
use of com.instructure.canvasapi2.models.RemoteFile in project instructure-android by instructure.
the class FileFolderAPI method uploadFileSynchronous.
@WorkerThread
public static RemoteFile uploadFileSynchronous(@NonNull RestBuilder adapter, String uploadUrl, Map<String, RequestBody> uploadParams, String mimeType, File file) throws IOException {
RestParams params = new RestParams.Builder().withShouldIgnoreToken(true).withDomain(uploadUrl).withPerPageQueryParam(false).build();
RequestBody fileBody = RequestBody.create(MediaType.parse(mimeType), file);
return adapter.build(FilesFoldersInterface.class, params).uploadFile(uploadParams, fileBody).execute().body();
}
use of com.instructure.canvasapi2.models.RemoteFile in project instructure-android by instructure.
the class UserAPI method uploadUserFileSynchronous.
@WorkerThread
public static RemoteFile uploadUserFileSynchronous(@NonNull RestBuilder adapter, String uploadUrl, Map<String, RequestBody> uploadParams, String mimeType, File file) throws IOException {
RestParams params = new RestParams.Builder().withShouldIgnoreToken(true).withDomain(uploadUrl).withPerPageQueryParam(false).build();
RequestBody fileBody = RequestBody.create(MediaType.parse(mimeType), file);
return adapter.build(UsersInterface.class, params).uploadUserFile(uploadParams, fileBody).execute().body();
}
use of com.instructure.canvasapi2.models.RemoteFile in project instructure-android by instructure.
the class DiscussionEntryHTMLHelper method getContentHTML.
private static String getContentHTML(DiscussionEntry discussionEntry, String message) {
if (message == null || message.equals("null")) {
return "";
} else {
StringBuilder html = new StringBuilder();
html.append("<div class=\"width\">");
html.append(message);
for (RemoteFile attachment : discussionEntry.getAttachments()) {
if (!attachment.isHiddenForUser() && !discussionEntry.isDeleted()) {
html.append("<div class=\"nowrap\">");
html.append(String.format("<img class=\"attachment_img\" src=\"" + ATTACHMENT_ICON + "\" /> <a class=\"attachment_link\" href=\"%s\">%s</a>", attachment.getUrl(), attachment.getDisplayName()));
html.append("</div>");
}
}
html.append("</div>");
return html.toString();
}
}
Aggregations