|
|
@ -2,10 +2,11 @@ package gr.thmmy.mthmmy.activities.upload; |
|
|
|
|
|
|
|
import android.app.Activity; |
|
|
|
import android.content.Context; |
|
|
|
import android.content.DialogInterface; |
|
|
|
import android.content.Intent; |
|
|
|
import android.content.SharedPreferences; |
|
|
|
import android.content.pm.ResolveInfo; |
|
|
|
import android.database.Cursor; |
|
|
|
import android.graphics.Bitmap; |
|
|
|
import android.graphics.drawable.Drawable; |
|
|
|
import android.net.Uri; |
|
|
|
import android.os.AsyncTask; |
|
|
@ -42,8 +43,12 @@ import java.io.File; |
|
|
|
import java.io.FileOutputStream; |
|
|
|
import java.io.IOException; |
|
|
|
import java.io.InputStream; |
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
import java.util.ArrayList; |
|
|
|
import java.util.Arrays; |
|
|
|
import java.util.Date; |
|
|
|
import java.util.List; |
|
|
|
import java.util.Locale; |
|
|
|
|
|
|
|
import gr.thmmy.mthmmy.R; |
|
|
|
import gr.thmmy.mthmmy.base.BaseActivity; |
|
|
@ -134,46 +139,62 @@ public class UploadActivity extends BaseActivity { |
|
|
|
rootCategorySpinner.setOnItemSelectedListener(new CustomOnItemSelectedListener(uploadRootCategories)); |
|
|
|
|
|
|
|
titleDescriptionBuilderButton = findViewById(R.id.upload_title_description_builder); |
|
|
|
titleDescriptionBuilderButton.setOnClickListener(new View.OnClickListener() { |
|
|
|
@Override |
|
|
|
public void onClick(View view) { |
|
|
|
if (categorySelected.equals("-1")) { |
|
|
|
Toast.makeText(view.getContext(), "Please choose category first", Toast.LENGTH_SHORT).show(); |
|
|
|
return; |
|
|
|
} |
|
|
|
titleDescriptionBuilderButton.setOnClickListener(view -> { |
|
|
|
if (categorySelected.equals("-1")) { |
|
|
|
Toast.makeText(view.getContext(), "Please choose category first", Toast.LENGTH_SHORT).show(); |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
int numberOfSpinners = categoriesSpinners.getChildCount(); |
|
|
|
int numberOfSpinners = categoriesSpinners.getChildCount(); |
|
|
|
|
|
|
|
if (numberOfSpinners < 3) { |
|
|
|
if (numberOfSpinners < 3) { |
|
|
|
Toast.makeText(view.getContext(), "Please choose a course category", Toast.LENGTH_SHORT).show(); |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
String maybeSemester = "", maybeCourse = ""; |
|
|
|
|
|
|
|
if (numberOfSpinners == 5) { |
|
|
|
if (((AppCompatSpinnerWithoutDefault) categoriesSpinners.getChildAt(numberOfSpinners - 1)). |
|
|
|
getSelectedItemPosition() == -1) { |
|
|
|
maybeSemester = (String) ((AppCompatSpinnerWithoutDefault) |
|
|
|
categoriesSpinners.getChildAt(numberOfSpinners - 4)).getSelectedItem(); |
|
|
|
maybeCourse = (String) ((AppCompatSpinnerWithoutDefault) |
|
|
|
categoriesSpinners.getChildAt(numberOfSpinners - 2)).getSelectedItem(); |
|
|
|
} else { |
|
|
|
Toast.makeText(view.getContext(), "Please choose a course category", Toast.LENGTH_SHORT).show(); |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
String maybeSemester = (String) ((AppCompatSpinnerWithoutDefault) |
|
|
|
} else if (numberOfSpinners == 4) { |
|
|
|
maybeSemester = (String) ((AppCompatSpinnerWithoutDefault) |
|
|
|
categoriesSpinners.getChildAt(numberOfSpinners - 3)).getSelectedItem(); |
|
|
|
maybeCourse = (String) ((AppCompatSpinnerWithoutDefault) |
|
|
|
categoriesSpinners.getChildAt(numberOfSpinners - 1)).getSelectedItem(); |
|
|
|
} else { |
|
|
|
maybeSemester = (String) ((AppCompatSpinnerWithoutDefault) |
|
|
|
categoriesSpinners.getChildAt(numberOfSpinners - 2)).getSelectedItem(); |
|
|
|
String maybeCourse = (String) ((AppCompatSpinnerWithoutDefault) |
|
|
|
maybeCourse = (String) ((AppCompatSpinnerWithoutDefault) |
|
|
|
categoriesSpinners.getChildAt(numberOfSpinners - 1)).getSelectedItem(); |
|
|
|
} |
|
|
|
|
|
|
|
if (!maybeSemester.contains("εξάμηνο") && !maybeSemester.contains("Εξάμηνο")) { |
|
|
|
Toast.makeText(view.getContext(), "Please choose a course category", Toast.LENGTH_SHORT).show(); |
|
|
|
return; |
|
|
|
} |
|
|
|
if (maybeCourse == null) { |
|
|
|
Toast.makeText(view.getContext(), "Please choose a course", Toast.LENGTH_SHORT).show(); |
|
|
|
return; |
|
|
|
} |
|
|
|
if (!maybeSemester.contains("εξάμηνο") && !maybeSemester.contains("Εξάμηνο")) { |
|
|
|
Toast.makeText(view.getContext(), "Please choose a course category", Toast.LENGTH_SHORT).show(); |
|
|
|
return; |
|
|
|
} |
|
|
|
if (maybeCourse == null) { |
|
|
|
Toast.makeText(view.getContext(), "Please choose a course", Toast.LENGTH_SHORT).show(); |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
//Fixes course and semester
|
|
|
|
maybeCourse = maybeCourse.replaceAll("-", "").replace("(ΝΠΣ)", "").trim(); |
|
|
|
maybeSemester = maybeSemester.replaceAll("-", "").trim().substring(0, 1); |
|
|
|
//Fixes course and semester
|
|
|
|
maybeCourse = maybeCourse.replaceAll("-", "").replace("(ΝΠΣ)", "").trim(); |
|
|
|
maybeSemester = maybeSemester.replaceAll("-", "").trim().substring(0, 1); |
|
|
|
|
|
|
|
Intent intent = new Intent(UploadActivity.this, UploadFieldsBuilderActivity.class); |
|
|
|
Bundle extras = new Bundle(); |
|
|
|
extras.putString(BUNDLE_UPLOAD_FIELD_BUILDER_COURSE, maybeCourse); |
|
|
|
extras.putString(BUNDLE_UPLOAD_FIELD_BUILDER_SEMESTER, maybeSemester); |
|
|
|
intent.putExtras(extras); |
|
|
|
startActivityForResult(intent, REQUEST_CODE_FIELDS_BUILDER); |
|
|
|
} |
|
|
|
Intent intent = new Intent(UploadActivity.this, UploadFieldsBuilderActivity.class); |
|
|
|
Bundle builderExtras = new Bundle(); |
|
|
|
builderExtras.putString(BUNDLE_UPLOAD_FIELD_BUILDER_COURSE, maybeCourse); |
|
|
|
builderExtras.putString(BUNDLE_UPLOAD_FIELD_BUILDER_SEMESTER, maybeSemester); |
|
|
|
intent.putExtras(builderExtras); |
|
|
|
startActivityForResult(intent, REQUEST_CODE_FIELDS_BUILDER); |
|
|
|
}); |
|
|
|
titleDescriptionBuilderButton.setEnabled(false); |
|
|
|
|
|
|
@ -183,128 +204,132 @@ public class UploadActivity extends BaseActivity { |
|
|
|
selectFileButton = findViewById(R.id.upload_select_file_button); |
|
|
|
Drawable selectStartDrawable = AppCompatResources.getDrawable(this, R.drawable.ic_insert_drive_file_white_24dp); |
|
|
|
selectFileButton.setCompoundDrawablesRelativeWithIntrinsicBounds(selectStartDrawable, null, null, null); |
|
|
|
selectFileButton.setOnClickListener(new View.OnClickListener() { |
|
|
|
@Override |
|
|
|
public void onClick(View v) { |
|
|
|
final CharSequence[] options = {"Take photo", "Choose file", |
|
|
|
"Cancel"}; |
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(UploadActivity.this); |
|
|
|
builder.setTitle("Upload file"); |
|
|
|
builder.setItems(options, new DialogInterface.OnClickListener() { |
|
|
|
@Override |
|
|
|
public void onClick(DialogInterface dialog, int item) { |
|
|
|
if (options[item].equals("Take photo")) { |
|
|
|
Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); |
|
|
|
startActivityForResult(intent, REQUEST_CODE_CAMERA); |
|
|
|
} else if (options[item].equals("Choose file")) { |
|
|
|
String[] mimeTypes = {"image/jpeg", "text/html", "image/png", "image/jpg", "image/gif", |
|
|
|
"application/pdf", "application/rar", "application/x-tar", "application/zip", |
|
|
|
"application/msword", "image/vnd.djvu", "application/gz", "application/tar.gz"}; |
|
|
|
|
|
|
|
Intent intent = new Intent(Intent.ACTION_GET_CONTENT) |
|
|
|
//.setType("*/*")
|
|
|
|
.setType("image/jpeg") |
|
|
|
.putExtra(Intent.EXTRA_MIME_TYPES, mimeTypes); |
|
|
|
|
|
|
|
startActivityForResult(intent, REQUEST_CODE_CHOOSE_FILE); |
|
|
|
} else if (options[item].equals("Cancel")) { |
|
|
|
dialog.dismiss(); |
|
|
|
} |
|
|
|
selectFileButton.setOnClickListener(v -> { |
|
|
|
final CharSequence[] options = {"Take photo", "Choose file", |
|
|
|
"Cancel"}; |
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(UploadActivity.this); |
|
|
|
builder.setTitle("Upload file"); |
|
|
|
builder.setItems(options, (dialog, item) -> { |
|
|
|
if (options[item].equals("Take photo")) { |
|
|
|
/*Intent intent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); |
|
|
|
startActivityForResult(intent, REQUEST_CODE_CAMERA);*/ |
|
|
|
|
|
|
|
Intent takePhotoIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); |
|
|
|
takePhotoIntent.putExtra("return-data", true); |
|
|
|
takePhotoIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(UploadsHelper.getTempFile(this))); |
|
|
|
|
|
|
|
Intent targetedIntent = new Intent(takePhotoIntent); |
|
|
|
List<ResolveInfo> resInfo = this.getPackageManager().queryIntentActivities(takePhotoIntent, 0); |
|
|
|
for (ResolveInfo resolveInfo : resInfo) { |
|
|
|
String packageName = resolveInfo.activityInfo.packageName; |
|
|
|
targetedIntent.setPackage(packageName); |
|
|
|
} |
|
|
|
}); |
|
|
|
builder.show(); |
|
|
|
} |
|
|
|
}); |
|
|
|
startActivityForResult(takePhotoIntent, REQUEST_CODE_CAMERA); |
|
|
|
|
|
|
|
findViewById(R.id.upload_upload_button).setOnClickListener(new View.OnClickListener() { |
|
|
|
@Override |
|
|
|
public void onClick(View view) { |
|
|
|
String uploadTitleText = uploadTitle.getText().toString(); |
|
|
|
String uploadDescriptionText = uploadDescription.getText().toString(); |
|
|
|
} else if (options[item].equals("Choose file")) { |
|
|
|
String[] mimeTypes = {"image/jpeg", "text/html", "image/png", "image/jpg", "image/gif", |
|
|
|
"application/pdf", "application/rar", "application/x-tar", "application/zip", |
|
|
|
"application/msword", "image/vnd.djvu", "application/gz", "application/tar.gz"}; |
|
|
|
|
|
|
|
if (uploadTitleText.equals("")) { |
|
|
|
uploadTitle.setError("Required"); |
|
|
|
} |
|
|
|
if (fileUri == null) { |
|
|
|
selectFileButton.setError("Required"); |
|
|
|
} |
|
|
|
if (categorySelected.equals("-1")) { |
|
|
|
Toast.makeText(view.getContext(), "Please choose category first", Toast.LENGTH_SHORT).show(); |
|
|
|
} |
|
|
|
Intent intent = new Intent(Intent.ACTION_GET_CONTENT) |
|
|
|
//.setType("*/*")
|
|
|
|
.setType("image/jpeg") |
|
|
|
.putExtra(Intent.EXTRA_MIME_TYPES, mimeTypes); |
|
|
|
|
|
|
|
if (categorySelected.equals("-1") || uploadTitleText.equals("") || fileUri == null) { |
|
|
|
return; |
|
|
|
startActivityForResult(intent, REQUEST_CODE_CHOOSE_FILE); |
|
|
|
} else if (options[item].equals("Cancel")) { |
|
|
|
dialog.dismiss(); |
|
|
|
} |
|
|
|
}); |
|
|
|
builder.show(); |
|
|
|
}); |
|
|
|
|
|
|
|
String tmpDescriptionText = uploadDescriptionText; |
|
|
|
findViewById(R.id.upload_upload_button).setOnClickListener(view -> { |
|
|
|
String uploadTitleText = uploadTitle.getText().toString(); |
|
|
|
String uploadDescriptionText = uploadDescription.getText().toString(); |
|
|
|
|
|
|
|
SharedPreferences sharedPrefs = PreferenceManager.getDefaultSharedPreferences(view.getContext()); |
|
|
|
if (sharedPrefs.getBoolean(UPLOADING_APP_SIGNATURE_ENABLE_KEY, true)) { |
|
|
|
tmpDescriptionText += uploadedFrommThmmyPromptHtml; |
|
|
|
} |
|
|
|
if (uploadTitleText.equals("")) { |
|
|
|
uploadTitle.setError("Required"); |
|
|
|
} |
|
|
|
if (fileUri == null) { |
|
|
|
selectFileButton.setError("Required"); |
|
|
|
} |
|
|
|
if (categorySelected.equals("-1")) { |
|
|
|
Toast.makeText(view.getContext(), "Please choose category first", Toast.LENGTH_SHORT).show(); |
|
|
|
} |
|
|
|
|
|
|
|
String tempFilePath = null; |
|
|
|
if (uploadFilename != null) { |
|
|
|
tempFilePath = createTempFile(uploadFilename); |
|
|
|
if (tempFilePath == null) { |
|
|
|
//Something went wrong, abort
|
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
if (categorySelected.equals("-1") || uploadTitleText.equals("") || fileUri == null) { |
|
|
|
return; |
|
|
|
} |
|
|
|
|
|
|
|
try { |
|
|
|
final String finalTempFilePath = tempFilePath; |
|
|
|
new MultipartUploadRequest(view.getContext(), uploadIndexUrl) |
|
|
|
.setUtf8Charset() |
|
|
|
.addParameter("tp-dluploadtitle", uploadTitleText) |
|
|
|
.addParameter("tp-dluploadcat", categorySelected) |
|
|
|
.addParameter("tp-dluploadtext", tmpDescriptionText) |
|
|
|
.addFileToUpload(tempFilePath == null |
|
|
|
? fileUri.toString() |
|
|
|
: tempFilePath |
|
|
|
, "tp-dluploadfile") |
|
|
|
.addParameter("tp_dluploadicon", fileIcon) |
|
|
|
.addParameter("tp-uploaduser", uploaderProfileIndex) |
|
|
|
.setNotificationConfig(new UploadNotificationConfig()) |
|
|
|
.setMaxRetries(2) |
|
|
|
.setDelegate(new UploadStatusDelegate() { |
|
|
|
@Override |
|
|
|
public void onProgress(Context context, UploadInfo uploadInfo) { |
|
|
|
} |
|
|
|
String tmpDescriptionText = uploadDescriptionText; |
|
|
|
|
|
|
|
@Override |
|
|
|
public void onError(Context context, UploadInfo uploadInfo, ServerResponse serverResponse, |
|
|
|
Exception exception) { |
|
|
|
Toast.makeText(context, "Upload failed", Toast.LENGTH_SHORT).show(); |
|
|
|
if (finalTempFilePath != null) { |
|
|
|
if (!deleteTempFile(finalTempFilePath)) { |
|
|
|
Toast.makeText(context, "Failed to delete temp file", Toast.LENGTH_SHORT).show(); |
|
|
|
} |
|
|
|
SharedPreferences sharedPrefs = PreferenceManager.getDefaultSharedPreferences(view.getContext()); |
|
|
|
if (sharedPrefs.getBoolean(UPLOADING_APP_SIGNATURE_ENABLE_KEY, true)) { |
|
|
|
tmpDescriptionText += uploadedFrommThmmyPromptHtml; |
|
|
|
} |
|
|
|
|
|
|
|
String tempFilePath = null; |
|
|
|
if (uploadFilename != null) { |
|
|
|
tempFilePath = UploadsHelper.createTempFile(this, fileUri, uploadFilename); |
|
|
|
if (tempFilePath == null) { |
|
|
|
//Something went wrong, abort
|
|
|
|
return; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
try { |
|
|
|
final String finalTempFilePath = tempFilePath; |
|
|
|
new MultipartUploadRequest(view.getContext(), uploadIndexUrl) |
|
|
|
.setUtf8Charset() |
|
|
|
.addParameter("tp-dluploadtitle", uploadTitleText) |
|
|
|
.addParameter("tp-dluploadcat", categorySelected) |
|
|
|
.addParameter("tp-dluploadtext", tmpDescriptionText) |
|
|
|
.addFileToUpload(tempFilePath == null |
|
|
|
? fileUri.toString() |
|
|
|
: tempFilePath |
|
|
|
, "tp-dluploadfile") |
|
|
|
.addParameter("tp_dluploadicon", fileIcon) |
|
|
|
.addParameter("tp-uploaduser", uploaderProfileIndex) |
|
|
|
.setNotificationConfig(new UploadNotificationConfig()) |
|
|
|
.setMaxRetries(2) |
|
|
|
.setDelegate(new UploadStatusDelegate() { |
|
|
|
@Override |
|
|
|
public void onProgress(Context context, UploadInfo uploadInfo) { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void onError(Context context, UploadInfo uploadInfo, ServerResponse serverResponse, |
|
|
|
Exception exception) { |
|
|
|
Toast.makeText(context, "Upload failed", Toast.LENGTH_SHORT).show(); |
|
|
|
if (finalTempFilePath != null) { |
|
|
|
if (!UploadsHelper.deleteTempFile(finalTempFilePath)) { |
|
|
|
Toast.makeText(context, "Failed to delete temporary file", Toast.LENGTH_SHORT).show(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void onCompleted(Context context, UploadInfo uploadInfo, ServerResponse serverResponse) { |
|
|
|
if (finalTempFilePath != null) { |
|
|
|
if (!deleteTempFile(finalTempFilePath)) { |
|
|
|
Toast.makeText(context, "Failed to delete temp file", Toast.LENGTH_SHORT).show(); |
|
|
|
} |
|
|
|
@Override |
|
|
|
public void onCompleted(Context context, UploadInfo uploadInfo, ServerResponse serverResponse) { |
|
|
|
if (finalTempFilePath != null) { |
|
|
|
if (!UploadsHelper.deleteTempFile(finalTempFilePath)) { |
|
|
|
Toast.makeText(context, "Failed to delete temporary file", Toast.LENGTH_SHORT).show(); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public void onCancelled(Context context, UploadInfo uploadInfo) { |
|
|
|
if (finalTempFilePath != null) { |
|
|
|
if (!deleteTempFile(finalTempFilePath)) { |
|
|
|
Toast.makeText(context, "Failed to delete temp file", Toast.LENGTH_SHORT).show(); |
|
|
|
} |
|
|
|
@Override |
|
|
|
public void onCancelled(Context context, UploadInfo uploadInfo) { |
|
|
|
if (finalTempFilePath != null) { |
|
|
|
if (!UploadsHelper.deleteTempFile(finalTempFilePath)) { |
|
|
|
Toast.makeText(context, "Failed to delete temporary file", Toast.LENGTH_SHORT).show(); |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
.startUpload(); |
|
|
|
} catch (Exception exception) { |
|
|
|
Timber.e(exception, "AndroidUploadService: %s", exception.getMessage()); |
|
|
|
} |
|
|
|
} |
|
|
|
}) |
|
|
|
.startUpload(); |
|
|
|
} catch (Exception exception) { |
|
|
|
Timber.e(exception, "AndroidUploadService: %s", exception.getMessage()); |
|
|
|
} |
|
|
|
}); |
|
|
|
|
|
|
@ -326,7 +351,7 @@ public class UploadActivity extends BaseActivity { |
|
|
|
if (bundleCategory != null) { |
|
|
|
int bundleSelectionIndex = -1, currentIndex = 0; |
|
|
|
for (UploadCategory category : uploadRootCategories) { |
|
|
|
if (category.getCategoryTitle().contains(bundleCategory.get(0))) { //TODO fix .contains, always false
|
|
|
|
if (bundleCategory.get(0).contains(category.getCategoryTitle())) { |
|
|
|
bundleSelectionIndex = currentIndex; |
|
|
|
break; |
|
|
|
} |
|
|
@ -335,6 +360,7 @@ public class UploadActivity extends BaseActivity { |
|
|
|
|
|
|
|
if (bundleSelectionIndex != -1) { |
|
|
|
rootCategorySpinner.setSelection(bundleSelectionIndex, true); |
|
|
|
bundleCategory.remove(0); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
@ -373,7 +399,7 @@ public class UploadActivity extends BaseActivity { |
|
|
|
|
|
|
|
fileUri = data.getData(); |
|
|
|
if (fileUri != null) { |
|
|
|
String filename = filenameFromUri(fileUri); |
|
|
|
String filename = UploadsHelper.filenameFromUri(this, fileUri); |
|
|
|
selectFileButton.setText(filename); |
|
|
|
|
|
|
|
filename = filename.toLowerCase(); |
|
|
@ -396,11 +422,37 @@ public class UploadActivity extends BaseActivity { |
|
|
|
fileIcon = "blank.gif"; |
|
|
|
} |
|
|
|
} |
|
|
|
} else if (requestCode == REQUEST_CODE_CAMERA && data != null) { |
|
|
|
} else if (requestCode == REQUEST_CODE_CAMERA) { |
|
|
|
if (resultCode == Activity.RESULT_CANCELED) { |
|
|
|
return; |
|
|
|
} |
|
|
|
//TODO
|
|
|
|
|
|
|
|
Bitmap bitmap; |
|
|
|
File cacheImageFile = UploadsHelper.getTempFile(this); |
|
|
|
if (resultCode == Activity.RESULT_OK) { |
|
|
|
fileUri = Uri.fromFile(cacheImageFile); |
|
|
|
fileIcon = "jpg_image.gif"; |
|
|
|
|
|
|
|
bitmap = UploadsHelper.getImageResized(this, fileUri); |
|
|
|
int rotation = UploadsHelper.getRotation(this, fileUri); |
|
|
|
bitmap = UploadsHelper.rotate(bitmap, rotation); |
|
|
|
|
|
|
|
try { |
|
|
|
FileOutputStream out = new FileOutputStream(cacheImageFile); |
|
|
|
bitmap.compress(Bitmap.CompressFormat.JPEG, 100, out); |
|
|
|
out.flush(); |
|
|
|
out.close(); |
|
|
|
} catch (Exception e) { |
|
|
|
e.printStackTrace(); |
|
|
|
} |
|
|
|
|
|
|
|
String newFilename = new SimpleDateFormat("yyyyMMdd_HHmmss", Locale.FRANCE). |
|
|
|
format(new Date()); |
|
|
|
fileUri = Uri.parse(UploadsHelper.createTempFile(this, fileUri, newFilename)); |
|
|
|
|
|
|
|
newFilename += ".jpg"; |
|
|
|
selectFileButton.setText(newFilename); |
|
|
|
} |
|
|
|
} else if (requestCode == REQUEST_CODE_FIELDS_BUILDER) { |
|
|
|
if (resultCode == Activity.RESULT_CANCELED) { |
|
|
|
return; |
|
|
@ -414,82 +466,6 @@ public class UploadActivity extends BaseActivity { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
@NonNull |
|
|
|
private String filenameFromUri(Uri uri) { |
|
|
|
String filename = null; |
|
|
|
if (uri.getScheme().equals("content")) { |
|
|
|
try (Cursor cursor = getContentResolver().query(uri, null, null, null, null)) { |
|
|
|
if (cursor != null && cursor.moveToFirst()) { |
|
|
|
filename = cursor.getString(cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME)); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
if (filename == null) { |
|
|
|
filename = uri.getPath(); |
|
|
|
int cut = filename.lastIndexOf('/'); |
|
|
|
if (cut != -1) { |
|
|
|
filename = filename.substring(cut + 1); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return filename; |
|
|
|
} |
|
|
|
|
|
|
|
@Nullable |
|
|
|
private String createTempFile(String newFilename) { |
|
|
|
String oldFilename = filenameFromUri(fileUri); |
|
|
|
String fileExtension = oldFilename.substring(oldFilename.indexOf(".")); |
|
|
|
String destinationFilename = android.os.Environment.getExternalStorageDirectory().getPath() + |
|
|
|
File.separatorChar + "~tmp_mThmmy_uploads" + File.separatorChar + newFilename + fileExtension; |
|
|
|
|
|
|
|
File tempDirectory = new File(android.os.Environment.getExternalStorageDirectory().getPath() + |
|
|
|
File.separatorChar + "~tmp_mThmmy_uploads"); |
|
|
|
|
|
|
|
if (!tempDirectory.exists()) { |
|
|
|
if (!tempDirectory.mkdirs()) { |
|
|
|
Timber.w("Temporary directory build returned false in %s", UploadActivity.class.getSimpleName()); |
|
|
|
Toast.makeText(this, "Couldn't create temporary directory", Toast.LENGTH_SHORT).show(); |
|
|
|
return null; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
InputStream inputStream; |
|
|
|
BufferedInputStream bufferedInputStream = null; |
|
|
|
BufferedOutputStream bufferedOutputStream = null; |
|
|
|
|
|
|
|
try { |
|
|
|
inputStream = getContentResolver().openInputStream(fileUri); |
|
|
|
if (inputStream == null) { |
|
|
|
Timber.w("Input stream was null, %s", UploadActivity.class.getSimpleName()); |
|
|
|
return null; |
|
|
|
} |
|
|
|
|
|
|
|
bufferedInputStream = new BufferedInputStream(inputStream); |
|
|
|
bufferedOutputStream = new BufferedOutputStream(new FileOutputStream(destinationFilename, false)); |
|
|
|
byte[] buf = new byte[1024]; |
|
|
|
bufferedInputStream.read(buf); |
|
|
|
do { |
|
|
|
bufferedOutputStream.write(buf); |
|
|
|
} while (bufferedInputStream.read(buf) != -1); |
|
|
|
} catch (IOException exception) { |
|
|
|
exception.printStackTrace(); |
|
|
|
} finally { |
|
|
|
try { |
|
|
|
if (bufferedInputStream != null) bufferedInputStream.close(); |
|
|
|
if (bufferedOutputStream != null) bufferedOutputStream.close(); |
|
|
|
} catch (IOException exception) { |
|
|
|
exception.printStackTrace(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
return destinationFilename; |
|
|
|
} |
|
|
|
|
|
|
|
private boolean deleteTempFile(String destinationFilename) { |
|
|
|
File file = new File(destinationFilename); |
|
|
|
return file.delete(); |
|
|
|
} |
|
|
|
|
|
|
|
private class CustomOnItemSelectedListener implements AdapterView.OnItemSelectedListener { |
|
|
|
private ArrayList<UploadCategory> parentCategories, childCategories; |
|
|
|
|
|
|
@ -534,10 +510,12 @@ public class UploadActivity extends BaseActivity { |
|
|
|
categoriesSpinners.addView(subSpinner); |
|
|
|
|
|
|
|
//Sets bundle selection
|
|
|
|
if (bundleCategory != null && viewIndex < bundleCategory.size()) { |
|
|
|
if (bundleCategory != null && !bundleCategory.isEmpty()) { |
|
|
|
int bundleSelectionIndex = -1, currentIndex = 0; |
|
|
|
for (UploadCategory category : parentCategories) { |
|
|
|
if (category.getCategoryTitle().contains(bundleCategory.get(viewIndex))) { |
|
|
|
|
|
|
|
for (UploadCategory category : childCategories) { |
|
|
|
if (bundleCategory.get(0).contains(category.getCategoryTitle() |
|
|
|
.replace("-", "").trim())) { |
|
|
|
bundleSelectionIndex = currentIndex; |
|
|
|
break; |
|
|
|
} |
|
|
@ -546,6 +524,7 @@ public class UploadActivity extends BaseActivity { |
|
|
|
|
|
|
|
if (bundleSelectionIndex != -1) { |
|
|
|
subSpinner.setSelection(bundleSelectionIndex, true); |
|
|
|
bundleCategory.remove(0); |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -627,8 +606,9 @@ public class UploadActivity extends BaseActivity { |
|
|
|
//Sets bundle selection
|
|
|
|
if (bundleCategory != null) { |
|
|
|
int bundleSelectionIndex = -1, currentIndex = 0; |
|
|
|
|
|
|
|
for (UploadCategory category : uploadRootCategories) { |
|
|
|
if (category.getCategoryTitle().contains(bundleCategory.get(0))) { //TODO fix .contains, always false
|
|
|
|
if (bundleCategory.get(0).contains(category.getCategoryTitle())) { |
|
|
|
bundleSelectionIndex = currentIndex; |
|
|
|
break; |
|
|
|
} |
|
|
@ -637,6 +617,7 @@ public class UploadActivity extends BaseActivity { |
|
|
|
|
|
|
|
if (bundleSelectionIndex != -1) { |
|
|
|
rootCategorySpinner.setSelection(bundleSelectionIndex, true); |
|
|
|
bundleCategory.remove(0); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|