/* * This is the source code of Telegram for Android v. 1.3.2. * It is licensed under GNU GPL v. 2 or later. * You should have received a copy of the license in this archive (see LICENSE). * * Copyright Nikolai Kudashov, 2013. */ package org.telegram.ui.Views; import android.app.Activity; import android.content.Intent; import android.graphics.Bitmap; import android.net.Uri; import android.os.Bundle; import android.provider.MediaStore; import org.telegram.android.AndroidUtilities; import org.telegram.messenger.TLRPC; import org.telegram.messenger.FileLoader; import org.telegram.messenger.FileLog; import org.telegram.messenger.NotificationCenter; import org.telegram.messenger.UserConfig; import org.telegram.messenger.Utilities; import org.telegram.ui.LaunchActivity; import org.telegram.ui.PhotoCropActivity; import org.telegram.ui.Views.ActionBar.BaseFragment; import java.io.File; public class AvatarUpdater implements NotificationCenter.NotificationCenterDelegate, PhotoCropActivity.PhotoCropActivityDelegate { public String currentPicturePath; private TLRPC.PhotoSize smallPhoto; private TLRPC.PhotoSize bigPhoto; public String uploadingAvatar = null; File picturePath = null; public BaseFragment parentFragment = null; public AvatarUpdaterDelegate delegate; private boolean clearAfterUpdate = false; public boolean returnOnly = false; public static abstract interface AvatarUpdaterDelegate { public abstract void didUploadedPhoto(TLRPC.InputFile file, TLRPC.PhotoSize small, TLRPC.PhotoSize big); } public void clear() { if (uploadingAvatar != null) { clearAfterUpdate = true; } else { parentFragment = null; delegate = null; } } public void openCamera() { try { Intent takePictureIntent = new Intent(MediaStore.ACTION_IMAGE_CAPTURE); File image = Utilities.generatePicturePath(); if (image != null) { takePictureIntent.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(image)); currentPicturePath = image.getAbsolutePath(); } parentFragment.getParentActivity().startActivityForResult(takePictureIntent, 13); } catch (Exception e) { FileLog.e("tmessages", e); } } public void openGallery() { try { Intent photoPickerIntent = new Intent(Intent.ACTION_PICK); photoPickerIntent.setType("image/*"); parentFragment.getParentActivity().startActivityForResult(photoPickerIntent, 14); } catch (Exception e) { FileLog.e("tmessages", e); } } private void startCrop(String path, Uri uri) { try { LaunchActivity activity = (LaunchActivity)parentFragment.getParentActivity(); if (activity == null) { return; } Bundle args = new Bundle(); if (path != null) { args.putString("photoPath", path); } else if (uri != null) { args.putParcelable("photoUri", uri); } PhotoCropActivity photoCropActivity = new PhotoCropActivity(args); photoCropActivity.setDelegate(this); activity.presentFragment(photoCropActivity); } catch (Exception e) { FileLog.e("tmessages", e); Bitmap bitmap = FileLoader.loadBitmap(path, uri, 800, 800); processBitmap(bitmap); } } public void onActivityResult(int requestCode, int resultCode, Intent data) { if (resultCode == Activity.RESULT_OK) { if (requestCode == 13) { Utilities.addMediaToGallery(currentPicturePath); startCrop(currentPicturePath, null); currentPicturePath = null; } else if (requestCode == 14) { if (data == null || data.getData() == null) { return; } startCrop(null, data.getData()); } } } private void processBitmap(Bitmap bitmap) { if (bitmap == null) { return; } smallPhoto = FileLoader.scaleAndSaveImage(bitmap, 100, 100, 87, false); bigPhoto = FileLoader.scaleAndSaveImage(bitmap, 800, 800, 87, false); if (bigPhoto != null && smallPhoto != null) { if (returnOnly) { if (delegate != null) { delegate.didUploadedPhoto(null, smallPhoto, bigPhoto); } } else { UserConfig.saveConfig(false); uploadingAvatar = AndroidUtilities.getCacheDir() + "/" + bigPhoto.location.volume_id + "_" + bigPhoto.location.local_id + ".jpg"; NotificationCenter.getInstance().addObserver(AvatarUpdater.this, FileLoader.FileDidUpload); NotificationCenter.getInstance().addObserver(AvatarUpdater.this, FileLoader.FileDidFailUpload); FileLoader.getInstance().uploadFile(uploadingAvatar, false); } } } @Override public void didFinishCrop(Bitmap bitmap) { processBitmap(bitmap); } @Override public void didReceivedNotification(int id, final Object... args) { if (id == FileLoader.FileDidUpload) { String location = (String)args[0]; if (uploadingAvatar != null && location.equals(uploadingAvatar)) { Utilities.RunOnUIThread(new Runnable() { @Override public void run() { NotificationCenter.getInstance().removeObserver(AvatarUpdater.this, FileLoader.FileDidUpload); NotificationCenter.getInstance().removeObserver(AvatarUpdater.this, FileLoader.FileDidFailUpload); if (delegate != null) { delegate.didUploadedPhoto((TLRPC.InputFile)args[1], smallPhoto, bigPhoto); } uploadingAvatar = null; if (clearAfterUpdate) { parentFragment = null; delegate = null; } } }); } } else if (id == FileLoader.FileDidFailUpload) { String location = (String)args[0]; if (uploadingAvatar != null && location.equals(uploadingAvatar)) { Utilities.RunOnUIThread(new Runnable() { @Override public void run() { NotificationCenter.getInstance().removeObserver(AvatarUpdater.this, FileLoader.FileDidUpload); NotificationCenter.getInstance().removeObserver(AvatarUpdater.this, FileLoader.FileDidFailUpload); uploadingAvatar = null; if (clearAfterUpdate) { parentFragment = null; delegate = null; } } }); } } } }