2015-09-04 02:15:03 +02:00
|
|
|
package org.schabi.newpipe;
|
|
|
|
|
|
|
|
import android.app.Activity;
|
2016-02-08 18:46:42 +01:00
|
|
|
import android.content.Context;
|
|
|
|
import android.content.DialogInterface;
|
2015-10-25 19:13:44 +01:00
|
|
|
import android.content.Intent;
|
2016-02-05 17:09:29 +01:00
|
|
|
import android.content.res.TypedArray;
|
2015-09-04 02:15:03 +02:00
|
|
|
import android.graphics.Bitmap;
|
|
|
|
import android.graphics.BitmapFactory;
|
2015-12-14 11:01:34 +01:00
|
|
|
import android.graphics.Point;
|
2015-12-28 00:32:38 +01:00
|
|
|
import android.net.Uri;
|
2015-12-15 22:53:29 +01:00
|
|
|
import android.os.Build;
|
2015-09-04 02:15:03 +02:00
|
|
|
import android.os.Bundle;
|
|
|
|
import android.os.Handler;
|
2015-09-21 01:10:11 +02:00
|
|
|
import android.preference.PreferenceManager;
|
|
|
|
import android.support.design.widget.FloatingActionButton;
|
2015-09-04 02:15:03 +02:00
|
|
|
import android.support.v4.app.Fragment;
|
2016-02-08 18:46:42 +01:00
|
|
|
import android.support.v7.app.AlertDialog;
|
2015-10-29 17:56:35 +01:00
|
|
|
import android.support.v7.app.AppCompatActivity;
|
2015-09-04 02:15:03 +02:00
|
|
|
import android.text.Html;
|
|
|
|
import android.text.method.LinkMovementMethod;
|
|
|
|
import android.util.Log;
|
|
|
|
import android.view.LayoutInflater;
|
2015-10-29 17:56:35 +01:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
2016-02-05 17:09:29 +01:00
|
|
|
import android.view.MotionEvent;
|
2015-09-04 02:15:03 +02:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2015-10-25 19:13:44 +01:00
|
|
|
import android.widget.Button;
|
|
|
|
import android.widget.FrameLayout;
|
2015-09-04 02:15:03 +02:00
|
|
|
import android.widget.ImageView;
|
2016-02-05 17:09:29 +01:00
|
|
|
import android.widget.LinearLayout;
|
2015-09-04 02:15:03 +02:00
|
|
|
import android.widget.ProgressBar;
|
2015-09-21 01:10:11 +02:00
|
|
|
import android.widget.RelativeLayout;
|
2015-09-04 02:15:03 +02:00
|
|
|
import android.widget.TextView;
|
2015-10-29 17:56:35 +01:00
|
|
|
import android.view.MenuItem;
|
2015-12-28 00:32:38 +01:00
|
|
|
import android.widget.Toast;
|
2015-09-04 02:15:03 +02:00
|
|
|
|
2016-01-31 19:57:30 +01:00
|
|
|
import java.io.IOException;
|
2016-02-05 17:09:29 +01:00
|
|
|
|
|
|
|
import com.nostra13.universalimageloader.core.DisplayImageOptions;
|
|
|
|
import com.nostra13.universalimageloader.core.ImageLoader;
|
|
|
|
import com.nostra13.universalimageloader.core.assist.FailReason;
|
|
|
|
import com.nostra13.universalimageloader.core.listener.ImageLoadingListener;
|
|
|
|
|
2015-11-19 15:40:35 +01:00
|
|
|
import java.util.ArrayList;
|
2015-09-04 02:15:03 +02:00
|
|
|
import java.util.Vector;
|
|
|
|
|
2016-02-18 11:50:22 +01:00
|
|
|
import org.schabi.newpipe.extractor.MediaFormat;
|
|
|
|
import org.schabi.newpipe.extractor.ParsingException;
|
|
|
|
import org.schabi.newpipe.extractor.ServiceList;
|
|
|
|
import org.schabi.newpipe.extractor.StreamExtractor;
|
|
|
|
import org.schabi.newpipe.extractor.VideoPreviewInfo;
|
|
|
|
import org.schabi.newpipe.extractor.StreamingService;
|
|
|
|
import org.schabi.newpipe.extractor.VideoInfo;
|
|
|
|
import org.schabi.newpipe.extractor.services.youtube.YoutubeStreamExtractor;
|
2015-11-17 00:32:00 +01:00
|
|
|
|
2015-09-04 02:15:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Copyright (C) Christian Schabesberger 2015 <chris.schabesberger@mailbox.org>
|
|
|
|
* VideoItemDetailFragment.java is part of NewPipe.
|
|
|
|
*
|
|
|
|
* NewPipe is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* NewPipe is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with NewPipe. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
public class VideoItemDetailFragment extends Fragment {
|
|
|
|
|
|
|
|
private static final String TAG = VideoItemDetailFragment.class.toString();
|
2016-02-08 18:46:42 +01:00
|
|
|
private static final String KORE_PACKET = "org.xbmc.kore";
|
2015-09-04 02:15:03 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The fragment argument representing the item ID that this fragment
|
|
|
|
* represents.
|
|
|
|
*/
|
|
|
|
public static final String VIDEO_URL = "video_url";
|
|
|
|
public static final String STREAMING_SERVICE = "streaming_service";
|
2015-09-11 09:50:30 +02:00
|
|
|
public static final String AUTO_PLAY = "auto_play";
|
2015-09-04 02:15:03 +02:00
|
|
|
|
2015-10-29 17:56:35 +01:00
|
|
|
private AppCompatActivity activity;
|
|
|
|
private ActionBarHandler actionBarHandler;
|
2016-01-09 12:09:31 +01:00
|
|
|
private ProgressBar progressBar;
|
2015-10-29 17:56:35 +01:00
|
|
|
|
2015-12-25 00:09:35 +01:00
|
|
|
private int streamingServiceId = -1;
|
|
|
|
|
2015-09-11 09:50:30 +02:00
|
|
|
private boolean autoPlayEnabled = false;
|
2015-10-27 18:13:04 +01:00
|
|
|
private boolean showNextVideoItem = false;
|
2016-02-08 18:46:42 +01:00
|
|
|
private Bitmap videoThumbnail;
|
2015-10-27 18:13:04 +01:00
|
|
|
|
2015-12-14 11:01:34 +01:00
|
|
|
private View thumbnailWindowLayout;
|
2016-02-18 13:49:01 +01:00
|
|
|
//this only remains due to downwards compatibility
|
2015-12-14 11:01:34 +01:00
|
|
|
private FloatingActionButton playVideoButton;
|
|
|
|
private final Point initialThumbnailPos = new Point(0, 0);
|
|
|
|
|
2016-02-05 17:09:29 +01:00
|
|
|
|
|
|
|
private ImageLoader imageLoader = ImageLoader.getInstance();
|
|
|
|
private DisplayImageOptions displayImageOptions =
|
|
|
|
new DisplayImageOptions.Builder().cacheInMemory(true).build();
|
|
|
|
|
|
|
|
|
2015-10-29 17:56:35 +01:00
|
|
|
public interface OnInvokeCreateOptionsMenuListener {
|
|
|
|
void createOptionsMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
private OnInvokeCreateOptionsMenuListener onInvokeCreateOptionsMenuListener = null;
|
|
|
|
|
2015-11-26 17:29:26 +01:00
|
|
|
private class VideoExtractorRunnable implements Runnable {
|
2015-11-29 13:06:27 +01:00
|
|
|
private final Handler h = new Handler();
|
2016-02-12 01:29:14 +01:00
|
|
|
private StreamExtractor streamExtractor;
|
2015-11-29 13:06:27 +01:00
|
|
|
private final StreamingService service;
|
|
|
|
private final String videoUrl;
|
2015-11-02 22:29:43 +01:00
|
|
|
|
2015-11-29 13:06:27 +01:00
|
|
|
public VideoExtractorRunnable(String videoUrl, StreamingService service) {
|
2015-11-17 23:51:27 +01:00
|
|
|
this.service = service;
|
2015-09-04 02:15:03 +02:00
|
|
|
this.videoUrl = videoUrl;
|
|
|
|
}
|
2015-12-25 00:09:35 +01:00
|
|
|
|
2015-09-04 02:15:03 +02:00
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
try {
|
2016-02-12 01:29:14 +01:00
|
|
|
streamExtractor = service.getExtractorInstance(videoUrl, new Downloader());
|
|
|
|
VideoInfo videoInfo = VideoInfo.getVideoInfo(streamExtractor, new Downloader());
|
2016-02-05 17:09:29 +01:00
|
|
|
|
2015-09-04 02:15:03 +02:00
|
|
|
h.post(new VideoResultReturnedRunnable(videoInfo));
|
2016-01-31 19:57:30 +01:00
|
|
|
} catch (IOException e) {
|
|
|
|
postNewErrorToast(h, R.string.network_error);
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
// custom service related exceptions
|
2016-02-12 01:29:14 +01:00
|
|
|
catch (YoutubeStreamExtractor.DecryptException de) {
|
2016-01-31 19:57:30 +01:00
|
|
|
postNewErrorToast(h, R.string.youtube_signature_decryption_error);
|
|
|
|
de.printStackTrace();
|
2016-02-12 01:29:14 +01:00
|
|
|
} catch (YoutubeStreamExtractor.GemaException ge) {
|
2016-01-28 12:10:50 +01:00
|
|
|
h.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2016-01-31 19:57:30 +01:00
|
|
|
onErrorBlockedByGema();
|
|
|
|
}
|
|
|
|
});
|
2016-02-21 21:05:16 +01:00
|
|
|
} catch(YoutubeStreamExtractor.LiveStreamException e) {
|
|
|
|
h.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
onNotSpecifiedContentErrorWithMessage(R.string.live_streams_not_supported);
|
|
|
|
}
|
|
|
|
});
|
2016-01-31 19:57:30 +01:00
|
|
|
}
|
|
|
|
// ----------------------------------------
|
2016-02-12 01:29:14 +01:00
|
|
|
catch(StreamExtractor.ContentNotAvailableException e) {
|
2016-01-31 19:57:30 +01:00
|
|
|
h.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
onNotSpecifiedContentError();
|
2016-01-28 12:10:50 +01:00
|
|
|
}
|
|
|
|
});
|
2015-09-04 02:15:03 +02:00
|
|
|
e.printStackTrace();
|
2016-01-31 19:57:30 +01:00
|
|
|
} catch (ParsingException e) {
|
|
|
|
postNewErrorToast(h, e.getMessage());
|
|
|
|
e.printStackTrace();
|
|
|
|
} catch(Exception e) {
|
|
|
|
postNewErrorToast(h, R.string.general_error);
|
|
|
|
e.printStackTrace();
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private class VideoResultReturnedRunnable implements Runnable {
|
2015-11-29 13:06:27 +01:00
|
|
|
private final VideoInfo videoInfo;
|
2015-09-04 02:15:03 +02:00
|
|
|
public VideoResultReturnedRunnable(VideoInfo videoInfo) {
|
|
|
|
this.videoInfo = videoInfo;
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void run() {
|
2016-02-22 19:17:05 +01:00
|
|
|
boolean show_age_restricted_content = PreferenceManager.getDefaultSharedPreferences(getActivity())
|
|
|
|
.getBoolean(activity.getString(R.string.show_age_restricted_content), false);
|
|
|
|
if(videoInfo.age_limit == 0 || show_age_restricted_content) {
|
|
|
|
updateInfo(videoInfo);
|
|
|
|
} else {
|
|
|
|
onNotSpecifiedContentErrorWithMessage(R.string.video_is_age_restricted);
|
|
|
|
}
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-05 17:09:29 +01:00
|
|
|
private class ThumbnailLoadingListener implements ImageLoadingListener {
|
2015-09-04 02:15:03 +02:00
|
|
|
@Override
|
2016-02-05 17:09:29 +01:00
|
|
|
public void onLoadingStarted(String imageUri, View view) {}
|
2015-09-04 02:15:03 +02:00
|
|
|
|
2016-02-05 17:09:29 +01:00
|
|
|
@Override
|
|
|
|
public void onLoadingFailed(String imageUri, View view, FailReason failReason) {
|
2016-02-21 21:05:16 +01:00
|
|
|
if(getContext() != null) {
|
|
|
|
Toast.makeText(VideoItemDetailFragment.this.getActivity(),
|
|
|
|
R.string.could_not_load_thumbnails, Toast.LENGTH_LONG).show();
|
|
|
|
}
|
2016-02-05 17:09:29 +01:00
|
|
|
failReason.getCause().printStackTrace();
|
|
|
|
}
|
2015-10-25 19:13:44 +01:00
|
|
|
|
2016-02-05 17:09:29 +01:00
|
|
|
@Override
|
|
|
|
public void onLoadingComplete(String imageUri, View view, Bitmap loadedImage) {}
|
2015-10-25 19:13:44 +01:00
|
|
|
|
2016-02-05 17:09:29 +01:00
|
|
|
@Override
|
|
|
|
public void onLoadingCancelled(String imageUri, View view) {}
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|
|
|
|
|
2016-02-08 18:46:42 +01:00
|
|
|
private void updateInfo(final VideoInfo info) {
|
2015-09-04 02:15:03 +02:00
|
|
|
try {
|
2016-02-08 18:46:42 +01:00
|
|
|
Context c = getContext();
|
2015-10-25 19:13:44 +01:00
|
|
|
VideoInfoItemViewCreator videoItemViewCreator =
|
|
|
|
new VideoInfoItemViewCreator(LayoutInflater.from(getActivity()));
|
|
|
|
|
2016-02-05 17:09:29 +01:00
|
|
|
RelativeLayout textContentLayout =
|
|
|
|
(RelativeLayout) activity.findViewById(R.id.detailTextContentLayout);
|
|
|
|
final TextView videoTitleView =
|
|
|
|
(TextView) activity.findViewById(R.id.detailVideoTitleView);
|
2015-11-02 19:57:47 +01:00
|
|
|
TextView uploaderView = (TextView) activity.findViewById(R.id.detailUploaderView);
|
|
|
|
TextView viewCountView = (TextView) activity.findViewById(R.id.detailViewCountView);
|
|
|
|
TextView thumbsUpView = (TextView) activity.findViewById(R.id.detailThumbsUpCountView);
|
2016-02-05 17:09:29 +01:00
|
|
|
TextView thumbsDownView =
|
|
|
|
(TextView) activity.findViewById(R.id.detailThumbsDownCountView);
|
2015-11-02 19:57:47 +01:00
|
|
|
TextView uploadDateView = (TextView) activity.findViewById(R.id.detailUploadDateView);
|
|
|
|
TextView descriptionView = (TextView) activity.findViewById(R.id.detailDescriptionView);
|
2016-02-05 17:09:29 +01:00
|
|
|
FrameLayout nextVideoFrame =
|
|
|
|
(FrameLayout) activity.findViewById(R.id.detailNextVideoFrame);
|
2015-10-27 18:13:04 +01:00
|
|
|
RelativeLayout nextVideoRootFrame =
|
2015-11-02 19:57:47 +01:00
|
|
|
(RelativeLayout) activity.findViewById(R.id.detailNextVideoRootLayout);
|
2016-02-05 17:09:29 +01:00
|
|
|
Button nextVideoButton = (Button) activity.findViewById(R.id.detailNextVideoButton);
|
|
|
|
TextView similarTitle = (TextView) activity.findViewById(R.id.detailSimilarTitle);
|
2016-02-08 18:46:42 +01:00
|
|
|
Button backgroundButton = (Button)
|
|
|
|
activity.findViewById(R.id.detailVideoThumbnailWindowBackgroundButton);
|
2016-02-05 17:09:29 +01:00
|
|
|
View topView = activity.findViewById(R.id.detailTopView);
|
2016-02-18 13:49:01 +01:00
|
|
|
View nextVideoView = null;
|
|
|
|
if(info.next_video != null) {
|
|
|
|
nextVideoView = videoItemViewCreator
|
|
|
|
.getViewFromVideoInfoItem(null, nextVideoFrame, info.next_video, getContext());
|
|
|
|
} else {
|
|
|
|
activity.findViewById(R.id.detailNextVidButtonAndContentLayout).setVisibility(View.GONE);
|
|
|
|
activity.findViewById(R.id.detailNextVideoTitle).setVisibility(View.GONE);
|
|
|
|
activity.findViewById(R.id.detailNextVideoButton).setVisibility(View.GONE);
|
|
|
|
}
|
2016-02-05 17:09:29 +01:00
|
|
|
|
|
|
|
progressBar.setVisibility(View.GONE);
|
2016-02-18 13:49:01 +01:00
|
|
|
if(nextVideoView != null) {
|
|
|
|
nextVideoFrame.addView(nextVideoView);
|
|
|
|
}
|
2015-12-28 00:32:38 +01:00
|
|
|
|
2016-02-05 17:09:29 +01:00
|
|
|
initThumbnailViews(info, nextVideoFrame);
|
2015-12-28 00:32:38 +01:00
|
|
|
|
2016-01-31 19:57:30 +01:00
|
|
|
textContentLayout.setVisibility(View.VISIBLE);
|
2016-02-17 23:55:19 +01:00
|
|
|
if (android.os.Build.VERSION.SDK_INT < 18) {
|
|
|
|
playVideoButton.setVisibility(View.VISIBLE);
|
|
|
|
} else {
|
|
|
|
ImageView playArrowView = (ImageView) activity.findViewById(R.id.playArrowView);
|
|
|
|
playArrowView.setVisibility(View.VISIBLE);
|
|
|
|
}
|
|
|
|
|
2016-01-31 19:57:30 +01:00
|
|
|
if (!showNextVideoItem) {
|
|
|
|
nextVideoRootFrame.setVisibility(View.GONE);
|
2016-02-05 17:09:29 +01:00
|
|
|
similarTitle.setVisibility(View.GONE);
|
2016-01-31 19:57:30 +01:00
|
|
|
}
|
2015-11-11 17:23:22 +01:00
|
|
|
|
2016-02-05 17:09:29 +01:00
|
|
|
videoTitleView.setText(info.title);
|
|
|
|
|
|
|
|
topView.setOnTouchListener(new View.OnTouchListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onTouch(View v, MotionEvent event) {
|
|
|
|
if (event.getAction() == android.view.MotionEvent.ACTION_UP) {
|
|
|
|
ImageView arrow = (ImageView) activity.findViewById(R.id.toggleDescriptionView);
|
|
|
|
View extra = activity.findViewById(R.id.detailExtraView);
|
|
|
|
if (extra.getVisibility() == View.VISIBLE) {
|
|
|
|
extra.setVisibility(View.GONE);
|
|
|
|
arrow.setImageResource(R.drawable.arrow_down);
|
|
|
|
} else {
|
|
|
|
extra.setVisibility(View.VISIBLE);
|
|
|
|
arrow.setImageResource(R.drawable.arrow_up);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-02-18 13:49:01 +01:00
|
|
|
// Since newpipe is designed to work even if certain information is not available,
|
|
|
|
// the UI has to react on missing information.
|
2016-01-31 19:57:30 +01:00
|
|
|
videoTitleView.setText(info.title);
|
2016-02-18 13:49:01 +01:00
|
|
|
if(!info.uploader.isEmpty()) {
|
|
|
|
uploaderView.setText(info.uploader);
|
|
|
|
} else {
|
|
|
|
activity.findViewById(R.id.detailUploaderWrapView).setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
if(info.view_count >= 0) {
|
|
|
|
viewCountView.setText(Localization.localizeViewCount(info.view_count, c));
|
|
|
|
} else {
|
|
|
|
viewCountView.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
if(info.dislike_count >= 0) {
|
|
|
|
thumbsDownView.setText(Localization.localizeNumber(info.dislike_count, c));
|
|
|
|
} else {
|
|
|
|
thumbsDownView.setVisibility(View.INVISIBLE);
|
|
|
|
activity.findViewById(R.id.detailThumbsDownImgView).setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
if(info.like_count >= 0) {
|
|
|
|
thumbsUpView.setText(Localization.localizeNumber(info.like_count, c));
|
|
|
|
} else {
|
|
|
|
thumbsUpView.setVisibility(View.GONE);
|
|
|
|
activity.findViewById(R.id.detailThumbsUpImgView).setVisibility(View.GONE);
|
|
|
|
thumbsDownView.setVisibility(View.GONE);
|
|
|
|
activity.findViewById(R.id.detailThumbsDownImgView).setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
if(!info.upload_date.isEmpty()) {
|
|
|
|
uploadDateView.setText(Localization.localizeDate(info.upload_date, c));
|
|
|
|
} else {
|
|
|
|
uploadDateView.setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
if(!info.description.isEmpty()) {
|
|
|
|
descriptionView.setText(Html.fromHtml(info.description));
|
|
|
|
} else {
|
|
|
|
descriptionView.setVisibility(View.GONE);
|
|
|
|
}
|
2015-09-04 02:15:03 +02:00
|
|
|
|
2016-01-31 19:57:30 +01:00
|
|
|
descriptionView.setMovementMethod(LinkMovementMethod.getInstance());
|
2015-09-04 02:15:03 +02:00
|
|
|
|
2016-01-31 19:57:30 +01:00
|
|
|
// parse streams
|
|
|
|
Vector<VideoInfo.VideoStream> streamsToUse = new Vector<>();
|
2016-02-08 18:46:42 +01:00
|
|
|
for (VideoInfo.VideoStream i : info.video_streams) {
|
2016-01-31 19:57:30 +01:00
|
|
|
if (useStream(i, streamsToUse)) {
|
|
|
|
streamsToUse.add(i);
|
|
|
|
}
|
|
|
|
}
|
2016-02-05 14:09:04 +01:00
|
|
|
|
2016-01-31 19:57:30 +01:00
|
|
|
nextVideoButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
Intent detailIntent =
|
|
|
|
new Intent(getActivity(), VideoItemDetailActivity.class);
|
2015-12-25 00:09:35 +01:00
|
|
|
/*detailIntent.putExtra(
|
|
|
|
VideoItemDetailFragment.ARG_ITEM_ID, currentVideoInfo.nextVideo.id); */
|
2016-01-31 19:57:30 +01:00
|
|
|
detailIntent.putExtra(
|
2016-02-08 18:46:42 +01:00
|
|
|
VideoItemDetailFragment.VIDEO_URL, info.next_video.webpage_url);
|
2016-01-31 19:57:30 +01:00
|
|
|
detailIntent.putExtra(VideoItemDetailFragment.STREAMING_SERVICE, streamingServiceId);
|
|
|
|
startActivity(detailIntent);
|
2015-12-28 00:32:38 +01:00
|
|
|
}
|
2016-01-31 19:57:30 +01:00
|
|
|
});
|
2016-02-05 17:09:29 +01:00
|
|
|
textContentLayout.setVisibility(View.VISIBLE);
|
2016-01-31 19:57:30 +01:00
|
|
|
|
2016-02-18 13:49:01 +01:00
|
|
|
if(info.related_videos != null && !info.related_videos.isEmpty()) {
|
|
|
|
initSimilarVideos(info, videoItemViewCreator);
|
|
|
|
} else {
|
|
|
|
activity.findViewById(R.id.detailSimilarTitle).setVisibility(View.GONE);
|
|
|
|
activity.findViewById(R.id.similarVideosView).setVisibility(View.GONE);
|
|
|
|
}
|
2015-09-04 02:15:03 +02:00
|
|
|
|
2016-02-18 17:40:26 +01:00
|
|
|
setupActionBarHandler(info);
|
|
|
|
|
2015-09-11 09:50:30 +02:00
|
|
|
if(autoPlayEnabled) {
|
2016-02-08 18:46:42 +01:00
|
|
|
playVideo(info);
|
2015-09-11 09:50:30 +02:00
|
|
|
}
|
2016-02-08 18:46:42 +01:00
|
|
|
|
2016-02-17 23:55:19 +01:00
|
|
|
if (android.os.Build.VERSION.SDK_INT < 18) {
|
|
|
|
playVideoButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
playVideo(info);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2016-02-08 18:46:42 +01:00
|
|
|
|
|
|
|
backgroundButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
playVideo(info);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2015-09-04 02:15:03 +02:00
|
|
|
} catch (java.lang.NullPointerException e) {
|
|
|
|
Log.w(TAG, "updateInfo(): Fragment closed before thread ended work... or else");
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-05 17:09:29 +01:00
|
|
|
private void initThumbnailViews(VideoInfo info, View nextVideoFrame) {
|
|
|
|
ImageView videoThumbnailView = (ImageView) activity.findViewById(R.id.detailThumbnailView);
|
|
|
|
ImageView uploaderThumb
|
|
|
|
= (ImageView) activity.findViewById(R.id.detailUploaderThumbnailView);
|
|
|
|
ImageView nextVideoThumb =
|
|
|
|
(ImageView) nextVideoFrame.findViewById(R.id.itemThumbnailView);
|
|
|
|
|
2016-02-18 13:49:01 +01:00
|
|
|
if(info.thumbnail_url != null && !info.thumbnail_url.isEmpty()) {
|
|
|
|
imageLoader.displayImage(info.thumbnail_url, videoThumbnailView,
|
|
|
|
displayImageOptions, new ImageLoadingListener() {
|
|
|
|
@Override
|
|
|
|
public void onLoadingStarted(String imageUri, View view) {
|
|
|
|
}
|
2016-02-05 17:09:29 +01:00
|
|
|
|
2016-02-18 13:49:01 +01:00
|
|
|
@Override
|
|
|
|
public void onLoadingFailed(String imageUri, View view, FailReason failReason) {
|
|
|
|
Toast.makeText(VideoItemDetailFragment.this.getActivity(),
|
|
|
|
R.string.could_not_load_thumbnails, Toast.LENGTH_LONG).show();
|
|
|
|
failReason.getCause().printStackTrace();
|
|
|
|
}
|
2016-02-05 17:09:29 +01:00
|
|
|
|
2016-02-18 13:49:01 +01:00
|
|
|
@Override
|
|
|
|
public void onLoadingComplete(String imageUri, View view, Bitmap loadedImage) {
|
|
|
|
videoThumbnail = loadedImage;
|
|
|
|
}
|
2016-02-05 17:09:29 +01:00
|
|
|
|
2016-02-18 13:49:01 +01:00
|
|
|
@Override
|
|
|
|
public void onLoadingCancelled(String imageUri, View view) {
|
|
|
|
}
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
videoThumbnailView.setImageResource(R.drawable.dummy_thumbnail_dark);
|
|
|
|
}
|
|
|
|
if(info.uploader_thumbnail_url != null && !info.uploader_thumbnail_url.isEmpty()) {
|
|
|
|
imageLoader.displayImage(info.uploader_thumbnail_url,
|
|
|
|
uploaderThumb, displayImageOptions, new ThumbnailLoadingListener());
|
|
|
|
}
|
2016-02-21 19:07:24 +01:00
|
|
|
if(info.thumbnail_url != null && !info.thumbnail_url.isEmpty() && info.next_video != null) {
|
2016-02-18 13:49:01 +01:00
|
|
|
imageLoader.displayImage(info.next_video.thumbnail_url,
|
|
|
|
nextVideoThumb, displayImageOptions, new ThumbnailLoadingListener());
|
|
|
|
}
|
2016-02-05 17:09:29 +01:00
|
|
|
}
|
|
|
|
|
2016-02-08 18:46:42 +01:00
|
|
|
private void setupActionBarHandler(final VideoInfo info) {
|
|
|
|
actionBarHandler.setupStreamList(info.video_streams);
|
|
|
|
|
|
|
|
actionBarHandler.setOnShareListener(new ActionBarHandler.OnActionListener() {
|
|
|
|
@Override
|
|
|
|
public void onActionSelected(int selectedStreamId) {
|
|
|
|
Intent intent = new Intent();
|
|
|
|
intent.setAction(Intent.ACTION_SEND);
|
|
|
|
intent.putExtra(Intent.EXTRA_TEXT, info.webpage_url);
|
|
|
|
intent.setType("text/plain");
|
|
|
|
activity.startActivity(Intent.createChooser(intent, activity.getString(R.string.share_dialog_title)));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
actionBarHandler.setOnOpenInBrowserListener(new ActionBarHandler.OnActionListener() {
|
|
|
|
@Override
|
|
|
|
public void onActionSelected(int selectedStreamId) {
|
|
|
|
Intent intent = new Intent();
|
|
|
|
intent.setAction(Intent.ACTION_VIEW);
|
|
|
|
intent.setData(Uri.parse(info.webpage_url));
|
|
|
|
|
|
|
|
activity.startActivity(Intent.createChooser(intent, activity.getString(R.string.choose_browser)));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
actionBarHandler.setOnPlayWithKodiListener(new ActionBarHandler.OnActionListener() {
|
|
|
|
@Override
|
|
|
|
public void onActionSelected(int selectedStreamId) {
|
|
|
|
try {
|
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
|
|
|
intent.setPackage(KORE_PACKET);
|
|
|
|
intent.setData(Uri.parse(info.webpage_url.replace("https", "http")));
|
|
|
|
activity.startActivity(intent);
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
|
|
|
|
builder.setMessage(R.string.kore_not_found)
|
|
|
|
.setPositiveButton(R.string.install, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
Intent intent = new Intent();
|
|
|
|
intent.setAction(Intent.ACTION_VIEW);
|
|
|
|
intent.setData(Uri.parse(activity.getString(R.string.fdroid_kore_url)));
|
|
|
|
activity.startActivity(intent);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
actionBarHandler.setOnDownloadListener(new ActionBarHandler.OnActionListener() {
|
|
|
|
@Override
|
|
|
|
public void onActionSelected(int selectedStreamId) {
|
2016-02-17 21:39:41 +01:00
|
|
|
try {
|
|
|
|
Bundle args = new Bundle();
|
2016-02-08 18:46:42 +01:00
|
|
|
|
2016-02-17 21:39:41 +01:00
|
|
|
// Sometimes it may be that some information is not available due to changes fo the
|
|
|
|
// website which was crawled. Then the ui has to understand this and act right.
|
|
|
|
|
|
|
|
if (info.audio_streams != null) {
|
|
|
|
VideoInfo.AudioStream audioStream =
|
|
|
|
info.audio_streams.get(getPreferredAudioStreamId(info));
|
|
|
|
|
|
|
|
String audioSuffix = "." + MediaFormat.getSuffixById(audioStream.format);
|
|
|
|
args.putString(DownloadDialog.AUDIO_URL, audioStream.url);
|
|
|
|
args.putString(DownloadDialog.FILE_SUFFIX_AUDIO, audioSuffix);
|
2016-02-08 18:46:42 +01:00
|
|
|
}
|
2016-02-17 21:39:41 +01:00
|
|
|
|
|
|
|
if (info.video_streams != null) {
|
|
|
|
VideoInfo.VideoStream selectedStreamItem = info.video_streams.get(selectedStreamId);
|
|
|
|
String videoSuffix = "." + MediaFormat.getSuffixById(selectedStreamItem.format);
|
|
|
|
args.putString(DownloadDialog.FILE_SUFFIX_VIDEO, videoSuffix);
|
|
|
|
args.putString(DownloadDialog.VIDEO_URL, selectedStreamItem.url);
|
2016-02-08 18:46:42 +01:00
|
|
|
}
|
2016-02-17 21:39:41 +01:00
|
|
|
|
|
|
|
args.putString(DownloadDialog.TITLE, info.title);
|
|
|
|
DownloadDialog downloadDialog = new DownloadDialog();
|
|
|
|
downloadDialog.setArguments(args);
|
|
|
|
downloadDialog.show(activity.getSupportFragmentManager(), "downloadDialog");
|
2016-02-17 23:55:19 +01:00
|
|
|
} catch (Exception e) {
|
2016-02-17 21:39:41 +01:00
|
|
|
Toast.makeText(VideoItemDetailFragment.this.getActivity(),
|
|
|
|
R.string.could_not_setup_download_menu, Toast.LENGTH_LONG).show();
|
|
|
|
e.printStackTrace();
|
2016-02-08 18:46:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2016-02-17 21:39:41 +01:00
|
|
|
|
|
|
|
if(info.audio_streams == null) {
|
|
|
|
actionBarHandler.showAudioAction(false);
|
|
|
|
} else {
|
|
|
|
actionBarHandler.setOnPlayAudioListener(new ActionBarHandler.OnActionListener() {
|
|
|
|
@Override
|
|
|
|
public void onActionSelected(int selectedStreamId) {
|
|
|
|
boolean useExternalAudioPlayer = PreferenceManager.getDefaultSharedPreferences(activity)
|
|
|
|
.getBoolean(activity.getString(R.string.use_external_audio_player_key), false);
|
|
|
|
Intent intent;
|
|
|
|
VideoInfo.AudioStream audioStream =
|
|
|
|
info.audio_streams.get(getPreferredAudioStreamId(info));
|
|
|
|
if (!useExternalAudioPlayer && android.os.Build.VERSION.SDK_INT >= 18) {
|
|
|
|
//internal music player: explicit intent
|
|
|
|
if (!BackgroundPlayer.isRunning && videoThumbnail != null) {
|
|
|
|
ActivityCommunicator.getCommunicator()
|
|
|
|
.backgroundPlayerThumbnail = videoThumbnail;
|
|
|
|
intent = new Intent(activity, BackgroundPlayer.class);
|
|
|
|
|
|
|
|
intent.setAction(Intent.ACTION_VIEW);
|
|
|
|
Log.i(TAG, "audioStream is null:" + (audioStream == null));
|
|
|
|
Log.i(TAG, "audioStream.url is null:" + (audioStream.url == null));
|
|
|
|
intent.setDataAndType(Uri.parse(audioStream.url),
|
|
|
|
MediaFormat.getMimeById(audioStream.format));
|
|
|
|
intent.putExtra(BackgroundPlayer.TITLE, info.title);
|
|
|
|
intent.putExtra(BackgroundPlayer.WEB_URL, info.webpage_url);
|
|
|
|
intent.putExtra(BackgroundPlayer.SERVICE_ID, streamingServiceId);
|
|
|
|
intent.putExtra(BackgroundPlayer.CHANNEL_NAME, info.uploader);
|
|
|
|
activity.startService(intent);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
intent = new Intent();
|
|
|
|
try {
|
|
|
|
intent.setAction(Intent.ACTION_VIEW);
|
|
|
|
intent.setDataAndType(Uri.parse(audioStream.url),
|
|
|
|
MediaFormat.getMimeById(audioStream.format));
|
|
|
|
intent.putExtra(Intent.EXTRA_TITLE, info.title);
|
|
|
|
intent.putExtra("title", info.title);
|
|
|
|
// HERE !!!
|
|
|
|
activity.startActivity(intent);
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
|
|
|
|
builder.setMessage(R.string.no_player_found)
|
|
|
|
.setPositiveButton(R.string.install, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
Intent intent = new Intent();
|
|
|
|
intent.setAction(Intent.ACTION_VIEW);
|
|
|
|
intent.setData(Uri.parse(activity.getString(R.string.fdroid_vlc_url)));
|
|
|
|
activity.startActivity(intent);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
Log.i(TAG, "You unlocked a secret unicorn.");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
Log.e(TAG, "Either no Streaming player for audio was installed, or something important crashed:");
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2016-02-08 18:46:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
private int getPreferredAudioStreamId(final VideoInfo info) {
|
|
|
|
String preferredFormatString = PreferenceManager.getDefaultSharedPreferences(getActivity())
|
|
|
|
.getString(activity.getString(R.string.default_audio_format_key), "webm");
|
|
|
|
|
|
|
|
int preferredFormat = MediaFormat.WEBMA.id;
|
|
|
|
switch(preferredFormatString) {
|
|
|
|
case "webm":
|
|
|
|
preferredFormat = MediaFormat.WEBMA.id;
|
|
|
|
break;
|
|
|
|
case "m4a":
|
|
|
|
preferredFormat = MediaFormat.M4A.id;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
for(int i = 0; i < info.audio_streams.size(); i++) {
|
|
|
|
if(info.audio_streams.get(i).format == preferredFormat) {
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//todo: make this a proper error
|
|
|
|
Log.e(TAG, "FAILED to set audioStream value!");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void initSimilarVideos(final VideoInfo info, VideoInfoItemViewCreator videoItemViewCreator) {
|
2016-02-05 17:09:29 +01:00
|
|
|
LinearLayout similarLayout = (LinearLayout) activity.findViewById(R.id.similarVideosView);
|
2016-02-08 18:46:42 +01:00
|
|
|
ArrayList<VideoPreviewInfo> similar = new ArrayList<>(info.related_videos);
|
2016-02-05 17:09:29 +01:00
|
|
|
for (final VideoPreviewInfo item : similar) {
|
|
|
|
View similarView = videoItemViewCreator
|
|
|
|
.getViewFromVideoInfoItem(null, similarLayout, item, getContext());
|
|
|
|
|
|
|
|
similarView.setClickable(true);
|
|
|
|
similarView.setFocusable(true);
|
|
|
|
int[] attrs = new int[]{R.attr.selectableItemBackground};
|
|
|
|
TypedArray typedArray = activity.obtainStyledAttributes(attrs);
|
|
|
|
int backgroundResource = typedArray.getResourceId(0, 0);
|
|
|
|
similarView.setBackgroundResource(backgroundResource);
|
|
|
|
typedArray.recycle();
|
|
|
|
|
|
|
|
similarView.setOnTouchListener(new View.OnTouchListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onTouch(View v, MotionEvent event) {
|
|
|
|
if (event.getAction() == MotionEvent.ACTION_UP) {
|
|
|
|
Intent detailIntent = new Intent(activity, VideoItemDetailActivity.class);
|
|
|
|
detailIntent.putExtra(VideoItemDetailFragment.VIDEO_URL, item.webpage_url);
|
|
|
|
detailIntent.putExtra(
|
|
|
|
VideoItemDetailFragment.STREAMING_SERVICE, streamingServiceId);
|
|
|
|
startActivity(detailIntent);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
similarLayout.addView(similarView);
|
|
|
|
ImageView rthumb = (ImageView)similarView.findViewById(R.id.itemThumbnailView);
|
|
|
|
imageLoader.displayImage(item.thumbnail_url, rthumb,
|
|
|
|
displayImageOptions, new ThumbnailLoadingListener());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-31 19:57:30 +01:00
|
|
|
private void onErrorBlockedByGema() {
|
|
|
|
Button backgroundButton = (Button)
|
|
|
|
activity.findViewById(R.id.detailVideoThumbnailWindowBackgroundButton);
|
|
|
|
ImageView thumbnailView = (ImageView) activity.findViewById(R.id.detailThumbnailView);
|
|
|
|
|
|
|
|
progressBar.setVisibility(View.GONE);
|
|
|
|
thumbnailView.setImageBitmap(BitmapFactory.decodeResource(
|
|
|
|
getResources(), R.drawable.gruese_die_gema));
|
|
|
|
backgroundButton.setOnClickListener(new View.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(View v) {
|
|
|
|
Intent intent = new Intent();
|
|
|
|
intent.setAction(Intent.ACTION_VIEW);
|
|
|
|
intent.setData(Uri.parse(activity.getString(R.string.c3s_url)));
|
|
|
|
activity.startActivity(intent);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
Toast.makeText(VideoItemDetailFragment.this.getActivity(),
|
|
|
|
R.string.blocked_by_gema, Toast.LENGTH_LONG).show();
|
|
|
|
}
|
|
|
|
|
|
|
|
private void onNotSpecifiedContentError() {
|
|
|
|
ImageView thumbnailView = (ImageView) activity.findViewById(R.id.detailThumbnailView);
|
|
|
|
progressBar.setVisibility(View.GONE);
|
|
|
|
thumbnailView.setImageBitmap(BitmapFactory.decodeResource(
|
|
|
|
getResources(), R.drawable.not_available_monkey));
|
|
|
|
Toast.makeText(activity, R.string.content_not_available, Toast.LENGTH_LONG)
|
|
|
|
.show();
|
|
|
|
}
|
|
|
|
|
2016-02-21 21:05:16 +01:00
|
|
|
private void onNotSpecifiedContentErrorWithMessage(int resourceId) {
|
|
|
|
ImageView thumbnailView = (ImageView) activity.findViewById(R.id.detailThumbnailView);
|
|
|
|
progressBar.setVisibility(View.GONE);
|
|
|
|
thumbnailView.setImageBitmap(BitmapFactory.decodeResource(
|
|
|
|
getResources(), R.drawable.not_available_monkey));
|
|
|
|
Toast.makeText(activity, resourceId, Toast.LENGTH_LONG)
|
|
|
|
.show();
|
|
|
|
}
|
|
|
|
|
2015-09-21 13:32:11 +02:00
|
|
|
private boolean useStream(VideoInfo.VideoStream stream, Vector<VideoInfo.VideoStream> streams) {
|
|
|
|
for(VideoInfo.VideoStream i : streams) {
|
2015-09-04 02:15:03 +02:00
|
|
|
if(i.resolution.equals(stream.resolution)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Mandatory empty constructor for the fragment manager to instantiate the
|
|
|
|
* fragment (e.g. upon screen orientation changes).
|
|
|
|
*/
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onCreate(Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
2015-10-29 17:56:35 +01:00
|
|
|
activity = (AppCompatActivity) getActivity();
|
2015-10-27 18:13:04 +01:00
|
|
|
showNextVideoItem = PreferenceManager.getDefaultSharedPreferences(getActivity())
|
2016-01-05 20:56:40 +01:00
|
|
|
.getBoolean(activity.getString(R.string.show_next_video_key), true);
|
2015-12-02 21:20:52 +01:00
|
|
|
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, ViewGroup container,
|
|
|
|
Bundle savedInstanceState) {
|
|
|
|
View rootView = inflater.inflate(R.layout.fragment_videoitem_detail, container, false);
|
2016-01-09 12:09:31 +01:00
|
|
|
progressBar = (ProgressBar) rootView.findViewById(R.id.detailProgressBar);
|
|
|
|
|
2015-10-29 17:56:35 +01:00
|
|
|
actionBarHandler = new ActionBarHandler(activity);
|
|
|
|
actionBarHandler.setupNavMenu(activity);
|
|
|
|
if(onInvokeCreateOptionsMenuListener != null) {
|
|
|
|
onInvokeCreateOptionsMenuListener.createOptionsMenu();
|
|
|
|
}
|
|
|
|
|
2015-09-04 02:15:03 +02:00
|
|
|
return rootView;
|
|
|
|
}
|
2015-09-21 01:10:11 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onActivityCreated(Bundle savedInstanceBundle) {
|
|
|
|
super.onActivityCreated(savedInstanceBundle);
|
2015-12-14 11:01:34 +01:00
|
|
|
Activity a = getActivity();
|
2016-02-17 23:55:19 +01:00
|
|
|
if (android.os.Build.VERSION.SDK_INT < 18) {
|
|
|
|
playVideoButton = (FloatingActionButton) a.findViewById(R.id.playVideoButton);
|
|
|
|
}
|
2015-12-14 11:01:34 +01:00
|
|
|
thumbnailWindowLayout = a.findViewById(R.id.detailVideoThumbnailWindowLayout);
|
|
|
|
Button backgroundButton = (Button)
|
|
|
|
a.findViewById(R.id.detailVideoThumbnailWindowBackgroundButton);
|
2015-09-21 01:10:11 +02:00
|
|
|
|
2015-11-02 19:57:47 +01:00
|
|
|
// Sometimes when this fragment is not visible it still gets initiated
|
|
|
|
// then we must not try to access objects of this fragment.
|
|
|
|
// Otherwise the applications would crash.
|
2016-02-17 23:55:19 +01:00
|
|
|
if(backgroundButton != null) {
|
2015-10-23 23:08:01 +02:00
|
|
|
try {
|
2015-12-25 00:09:35 +01:00
|
|
|
streamingServiceId = getArguments().getInt(STREAMING_SERVICE);
|
|
|
|
StreamingService streamingService = ServiceList.getService(streamingServiceId);
|
2015-11-29 13:06:27 +01:00
|
|
|
Thread videoExtractorThread = new Thread(new VideoExtractorRunnable(
|
|
|
|
getArguments().getString(VIDEO_URL), streamingService));
|
2015-11-02 22:29:43 +01:00
|
|
|
|
2015-10-23 23:08:01 +02:00
|
|
|
autoPlayEnabled = getArguments().getBoolean(AUTO_PLAY);
|
2015-11-26 17:29:26 +01:00
|
|
|
videoExtractorThread.start();
|
2015-10-23 23:08:01 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
2015-12-15 22:53:29 +01:00
|
|
|
if(Build.VERSION.SDK_INT >= 18) {
|
|
|
|
ImageView thumbnailView = (ImageView) activity.findViewById(R.id.detailThumbnailView);
|
|
|
|
thumbnailView.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
|
|
|
|
// This is used to synchronize the thumbnailWindowButton and the playVideoButton
|
|
|
|
// inside the ScrollView with the actual size of the thumbnail.
|
2016-02-17 23:55:19 +01:00
|
|
|
//todo: onLayoutChage sometimes not triggered
|
|
|
|
// background buttons area seem to overlap the thumbnail view
|
|
|
|
// So although you just clicked slightly beneath the thumbnail the action still
|
|
|
|
// gets triggered.
|
2015-12-15 22:53:29 +01:00
|
|
|
@Override
|
2016-02-05 17:09:29 +01:00
|
|
|
public void onLayoutChange(View v, int left, int top, int right, int bottom,
|
|
|
|
int oldLeft, int oldTop, int oldRight, int oldBottom) {
|
2015-12-15 22:53:29 +01:00
|
|
|
RelativeLayout.LayoutParams newWindowLayoutParams =
|
|
|
|
(RelativeLayout.LayoutParams) thumbnailWindowLayout.getLayoutParams();
|
|
|
|
newWindowLayoutParams.height = bottom - top;
|
|
|
|
thumbnailWindowLayout.setLayoutParams(newWindowLayoutParams);
|
2015-12-08 21:29:29 +01:00
|
|
|
|
2015-12-15 22:53:29 +01:00
|
|
|
//noinspection SuspiciousNameCombination
|
|
|
|
initialThumbnailPos.set(top, left);
|
2015-12-08 21:29:29 +01:00
|
|
|
|
2015-12-15 22:53:29 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2015-10-23 23:08:01 +02:00
|
|
|
}
|
2015-09-21 01:10:11 +02:00
|
|
|
}
|
2015-09-21 23:53:10 +02:00
|
|
|
|
2016-02-08 18:46:42 +01:00
|
|
|
public void playVideo(final VideoInfo info) {
|
|
|
|
// ----------- THE MAGIC MOMENT ---------------
|
|
|
|
VideoInfo.VideoStream selectedVideoStream =
|
|
|
|
info.video_streams.get(actionBarHandler.getSelectedVideoStream());
|
|
|
|
|
|
|
|
if (PreferenceManager.getDefaultSharedPreferences(activity)
|
|
|
|
.getBoolean(activity.getString(R.string.use_external_video_player_key), false)) {
|
|
|
|
|
|
|
|
// External Player
|
|
|
|
Intent intent = new Intent();
|
|
|
|
try {
|
|
|
|
intent.setAction(Intent.ACTION_VIEW);
|
|
|
|
|
|
|
|
intent.setDataAndType(Uri.parse(selectedVideoStream.url),
|
|
|
|
MediaFormat.getMimeById(selectedVideoStream.format));
|
|
|
|
intent.putExtra(Intent.EXTRA_TITLE, info.title);
|
|
|
|
intent.putExtra("title", info.title);
|
|
|
|
|
|
|
|
activity.startActivity(intent); // HERE !!!
|
|
|
|
} catch (Exception e) {
|
|
|
|
e.printStackTrace();
|
|
|
|
AlertDialog.Builder builder = new AlertDialog.Builder(activity);
|
|
|
|
builder.setMessage(R.string.no_player_found)
|
|
|
|
.setPositiveButton(R.string.install, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
Intent intent = new Intent();
|
|
|
|
intent.setAction(Intent.ACTION_VIEW);
|
|
|
|
intent.setData(Uri.parse(activity.getString(R.string.fdroid_vlc_url)));
|
|
|
|
activity.startActivity(intent);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onClick(DialogInterface dialog, int which) {
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
builder.create().show();
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// Internal Player
|
|
|
|
Intent intent = new Intent(activity, PlayVideoActivity.class);
|
|
|
|
intent.putExtra(PlayVideoActivity.VIDEO_TITLE, info.title);
|
|
|
|
intent.putExtra(PlayVideoActivity.STREAM_URL, selectedVideoStream.url);
|
|
|
|
intent.putExtra(PlayVideoActivity.VIDEO_URL, info.webpage_url);
|
|
|
|
intent.putExtra(PlayVideoActivity.START_POSITION, info.start_position);
|
|
|
|
activity.startActivity(intent); //also HERE !!!
|
|
|
|
}
|
|
|
|
|
|
|
|
// --------------------------------------------
|
|
|
|
}
|
|
|
|
|
2015-10-29 17:56:35 +01:00
|
|
|
@Override
|
|
|
|
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
|
|
|
actionBarHandler.setupMenu(menu, inflater);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
return actionBarHandler.onItemSelected(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setOnInvokeCreateOptionsMenuListener(OnInvokeCreateOptionsMenuListener listener) {
|
|
|
|
this.onInvokeCreateOptionsMenuListener = listener;
|
|
|
|
}
|
2016-01-31 19:57:30 +01:00
|
|
|
|
|
|
|
private void postNewErrorToast(Handler h, final int stringResource) {
|
|
|
|
h.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
Toast.makeText(VideoItemDetailFragment.this.getActivity(),
|
|
|
|
stringResource, Toast.LENGTH_LONG).show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
private void postNewErrorToast(Handler h, final String message) {
|
|
|
|
h.post(new Runnable() {
|
|
|
|
@Override
|
|
|
|
public void run() {
|
|
|
|
Toast.makeText(VideoItemDetailFragment.this.getActivity(),
|
|
|
|
message, Toast.LENGTH_LONG).show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2015-09-21 01:10:11 +02:00
|
|
|
}
|