package ml.docilealligator.infinityforreddit.activities; import android.app.job.JobInfo; import android.app.job.JobScheduler; import android.content.ActivityNotFoundException; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; import android.content.res.Resources; import android.net.Uri; import android.os.Build; import android.os.Bundle; import android.os.Handler; import android.os.PersistableBundle; import android.provider.MediaStore; import android.view.Menu; import android.view.MenuItem; import android.view.View; import android.widget.Toast; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.annotation.OptIn; import androidx.media3.common.MediaItem; import androidx.media3.common.Player; import androidx.media3.common.util.UnstableApi; import androidx.media3.common.util.Util; import androidx.media3.datasource.DataSource; import androidx.media3.datasource.DefaultDataSourceFactory; import androidx.media3.exoplayer.ExoPlayer; import androidx.media3.exoplayer.source.ProgressiveMediaSource; import androidx.recyclerview.widget.LinearLayoutManager; import com.bumptech.glide.Glide; import com.bumptech.glide.RequestManager; import com.bumptech.glide.request.RequestOptions; import com.google.android.material.dialog.MaterialAlertDialogBuilder; import com.google.android.material.snackbar.Snackbar; import org.greenrobot.eventbus.EventBus; import org.greenrobot.eventbus.Subscribe; import java.util.concurrent.Executor; import javax.inject.Inject; import javax.inject.Named; import jp.wasabeef.glide.transformations.RoundedCornersTransformation; import ml.docilealligator.infinityforreddit.subreddit.Flair; import ml.docilealligator.infinityforreddit.Infinity; import ml.docilealligator.infinityforreddit.R; import ml.docilealligator.infinityforreddit.RedditDataRoomDatabase; import ml.docilealligator.infinityforreddit.thing.SelectThingReturnKey; import ml.docilealligator.infinityforreddit.account.Account; import ml.docilealligator.infinityforreddit.adapters.MarkdownBottomBarRecyclerViewAdapter; import ml.docilealligator.infinityforreddit.asynctasks.LoadSubredditIcon; import ml.docilealligator.infinityforreddit.bottomsheetfragments.AccountChooserBottomSheetFragment; import ml.docilealligator.infinityforreddit.bottomsheetfragments.FlairBottomSheetFragment; import ml.docilealligator.infinityforreddit.customtheme.CustomThemeWrapper; import ml.docilealligator.infinityforreddit.customviews.LinearLayoutManagerBugFixed; import ml.docilealligator.infinityforreddit.databinding.ActivityPostVideoBinding; import ml.docilealligator.infinityforreddit.events.SubmitVideoOrGifPostEvent; import ml.docilealligator.infinityforreddit.events.SwitchAccountEvent; import ml.docilealligator.infinityforreddit.services.SubmitPostService; import ml.docilealligator.infinityforreddit.utils.SharedPreferencesUtils; import retrofit2.Retrofit; public class PostVideoActivity extends BaseActivity implements FlairBottomSheetFragment.FlairSelectionCallback, AccountChooserBottomSheetFragment.AccountChooserListener { static final String EXTRA_SUBREDDIT_NAME = "ESN"; private static final String SELECTED_ACCOUNT_STATE = "SAS"; private static final String SUBREDDIT_NAME_STATE = "SNS"; private static final String SUBREDDIT_ICON_STATE = "SIS"; private static final String SUBREDDIT_SELECTED_STATE = "SSS"; private static final String SUBREDDIT_IS_USER_STATE = "SIUS"; private static final String VIDEO_URI_STATE = "IUS"; private static final String LOAD_SUBREDDIT_ICON_STATE = "LSIS"; private static final String IS_POSTING_STATE = "IPS"; private static final String FLAIR_STATE = "FS"; private static final String IS_SPOILER_STATE = "ISS"; private static final String IS_NSFW_STATE = "INS"; private static final int SUBREDDIT_SELECTION_REQUEST_CODE = 0; private static final int PICK_VIDEO_REQUEST_CODE = 1; private static final int CAPTURE_VIDEO_REQUEST_CODE = 2; @Inject @Named("no_oauth") Retrofit mRetrofit; @Inject @Named("oauth") Retrofit mOauthRetrofit; @Inject @Named("upload_media") Retrofit mUploadMediaRetrofit; @Inject @Named("upload_video") Retrofit mUploadVideoRetrofit; @Inject RedditDataRoomDatabase mRedditDataRoomDatabase; @Inject @Named("default") SharedPreferences mSharedPreferences; @Inject @Named("current_account") SharedPreferences mCurrentAccountSharedPreferences; @Inject CustomThemeWrapper mCustomThemeWrapper; @Inject Executor mExecutor; private Account selectedAccount; private String iconUrl; private String subredditName; private boolean subredditSelected = false; private boolean subredditIsUser; private Uri videoUri; private boolean loadSubredditIconSuccessful = true; private boolean isPosting; private boolean wasPlaying; private int primaryTextColor; private int flairBackgroundColor; private int flairTextColor; private int spoilerBackgroundColor; private int spoilerTextColor; private int nsfwBackgroundColor; private int nsfwTextColor; private Flair flair; private boolean isSpoiler = false; private boolean isNSFW = false; private Resources resources; private Menu mMemu; private RequestManager mGlide; private FlairBottomSheetFragment mFlairSelectionBottomSheetFragment; private Snackbar mPostingSnackbar; private DataSource.Factory dataSourceFactory; private ExoPlayer player; private ActivityPostVideoBinding binding; @OptIn(markerClass = UnstableApi.class) @Override protected void onCreate(Bundle savedInstanceState) { ((Infinity) getApplication()).getAppComponent().inject(this); setImmersiveModeNotApplicable(); super.onCreate(savedInstanceState); binding = ActivityPostVideoBinding.inflate(getLayoutInflater()); setContentView(binding.getRoot()); EventBus.getDefault().register(this); applyCustomTheme(); if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && isChangeStatusBarIconColor()) { addOnOffsetChangedListener(binding.appbarLayoutPostVideoActivity); } setSupportActionBar(binding.toolbarPostVideoActivity); getSupportActionBar().setDisplayHomeAsUpEnabled(true); mGlide = Glide.with(this); player = new ExoPlayer.Builder(this).build(); binding.playerViewPostVideoActivity.setPlayer(player); dataSourceFactory = new DefaultDataSourceFactory(this, Util.getUserAgent(this, "Infinity")); if (mSharedPreferences.getBoolean(SharedPreferencesUtils.LOOP_VIDEO, true)) { player.setRepeatMode(Player.REPEAT_MODE_ALL); } else { player.setRepeatMode(Player.REPEAT_MODE_OFF); } mPostingSnackbar = Snackbar.make(binding.coordinatorLayoutPostVideoActivity, R.string.posting, Snackbar.LENGTH_INDEFINITE); resources = getResources(); if (savedInstanceState != null) { selectedAccount = savedInstanceState.getParcelable(SELECTED_ACCOUNT_STATE); subredditName = savedInstanceState.getString(SUBREDDIT_NAME_STATE); iconUrl = savedInstanceState.getString(SUBREDDIT_ICON_STATE); subredditSelected = savedInstanceState.getBoolean(SUBREDDIT_SELECTED_STATE); subredditIsUser = savedInstanceState.getBoolean(SUBREDDIT_IS_USER_STATE); loadSubredditIconSuccessful = savedInstanceState.getBoolean(LOAD_SUBREDDIT_ICON_STATE); isPosting = savedInstanceState.getBoolean(IS_POSTING_STATE); flair = savedInstanceState.getParcelable(FLAIR_STATE); isSpoiler = savedInstanceState.getBoolean(IS_SPOILER_STATE); isNSFW = savedInstanceState.getBoolean(IS_NSFW_STATE); if (selectedAccount != null) { mGlide.load(selectedAccount.getProfileImageUrl()) .apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(72, 0))) .error(mGlide.load(R.drawable.subreddit_default_icon) .apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(72, 0)))) .into(binding.accountIconGifImageViewPostVideoActivity); binding.accountNameTextViewPostVideoActivity.setText(selectedAccount.getAccountName()); } else { loadCurrentAccount(); } if (savedInstanceState.getString(VIDEO_URI_STATE) != null) { videoUri = Uri.parse(savedInstanceState.getString(VIDEO_URI_STATE)); loadVideo(); } if (subredditName != null) { binding.subredditNameTextViewPostVideoActivity.setTextColor(primaryTextColor); binding.subredditNameTextViewPostVideoActivity.setText(subredditName); binding.flairCustomTextViewPostVideoActivity.setVisibility(View.VISIBLE); if (!loadSubredditIconSuccessful) { loadSubredditIcon(); } } displaySubredditIcon(); if (isPosting) { mPostingSnackbar.show(); } if (flair != null) { binding.flairCustomTextViewPostVideoActivity.setText(flair.getText()); binding.flairCustomTextViewPostVideoActivity.setBackgroundColor(flairBackgroundColor); binding.flairCustomTextViewPostVideoActivity.setBorderColor(flairBackgroundColor); binding.flairCustomTextViewPostVideoActivity.setTextColor(flairTextColor); } if (isSpoiler) { binding.spoilerCustomTextViewPostVideoActivity.setBackgroundColor(spoilerBackgroundColor); binding.spoilerCustomTextViewPostVideoActivity.setBorderColor(spoilerBackgroundColor); binding.spoilerCustomTextViewPostVideoActivity.setTextColor(spoilerTextColor); } if (isNSFW) { binding.nsfwCustomTextViewPostVideoActivity.setBackgroundColor(nsfwBackgroundColor); binding.nsfwCustomTextViewPostVideoActivity.setBorderColor(nsfwBackgroundColor); binding.nsfwCustomTextViewPostVideoActivity.setTextColor(nsfwTextColor); } } else { isPosting = false; loadCurrentAccount(); if (getIntent().hasExtra(EXTRA_SUBREDDIT_NAME)) { loadSubredditIconSuccessful = false; subredditName = getIntent().getStringExtra(EXTRA_SUBREDDIT_NAME); subredditSelected = true; binding.subredditNameTextViewPostVideoActivity.setTextColor(primaryTextColor); binding.subredditNameTextViewPostVideoActivity.setText(subredditName); binding.flairCustomTextViewPostVideoActivity.setVisibility(View.VISIBLE); loadSubredditIcon(); } else { mGlide.load(R.drawable.subreddit_default_icon) .apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(72, 0))) .into(binding.subredditIconGifImageViewPostVideoActivity); } videoUri = getIntent().getData(); if (videoUri != null) { loadVideo(); } } binding.accountLinearLayoutPostVideoActivity.setOnClickListener(view -> { AccountChooserBottomSheetFragment fragment = new AccountChooserBottomSheetFragment(); fragment.show(getSupportFragmentManager(), fragment.getTag()); }); binding.subredditRelativeLayoutPostVideoActivity.setOnClickListener(view -> { Intent intent = new Intent(this, SubscribedThingListingActivity.class); intent.putExtra(SubscribedThingListingActivity.EXTRA_SPECIFIED_ACCOUNT, selectedAccount); intent.putExtra(SubscribedThingListingActivity.EXTRA_THING_SELECTION_MODE, true); intent.putExtra(SubscribedThingListingActivity.EXTRA_THING_SELECTION_TYPE, SubscribedThingListingActivity.EXTRA_THING_SELECTION_TYPE_SUBREDDIT); startActivityForResult(intent, SUBREDDIT_SELECTION_REQUEST_CODE); }); binding.rulesButtonPostVideoActivity.setOnClickListener(view -> { if (subredditName == null) { Snackbar.make(binding.coordinatorLayoutPostVideoActivity, R.string.select_a_subreddit, Snackbar.LENGTH_SHORT).show(); } else { Intent intent = new Intent(this, RulesActivity.class); if (subredditIsUser) { intent.putExtra(RulesActivity.EXTRA_SUBREDDIT_NAME, "u_" + subredditName); } else { intent.putExtra(RulesActivity.EXTRA_SUBREDDIT_NAME, subredditName); } startActivity(intent); } }); binding.flairCustomTextViewPostVideoActivity.setOnClickListener(view -> { if (flair == null) { mFlairSelectionBottomSheetFragment = new FlairBottomSheetFragment(); Bundle bundle = new Bundle(); bundle.putString(FlairBottomSheetFragment.EXTRA_SUBREDDIT_NAME, subredditName); mFlairSelectionBottomSheetFragment.setArguments(bundle); mFlairSelectionBottomSheetFragment.show(getSupportFragmentManager(), mFlairSelectionBottomSheetFragment.getTag()); } else { binding.flairCustomTextViewPostVideoActivity.setBackgroundColor(resources.getColor(android.R.color.transparent)); binding.flairCustomTextViewPostVideoActivity.setTextColor(primaryTextColor); binding.flairCustomTextViewPostVideoActivity.setText(getString(R.string.flair)); flair = null; } }); binding.spoilerCustomTextViewPostVideoActivity.setOnClickListener(view -> { if (!isSpoiler) { binding.spoilerCustomTextViewPostVideoActivity.setBackgroundColor(spoilerBackgroundColor); binding.spoilerCustomTextViewPostVideoActivity.setBorderColor(spoilerBackgroundColor); binding.spoilerCustomTextViewPostVideoActivity.setTextColor(spoilerTextColor); isSpoiler = true; } else { binding.spoilerCustomTextViewPostVideoActivity.setBackgroundColor(resources.getColor(android.R.color.transparent)); binding.spoilerCustomTextViewPostVideoActivity.setTextColor(primaryTextColor); isSpoiler = false; } }); binding.nsfwCustomTextViewPostVideoActivity.setOnClickListener(view -> { if (!isNSFW) { binding.nsfwCustomTextViewPostVideoActivity.setBackgroundColor(nsfwBackgroundColor); binding.nsfwCustomTextViewPostVideoActivity.setBorderColor(nsfwBackgroundColor); binding.nsfwCustomTextViewPostVideoActivity.setTextColor(nsfwTextColor); isNSFW = true; } else { binding.nsfwCustomTextViewPostVideoActivity.setBackgroundColor(resources.getColor(android.R.color.transparent)); binding.nsfwCustomTextViewPostVideoActivity.setTextColor(primaryTextColor); isNSFW = false; } }); binding.receivePostReplyNotificationsLinearLayoutPostVideoActivity.setOnClickListener(view -> { binding.receivePostReplyNotificationsSwitchMaterialPostVideoActivity.performClick(); }); binding.captureFabPostVideoActivity.setOnClickListener(view -> { Intent takeVideoIntent = new Intent(MediaStore.ACTION_VIDEO_CAPTURE); try { startActivityForResult(takeVideoIntent, CAPTURE_VIDEO_REQUEST_CODE); } catch (ActivityNotFoundException e) { Toast.makeText(this, R.string.no_camera_available, Toast.LENGTH_SHORT).show(); } }); binding.selectFromLibraryFabPostVideoActivity.setOnClickListener(view -> { Intent intent = new Intent(); intent.setType("video/*"); intent.setAction(Intent.ACTION_GET_CONTENT); startActivityForResult(Intent.createChooser(intent, resources.getString(R.string.select_from_gallery)), PICK_VIDEO_REQUEST_CODE); }); binding.selectAgainTextViewPostVideoActivity.setOnClickListener(view -> { wasPlaying = false; player.setPlayWhenReady(false); videoUri = null; binding.playerViewPostVideoActivity.setVisibility(View.GONE); binding.selectAgainTextViewPostVideoActivity.setVisibility(View.GONE); binding.selectVideoConstraintLayoutPostVideoActivity.setVisibility(View.VISIBLE); }); MarkdownBottomBarRecyclerViewAdapter adapter = new MarkdownBottomBarRecyclerViewAdapter( mCustomThemeWrapper, new MarkdownBottomBarRecyclerViewAdapter.ItemClickListener() { @Override public void onClick(int item) { MarkdownBottomBarRecyclerViewAdapter.bindEditTextWithItemClickListener( PostVideoActivity.this, binding.postContentEditTextPostVideoActivity, item); } @Override public void onUploadImage() { } }); binding.markdownBottomBarRecyclerViewPostVideoActivity.setLayoutManager(new LinearLayoutManagerBugFixed(this, LinearLayoutManager.HORIZONTAL, true).setStackFromEndAndReturnCurrentObject()); binding.markdownBottomBarRecyclerViewPostVideoActivity.setAdapter(adapter); } private void loadCurrentAccount() { Handler handler = new Handler(); mExecutor.execute(() -> { Account account = mRedditDataRoomDatabase.accountDao().getCurrentAccount(); selectedAccount = account; handler.post(() -> { if (!isFinishing() && !isDestroyed() && account != null) { mGlide.load(account.getProfileImageUrl()) .apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(72, 0))) .error(mGlide.load(R.drawable.subreddit_default_icon) .apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(72, 0)))) .into(binding.accountIconGifImageViewPostVideoActivity); binding.accountNameTextViewPostVideoActivity.setText(account.getAccountName()); } }); }); } @Override public SharedPreferences getDefaultSharedPreferences() { return mSharedPreferences; } @Override public SharedPreferences getCurrentAccountSharedPreferences() { return mCurrentAccountSharedPreferences; } @Override public CustomThemeWrapper getCustomThemeWrapper() { return mCustomThemeWrapper; } @Override protected void applyCustomTheme() { binding.coordinatorLayoutPostVideoActivity.setBackgroundColor(mCustomThemeWrapper.getBackgroundColor()); applyAppBarLayoutAndCollapsingToolbarLayoutAndToolbarTheme(binding.appbarLayoutPostVideoActivity, null, binding.toolbarPostVideoActivity); primaryTextColor = mCustomThemeWrapper.getPrimaryTextColor(); binding.accountNameTextViewPostVideoActivity.setTextColor(primaryTextColor); int secondaryTextColor = mCustomThemeWrapper.getSecondaryTextColor(); binding.subredditNameTextViewPostVideoActivity.setTextColor(secondaryTextColor); binding.rulesButtonPostVideoActivity.setTextColor(mCustomThemeWrapper.getButtonTextColor()); binding.rulesButtonPostVideoActivity.setBackgroundColor(mCustomThemeWrapper.getColorPrimaryLightTheme()); binding.receivePostReplyNotificationsTextViewPostVideoActivity.setTextColor(primaryTextColor); int dividerColor = mCustomThemeWrapper.getDividerColor(); binding.divider1PostVideoActivity.setDividerColor(dividerColor); binding.divider2PostVideoActivity.setDividerColor(dividerColor); flairBackgroundColor = mCustomThemeWrapper.getFlairBackgroundColor(); flairTextColor = mCustomThemeWrapper.getFlairTextColor(); spoilerBackgroundColor = mCustomThemeWrapper.getSpoilerBackgroundColor(); spoilerTextColor = mCustomThemeWrapper.getSpoilerTextColor(); nsfwBackgroundColor = mCustomThemeWrapper.getNsfwBackgroundColor(); nsfwTextColor = mCustomThemeWrapper.getNsfwTextColor(); binding.flairCustomTextViewPostVideoActivity.setTextColor(primaryTextColor); binding.spoilerCustomTextViewPostVideoActivity.setTextColor(primaryTextColor); binding.nsfwCustomTextViewPostVideoActivity.setTextColor(primaryTextColor); binding.postTitleEditTextPostVideoActivity.setTextColor(primaryTextColor); binding.postTitleEditTextPostVideoActivity.setHintTextColor(secondaryTextColor); binding.postContentEditTextPostVideoActivity.setTextColor(primaryTextColor); binding.postContentEditTextPostVideoActivity.setHintTextColor(secondaryTextColor); applyFABTheme(binding.captureFabPostVideoActivity); applyFABTheme(binding.selectFromLibraryFabPostVideoActivity); binding.selectAgainTextViewPostVideoActivity.setTextColor(mCustomThemeWrapper.getColorAccent()); if (typeface != null) { binding.subredditNameTextViewPostVideoActivity.setTypeface(typeface); binding.rulesButtonPostVideoActivity.setTypeface(typeface); binding.receivePostReplyNotificationsTextViewPostVideoActivity.setTypeface(typeface); binding.flairCustomTextViewPostVideoActivity.setTypeface(typeface); binding.spoilerCustomTextViewPostVideoActivity.setTypeface(typeface); binding.nsfwCustomTextViewPostVideoActivity.setTypeface(typeface); binding.postTitleEditTextPostVideoActivity.setTypeface(typeface); binding.selectAgainTextViewPostVideoActivity.setTypeface(typeface); } if (contentTypeface != null) { binding.postContentEditTextPostVideoActivity.setTypeface(contentTypeface); } } @OptIn(markerClass = UnstableApi.class) private void loadVideo() { binding.selectVideoConstraintLayoutPostVideoActivity.setVisibility(View.GONE); binding.selectAgainTextViewPostVideoActivity.setVisibility(View.VISIBLE); binding.playerViewPostVideoActivity.setVisibility(View.VISIBLE); player.prepare(new ProgressiveMediaSource.Factory(dataSourceFactory).createMediaSource(MediaItem.fromUri(videoUri))); player.setPlayWhenReady(true); wasPlaying = true; } private void displaySubredditIcon() { if (iconUrl != null && !iconUrl.isEmpty()) { mGlide.load(iconUrl) .apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(72, 0))) .error(mGlide.load(R.drawable.subreddit_default_icon) .apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(72, 0)))) .into(binding.subredditIconGifImageViewPostVideoActivity); } else { mGlide.load(R.drawable.subreddit_default_icon) .apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(72, 0))) .into(binding.subredditIconGifImageViewPostVideoActivity); } } private void loadSubredditIcon() { LoadSubredditIcon.loadSubredditIcon(mExecutor, new Handler(), mRedditDataRoomDatabase, subredditName, accessToken, accountName, mOauthRetrofit, mRetrofit, iconImageUrl -> { iconUrl = iconImageUrl; displaySubredditIcon(); loadSubredditIconSuccessful = true; }); } private void promptAlertDialog(int titleResId, int messageResId) { new MaterialAlertDialogBuilder(this, R.style.MaterialAlertDialogTheme) .setTitle(titleResId) .setMessage(messageResId) .setPositiveButton(R.string.discard_dialog_button, (dialogInterface, i) -> finish()) .setNegativeButton(R.string.no, null) .show(); } @Override public boolean onCreateOptionsMenu(Menu menu) { getMenuInflater().inflate(R.menu.post_video_activity, menu); applyMenuItemTheme(menu); mMemu = menu; if (isPosting) { mMemu.findItem(R.id.action_send_post_video_activity).setEnabled(false); mMemu.findItem(R.id.action_send_post_video_activity).getIcon().setAlpha(130); } return true; } @Override public boolean onOptionsItemSelected(@NonNull MenuItem item) { int itemId = item.getItemId(); if (itemId == android.R.id.home) { if (isPosting) { promptAlertDialog(R.string.exit_when_submit, R.string.exit_when_submit_post_detail); return true; } else { if (!binding.postTitleEditTextPostVideoActivity.getText().toString().isEmpty() || !binding.postContentEditTextPostVideoActivity.getText().toString().isEmpty() || videoUri != null) { promptAlertDialog(R.string.discard, R.string.discard_detail); return true; } } finish(); return true; } else if (itemId == R.id.action_send_post_video_activity) { if (!subredditSelected) { Snackbar.make(binding.coordinatorLayoutPostVideoActivity, R.string.select_a_subreddit, Snackbar.LENGTH_SHORT).show(); return true; } if (binding.postTitleEditTextPostVideoActivity.getText() == null || binding.postTitleEditTextPostVideoActivity.getText().toString().isEmpty()) { Snackbar.make(binding.coordinatorLayoutPostVideoActivity, R.string.title_required, Snackbar.LENGTH_SHORT).show(); return true; } if (videoUri == null) { Snackbar.make(binding.coordinatorLayoutPostVideoActivity, R.string.select_an_image, Snackbar.LENGTH_SHORT).show(); return true; } isPosting = true; item.setEnabled(false); item.getIcon().setAlpha(130); mPostingSnackbar.show(); String subredditName; if (subredditIsUser) { subredditName = "u_" + binding.subredditNameTextViewPostVideoActivity.getText().toString(); } else { subredditName = binding.subredditNameTextViewPostVideoActivity.getText().toString(); } /*Intent intent = new Intent(this, SubmitPostService.class); intent.putExtra(SubmitPostService.EXTRA_MEDIA_URI, videoUri.toString()); intent.putExtra(SubmitPostService.EXTRA_ACCOUNT, selectedAccount); intent.putExtra(SubmitPostService.EXTRA_SUBREDDIT_NAME, subredditName); intent.putExtra(SubmitPostService.EXTRA_TITLE, binding.postTitleEditTextPostVideoActivity.getText().toString()); intent.putExtra(SubmitPostService.EXTRA_CONTENT, binding.postContentEditTextPostVideoActivity.getText().toString()); intent.putExtra(SubmitPostService.EXTRA_FLAIR, flair); intent.putExtra(SubmitPostService.EXTRA_IS_SPOILER, isSpoiler); intent.putExtra(SubmitPostService.EXTRA_IS_NSFW, isNSFW); intent.putExtra(SubmitPostService.EXTRA_RECEIVE_POST_REPLY_NOTIFICATIONS, binding.receivePostReplyNotificationsSwitchMaterialPostVideoActivity.isChecked()); intent.putExtra(SubmitPostService.EXTRA_POST_TYPE, SubmitPostService.EXTRA_POST_TYPE_VIDEO); intent.addFlags(Intent.FLAG_GRANT_READ_URI_PERMISSION); ContextCompat.startForegroundService(this, intent);*/ int contentEstimatedBytes = 0; PersistableBundle extras = new PersistableBundle(); //TODO estimate video size extras.putString(SubmitPostService.EXTRA_MEDIA_URI, videoUri.toString()); extras.putString(SubmitPostService.EXTRA_ACCOUNT, selectedAccount.getJSONModel()); extras.putString(SubmitPostService.EXTRA_SUBREDDIT_NAME, subredditName); String title = binding.postTitleEditTextPostVideoActivity.getText().toString(); contentEstimatedBytes += title.length() * 2; extras.putString(SubmitPostService.EXTRA_TITLE, title); String content = binding.postContentEditTextPostVideoActivity.getText().toString(); contentEstimatedBytes += content.length() * 2; extras.putString(SubmitPostService.EXTRA_CONTENT, content); if (flair != null) { extras.putString(SubmitPostService.EXTRA_FLAIR, flair.getJSONModel()); } extras.putInt(SubmitPostService.EXTRA_IS_SPOILER, isSpoiler ? 1 : 0); extras.putInt(SubmitPostService.EXTRA_IS_NSFW, isNSFW ? 1 : 0); extras.putInt(SubmitPostService.EXTRA_RECEIVE_POST_REPLY_NOTIFICATIONS, binding.receivePostReplyNotificationsSwitchMaterialPostVideoActivity.isChecked() ? 1 : 0); extras.putInt(SubmitPostService.EXTRA_POST_TYPE, SubmitPostService.EXTRA_POST_TYPE_VIDEO); // TODO: contentEstimatedBytes JobInfo jobInfo = SubmitPostService.constructJobInfo(this, contentEstimatedBytes, extras); ((JobScheduler) getSystemService(Context.JOB_SCHEDULER_SERVICE)).schedule(jobInfo); return true; } return false; } @Override public void onBackPressed() { if (isPosting) { promptAlertDialog(R.string.exit_when_submit, R.string.exit_when_submit_post_detail); } else { if (!binding.postTitleEditTextPostVideoActivity.getText().toString().isEmpty() || !binding.postContentEditTextPostVideoActivity.getText().toString().isEmpty() || videoUri != null) { promptAlertDialog(R.string.discard, R.string.discard_detail); } else { finish(); } } } @Override protected void onStart() { super.onStart(); if (wasPlaying) { player.setPlayWhenReady(true); } } @Override protected void onStop() { super.onStop(); player.setPlayWhenReady(false); } @Override protected void onSaveInstanceState(@NonNull Bundle outState) { super.onSaveInstanceState(outState); outState.putParcelable(SELECTED_ACCOUNT_STATE, selectedAccount); outState.putString(SUBREDDIT_NAME_STATE, subredditName); outState.putString(SUBREDDIT_ICON_STATE, iconUrl); outState.putBoolean(SUBREDDIT_SELECTED_STATE, subredditSelected); outState.putBoolean(SUBREDDIT_IS_USER_STATE, subredditIsUser); if (videoUri != null) { outState.putString(VIDEO_URI_STATE, videoUri.toString()); } outState.putBoolean(LOAD_SUBREDDIT_ICON_STATE, loadSubredditIconSuccessful); outState.putBoolean(IS_POSTING_STATE, isPosting); outState.putParcelable(FLAIR_STATE, flair); outState.putBoolean(IS_SPOILER_STATE, isSpoiler); outState.putBoolean(IS_NSFW_STATE, isNSFW); } @Override protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) { super.onActivityResult(requestCode, resultCode, data); if (requestCode == SUBREDDIT_SELECTION_REQUEST_CODE) { if (resultCode == RESULT_OK) { if (data != null) { subredditName = data.getStringExtra(SelectThingReturnKey.RETURN_EXTRA_SUBREDDIT_OR_USER_NAME); iconUrl = data.getStringExtra(SelectThingReturnKey.RETURN_EXTRA_SUBREDDIT_OR_USER_ICON); subredditSelected = true; subredditIsUser = data.getIntExtra(SelectThingReturnKey.RETURN_EXTRA_THING_TYPE, SelectThingReturnKey.THING_TYPE.SUBREDDIT) == SelectThingReturnKey.THING_TYPE.USER; binding.subredditNameTextViewPostVideoActivity.setTextColor(primaryTextColor); binding.subredditNameTextViewPostVideoActivity.setText(subredditName); displaySubredditIcon(); binding.flairCustomTextViewPostVideoActivity.setVisibility(View.VISIBLE); binding.flairCustomTextViewPostVideoActivity.setBackgroundColor(resources.getColor(android.R.color.transparent)); binding.flairCustomTextViewPostVideoActivity.setTextColor(primaryTextColor); binding.flairCustomTextViewPostVideoActivity.setText(getString(R.string.flair)); flair = null; } } } else if (requestCode == PICK_VIDEO_REQUEST_CODE) { if (resultCode == RESULT_OK) { if (data == null) { Snackbar.make(binding.coordinatorLayoutPostVideoActivity, R.string.error_getting_video, Snackbar.LENGTH_SHORT).show(); return; } videoUri = data.getData(); loadVideo(); } } else if (requestCode == CAPTURE_VIDEO_REQUEST_CODE) { if (resultCode == RESULT_OK) { if (data != null && data.getData() != null) { videoUri = data.getData(); loadVideo(); } else { Snackbar.make(binding.coordinatorLayoutPostVideoActivity, R.string.error_getting_video, Snackbar.LENGTH_SHORT).show(); } } } } @Override protected void onDestroy() { EventBus.getDefault().unregister(this); super.onDestroy(); player.seekToDefaultPosition(); player.stop(); player.release(); } @Override public void flairSelected(Flair flair) { this.flair = flair; binding.flairCustomTextViewPostVideoActivity.setText(flair.getText()); binding.flairCustomTextViewPostVideoActivity.setBackgroundColor(flairBackgroundColor); binding.flairCustomTextViewPostVideoActivity.setBorderColor(flairBackgroundColor); binding.flairCustomTextViewPostVideoActivity.setTextColor(flairTextColor); } @Override public void onAccountSelected(Account account) { if (account != null) { selectedAccount = account; mGlide.load(selectedAccount.getProfileImageUrl()) .apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(72, 0))) .error(mGlide.load(R.drawable.subreddit_default_icon) .apply(RequestOptions.bitmapTransform(new RoundedCornersTransformation(72, 0)))) .into(binding.accountIconGifImageViewPostVideoActivity); binding.accountNameTextViewPostVideoActivity.setText(selectedAccount.getAccountName()); } } @Subscribe public void onAccountSwitchEvent(SwitchAccountEvent event) { finish(); } @Subscribe public void onSubmitVideoPostEvent(SubmitVideoOrGifPostEvent submitVideoOrGifPostEvent) { isPosting = false; mPostingSnackbar.dismiss(); mMemu.findItem(R.id.action_send_post_video_activity).setEnabled(true); mMemu.findItem(R.id.action_send_post_video_activity).getIcon().setAlpha(255); if (submitVideoOrGifPostEvent.postSuccess) { Intent intent = new Intent(this, ViewUserDetailActivity.class); intent.putExtra(ViewUserDetailActivity.EXTRA_USER_NAME_KEY, accountName); startActivity(intent); finish(); } else if (submitVideoOrGifPostEvent.errorProcessingVideoOrGif) { Snackbar.make(binding.coordinatorLayoutPostVideoActivity, R.string.error_processing_video, Snackbar.LENGTH_SHORT).show(); } else { if (submitVideoOrGifPostEvent.errorMessage == null || submitVideoOrGifPostEvent.errorMessage.isEmpty()) { Snackbar.make(binding.coordinatorLayoutPostVideoActivity, R.string.post_failed, Snackbar.LENGTH_SHORT).show(); } else { Snackbar.make(binding.coordinatorLayoutPostVideoActivity, submitVideoOrGifPostEvent.errorMessage.substring(0, 1).toUpperCase() + submitVideoOrGifPostEvent.errorMessage.substring(1), Snackbar.LENGTH_SHORT).show(); } } } }