NewPipe/app/src/main/java/org/schabi/newpipe/detail/VideoItemDetailFragment.java

954 lines
44 KiB
Java
Raw Normal View History

2016-08-02 21:17:54 +02:00
package org.schabi.newpipe.detail;
2015-09-04 02:15:03 +02:00
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;
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;
import android.net.Uri;
import android.os.Build;
2015-09-04 02:15:03 +02:00
import android.os.Bundle;
import android.os.Handler;
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;
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;
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;
import android.widget.RelativeLayout;
2015-09-04 02:15:03 +02:00
import android.widget.TextView;
import android.view.MenuItem;
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
2016-02-16 03:49:58 +01:00
import com.google.android.exoplayer.util.Util;
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;
import java.util.ArrayList;
2015-09-04 02:15:03 +02:00
import java.util.Vector;
2016-08-02 21:17:54 +02:00
import org.schabi.newpipe.ActivityCommunicator;
import org.schabi.newpipe.ChannelActivity;
import org.schabi.newpipe.Downloader;
import org.schabi.newpipe.ErrorActivity;
import org.schabi.newpipe.ImageErrorLoadingListener;
import org.schabi.newpipe.Localization;
import org.schabi.newpipe.R;
import org.schabi.newpipe.StreamInfoItemViewCreator;
2016-03-25 19:01:22 +01:00
import org.schabi.newpipe.download.DownloadDialog;
import org.schabi.newpipe.extractor.AudioStream;
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.StreamInfo;
import org.schabi.newpipe.extractor.StreamPreviewInfo;
2016-02-18 11:50:22 +01:00
import org.schabi.newpipe.extractor.StreamingService;
import org.schabi.newpipe.extractor.VideoStream;
2016-02-18 11:50:22 +01:00
import org.schabi.newpipe.extractor.services.youtube.YoutubeStreamExtractor;
2016-02-22 20:28:37 +01:00
import org.schabi.newpipe.player.BackgroundPlayer;
import org.schabi.newpipe.player.PlayVideoActivity;
import org.schabi.newpipe.player.ExoPlayerActivity;
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
private AppCompatActivity activity;
private ActionBarHandler actionBarHandler;
private ProgressBar progressBar;
private int streamingServiceId = -1;
private boolean autoPlayEnabled;
private boolean showNextVideoItem;
2016-02-08 18:46:42 +01:00
private Bitmap videoThumbnail;
2015-12-14 11:01:34 +01:00
private View thumbnailWindowLayout;
//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();
2016-08-01 01:56:19 +02:00
private View rootView = null;
2016-02-05 17:09:29 +01:00
public interface OnInvokeCreateOptionsMenuListener {
void createOptionsMenu();
}
private OnInvokeCreateOptionsMenuListener onInvokeCreateOptionsMenuListener;
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();
private StreamExtractor streamExtractor;
2015-11-29 13:06:27 +01:00
private final StreamingService service;
private final String videoUrl;
2015-11-29 13:06:27 +01:00
public VideoExtractorRunnable(String videoUrl, StreamingService service) {
this.service = service;
2015-09-04 02:15:03 +02:00
this.videoUrl = videoUrl;
}
2015-09-04 02:15:03 +02:00
@Override
public void run() {
StreamInfo streamInfo = null;
2015-09-04 02:15:03 +02:00
try {
streamExtractor = service.getExtractorInstance(videoUrl, new Downloader());
streamInfo = StreamInfo.getVideoInfo(streamExtractor, new Downloader());
2016-02-05 17:09:29 +01:00
h.post(new VideoResultReturnedRunnable(streamInfo));
// look for errors during extraction
// this if statement only covers extra information.
// if these are not available or caused an error, they are just not available
// but don't render the stream information unusalbe.
if(streamInfo != null &&
!streamInfo.errors.isEmpty()) {
Log.e(TAG, "OCCURRED ERRORS DURING EXTRACTION:");
2016-08-01 01:56:19 +02:00
for (Throwable e : streamInfo.errors) {
e.printStackTrace();
Log.e(TAG, "------");
}
Activity a = getActivity();
View rootView = a != null ? a.findViewById(R.id.videoitem_detail) : null;
ErrorActivity.reportError(h, getActivity(),
streamInfo.errors, null, rootView,
ErrorActivity.ErrorInfo.make(ErrorActivity.REQUESTED_STREAM,
service.getServiceInfo().name, videoUrl, 0 /* no message for the user */));
}
// These errors render the stream information unusable.
2016-01-31 19:57:30 +01:00
} catch (IOException e) {
postNewErrorToast(h, R.string.network_error);
e.printStackTrace();
}
// custom service related exceptions
catch (YoutubeStreamExtractor.DecryptException de) {
2016-01-31 19:57:30 +01:00
postNewErrorToast(h, R.string.youtube_signature_decryption_error);
de.printStackTrace();
} 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
}
// ----------------------------------------
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();
} catch(StreamInfo.StreamExctractException e) {
if(!streamInfo.errors.isEmpty()) {
2016-02-26 01:32:44 +01:00
// !!! if this case ever kicks in someone gets kicked out !!!
2016-08-02 20:59:53 +02:00
ErrorActivity.reportError(h, getActivity(), e, VideoItemDetailFragment.class, null,
2016-02-26 01:32:44 +01:00
ErrorActivity.ErrorInfo.make(ErrorActivity.REQUESTED_STREAM,
service.getServiceInfo().name, videoUrl, R.string.could_not_get_stream));
} else {
2016-08-02 20:59:53 +02:00
ErrorActivity.reportError(h, getActivity(), streamInfo.errors, VideoItemDetailFragment.class, null,
2016-02-26 01:32:44 +01:00
ErrorActivity.ErrorInfo.make(ErrorActivity.REQUESTED_STREAM,
service.getServiceInfo().name, videoUrl, R.string.could_not_get_stream));
}
h.post(new Runnable() {
@Override
public void run() {
getActivity().finish();
}
});
e.printStackTrace();
2016-01-31 19:57:30 +01:00
} catch (ParsingException e) {
2016-08-02 20:59:53 +02:00
ErrorActivity.reportError(h, getActivity(), e, VideoItemDetailFragment.class, null,
2016-02-25 22:02:42 +01:00
ErrorActivity.ErrorInfo.make(ErrorActivity.REQUESTED_STREAM,
service.getServiceInfo().name, videoUrl, R.string.parsing_error));
h.post(new Runnable() {
@Override
public void run() {
getActivity().finish();
}
});
2016-01-31 19:57:30 +01:00
e.printStackTrace();
} catch(Exception e) {
2016-08-02 20:59:53 +02:00
ErrorActivity.reportError(h, getActivity(), e, VideoItemDetailFragment.class, null,
2016-02-25 22:02:42 +01:00
ErrorActivity.ErrorInfo.make(ErrorActivity.REQUESTED_STREAM,
service.getServiceInfo().name, videoUrl, R.string.general_error));
h.post(new Runnable() {
@Override
public void run() {
getActivity().finish();
}
});
2016-01-31 19:57:30 +01:00
e.printStackTrace();
2015-09-04 02:15:03 +02:00
}
}
}
private class VideoResultReturnedRunnable implements Runnable {
private final StreamInfo streamInfo;
public VideoResultReturnedRunnable(StreamInfo streamInfo) {
this.streamInfo = streamInfo;
2015-09-04 02:15:03 +02:00
}
@Override
public void run() {
2016-03-01 23:28:22 +01:00
Activity a = getActivity();
if(a != null) {
boolean showAgeRestrictedContent = PreferenceManager.getDefaultSharedPreferences(a)
2016-03-01 23:28:22 +01:00
.getBoolean(activity.getString(R.string.show_age_restricted_content), false);
if (streamInfo.age_limit == 0 || showAgeRestrictedContent) {
2016-03-01 23:28:22 +01:00
updateInfo(streamInfo);
} else {
onNotSpecifiedContentErrorWithMessage(R.string.video_is_age_restricted);
}
2016-02-22 19:17:05 +01:00
}
2015-09-04 02:15:03 +02:00
}
}
private void updateInfo(final StreamInfo info) {
2015-09-04 02:15:03 +02:00
try {
2016-02-08 18:46:42 +01:00
Context c = getContext();
2016-08-02 00:58:52 +02:00
StreamInfoItemViewCreator videoItemViewCreator =
new StreamInfoItemViewCreator(LayoutInflater.from(getActivity()),
2016-08-01 21:50:41 +02:00
getActivity(), rootView);
2015-10-25 19:13:44 +01:00
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);
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);
View nextVideoView = null;
2016-07-26 13:50:52 +02:00
Button channelButton = (Button) activity.findViewById(R.id.channelButton);
if(info.next_video != null) {
nextVideoView = videoItemViewCreator
.getViewFromVideoInfoItem(null, nextVideoFrame, info.next_video);
} 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);
if(nextVideoView != null) {
nextVideoFrame.addView(nextVideoView);
}
2016-02-05 17:09:29 +01:00
initThumbnailViews(info, nextVideoFrame);
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
}
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;
}
});
// 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);
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<VideoStream> streamsToUse = new Vector<>();
for (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);
/*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);
}
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-08-01 21:50:41 +02:00
if(info.related_streams != null && !info.related_streams.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
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);
}
});
2016-08-01 01:56:19 +02:00
if(info.channel_url != null && info.channel_url != "") {
channelButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent i = new Intent(activity, ChannelActivity.class);
i.putExtra(ChannelActivity.CHANNEL_URL, info.channel_url);
i.putExtra(ChannelActivity.SERVICE_ID, info.service_id);
startActivity(i);
}
});
} else {
channelButton.setVisibility(Button.GONE);
}
2016-07-26 13:50:52 +02:00
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-08-01 01:56:19 +02:00
private void initThumbnailViews(final StreamInfo info, View nextVideoFrame) {
2016-02-05 17:09:29 +01:00
ImageView videoThumbnailView = (ImageView) activity.findViewById(R.id.detailThumbnailView);
ImageView uploaderThumb
= (ImageView) activity.findViewById(R.id.detailUploaderThumbnailView);
ImageView nextVideoThumb =
(ImageView) nextVideoFrame.findViewById(R.id.itemThumbnailView);
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
@Override
public void onLoadingFailed(String imageUri, View view, FailReason failReason) {
2016-08-01 01:56:19 +02:00
ErrorActivity.reportError(getActivity(),
failReason.getCause(), null, rootView,
ErrorActivity.ErrorInfo.make(ErrorActivity.LOAD_IMAGE,
ServiceList.getNameOfService(info.service_id), imageUri,
R.string.could_not_load_thumbnails));
}
2016-02-05 17:09:29 +01:00
@Override
public void onLoadingComplete(String imageUri, View view, Bitmap loadedImage) {
videoThumbnail = loadedImage;
}
2016-02-05 17:09:29 +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,
2016-08-01 21:50:41 +02:00
uploaderThumb, displayImageOptions,
new ImageErrorLoadingListener(activity, rootView, info.service_id));
}
if(info.thumbnail_url != null && !info.thumbnail_url.isEmpty() && info.next_video != null) {
imageLoader.displayImage(info.next_video.thumbnail_url,
2016-08-01 21:50:41 +02:00
nextVideoThumb, displayImageOptions,
new ImageErrorLoadingListener(activity, rootView, info.service_id));
}
2016-02-05 17:09:29 +01:00
}
private void setupActionBarHandler(final StreamInfo info) {
2016-02-08 18:46:42 +01:00
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) {
try {
Bundle args = new Bundle();
2016-02-08 18:46:42 +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) {
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
}
if (info.video_streams != null) {
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
}
args.putString(DownloadDialog.TITLE, info.title);
2016-04-29 12:40:03 +02:00
DownloadDialog downloadDialog = DownloadDialog.newInstance(args);
downloadDialog.show(activity.getSupportFragmentManager(), "downloadDialog");
2016-02-17 23:55:19 +01:00
} catch (Exception e) {
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
}
}
});
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;
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 StreamInfo info) {
2016-02-08 18:46:42 +01:00
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;
}
2016-08-02 00:58:52 +02:00
private void initSimilarVideos(final StreamInfo info, StreamInfoItemViewCreator videoItemViewCreator) {
2016-02-05 17:09:29 +01:00
LinearLayout similarLayout = (LinearLayout) activity.findViewById(R.id.similarVideosView);
2016-08-01 21:50:41 +02:00
ArrayList<StreamPreviewInfo> similarStreamsList = new ArrayList<>(info.related_streams);
2016-02-05 17:09:29 +01:00
2016-08-01 21:50:41 +02:00
for (final StreamPreviewInfo item : similarStreamsList) {
View itemView = videoItemViewCreator
.getViewFromVideoInfoItem(null, similarLayout, item);
2016-02-05 17:09:29 +01:00
2016-08-01 21:50:41 +02:00
itemView = videoItemViewCreator.setupView(itemView, item);
2016-02-05 17:09:29 +01:00
2016-08-01 21:50:41 +02:00
similarLayout.addView(itemView);
2016-02-05 17:09:29 +01:00
}
}
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();
}
private boolean useStream(VideoStream stream, Vector<VideoStream> streams) {
for(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);
activity = (AppCompatActivity) getActivity();
showNextVideoItem = PreferenceManager.getDefaultSharedPreferences(getActivity())
.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) {
2016-08-01 01:56:19 +02:00
rootView = inflater.inflate(R.layout.fragment_videoitem_detail, container, false);
progressBar = (ProgressBar) rootView.findViewById(R.id.detailProgressBar);
actionBarHandler = new ActionBarHandler(activity);
actionBarHandler.setupNavMenu(activity);
if(onInvokeCreateOptionsMenuListener != null) {
onInvokeCreateOptionsMenuListener.createOptionsMenu();
}
2015-09-04 02:15:03 +02:00
return rootView;
}
@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-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 {
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-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();
}
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.
@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) {
RelativeLayout.LayoutParams newWindowLayoutParams =
(RelativeLayout.LayoutParams) thumbnailWindowLayout.getLayoutParams();
newWindowLayoutParams.height = bottom - top;
thumbnailWindowLayout.setLayoutParams(newWindowLayoutParams);
//noinspection SuspiciousNameCombination
initialThumbnailPos.set(top, left);
}
});
}
2015-10-23 23:08:01 +02:00
}
}
public void playVideo(final StreamInfo info) {
2016-02-08 18:46:42 +01:00
// ----------- THE MAGIC MOMENT ---------------
VideoStream selectedVideoStream =
2016-02-08 18:46:42 +01:00
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 {
2016-02-23 01:56:04 +01:00
intent.setAction(Intent.ACTION_VIEW)
.setDataAndType(Uri.parse(selectedVideoStream.url),
MediaFormat.getMimeById(selectedVideoStream.format))
.putExtra(Intent.EXTRA_TITLE, info.title)
.putExtra("title", info.title);
2016-02-08 18:46:42 +01:00
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) {
2016-02-23 01:56:04 +01:00
Intent intent = new Intent()
.setAction(Intent.ACTION_VIEW)
.setData(Uri.parse(activity.getString(R.string.fdroid_vlc_url)));
2016-02-08 18:46:42 +01:00
activity.startActivity(intent);
}
})
.setNegativeButton(R.string.cancel, new DialogInterface.OnClickListener() {
@Override
public void onClick(DialogInterface dialog, int which) {
}
});
builder.create().show();
}
} else {
2016-02-16 03:49:58 +01:00
if (PreferenceManager.getDefaultSharedPreferences(activity)
.getBoolean(activity.getString(R.string.use_exoplayer_key), false)) {
2016-02-22 20:28:37 +01:00
// exo player
if(info.dashMpdUrl != null && !info.dashMpdUrl.isEmpty()) {
2016-02-23 01:56:04 +01:00
// try dash
Intent intent = new Intent(activity, ExoPlayerActivity.class)
2016-02-22 20:28:37 +01:00
.setData(Uri.parse(info.dashMpdUrl))
.putExtra(ExoPlayerActivity.CONTENT_TYPE_EXTRA, Util.TYPE_DASH);
2016-02-23 01:56:04 +01:00
startActivity(intent);
} else if((info.audio_streams != null && !info.audio_streams.isEmpty()) &&
(info.video_only_streams != null && !info.video_only_streams.isEmpty())) {
// try smooth streaming
} else {
//default streaming
Intent intent = new Intent(activity, ExoPlayerActivity.class)
.setDataAndType(Uri.parse(selectedVideoStream.url),
MediaFormat.getMimeById(selectedVideoStream.format))
.putExtra(ExoPlayerActivity.CONTENT_TYPE_EXTRA, Util.TYPE_OTHER);
activity.startActivity(intent); // HERE !!!
2016-02-22 20:28:37 +01:00
}
//-------------
2016-02-16 03:49:58 +01:00
} else {
// Internal Player
2016-02-23 01:56:04 +01:00
Intent intent = new Intent(activity, PlayVideoActivity.class)
.putExtra(PlayVideoActivity.VIDEO_TITLE, info.title)
.putExtra(PlayVideoActivity.STREAM_URL, selectedVideoStream.url)
.putExtra(PlayVideoActivity.VIDEO_URL, info.webpage_url)
.putExtra(PlayVideoActivity.START_POSITION, info.start_position);
2016-02-16 03:49:58 +01:00
activity.startActivity(intent); //also HERE !!!
}
2016-02-08 18:46:42 +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();
}
});
}
}