正在查看: Plus 12 v10.13.1.1 应用的 EmbedBottomSheet.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
正在查看: Plus 12 v10.13.1.1 应用的 EmbedBottomSheet.java JAVA 源代码文件
本页面展示 JAVA 反编译生成的源代码文件,支持语法高亮显示。 仅供安全研究与技术分析使用,严禁用于任何非法用途。请遵守相关法律法规。
package org.telegram.ui.Components;
import android.animation.Animator;
import android.animation.AnimatorListenerAdapter;
import android.animation.AnimatorSet;
import android.animation.ObjectAnimator;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.content.ClipData;
import android.content.ClipboardManager;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
import android.content.res.Configuration;
import android.graphics.Canvas;
import android.graphics.PorterDuff;
import android.graphics.PorterDuffColorFilter;
import android.net.Uri;
import android.os.Build;
import android.provider.Settings;
import android.text.TextUtils;
import android.util.Property;
import android.view.MotionEvent;
import android.view.OrientationEventListener;
import android.view.TextureView;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewTreeObserver;
import android.view.WindowManager;
import android.view.animation.DecelerateInterpolator;
import android.webkit.CookieManager;
import android.webkit.JavascriptInterface;
import android.webkit.RenderProcessGoneDetail;
import android.webkit.WebChromeClient;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.FrameLayout;
import android.widget.ImageView;
import android.widget.LinearLayout;
import android.widget.TextView;
import androidx.arch.core.util.Function;
import java.util.HashMap;
import java.util.Locale;
import java.util.Objects;
import org.telegram.messenger.AndroidUtilities;
import org.telegram.messenger.ApplicationLoader;
import org.telegram.messenger.BringAppForegroundService;
import org.telegram.messenger.BuildConfig;
import org.telegram.messenger.FileLog;
import org.telegram.messenger.LocaleController;
import org.telegram.messenger.MessageObject;
import org.telegram.messenger.MessagesController;
import org.telegram.messenger.R;
import org.telegram.messenger.Utilities;
import org.telegram.messenger.browser.Browser;
import org.telegram.tgnet.TLRPC;
import org.telegram.ui.ActionBar.AlertDialog;
import org.telegram.ui.ActionBar.BaseFragment;
import org.telegram.ui.ActionBar.BottomSheet;
import org.telegram.ui.ActionBar.PlusSettings;
import org.telegram.ui.ActionBar.Theme;
import org.telegram.ui.ChatActivity;
import org.telegram.ui.Components.EmbedBottomSheet;
import org.telegram.ui.Components.WebPlayerView;
import org.telegram.ui.LaunchActivity;
import org.telegram.ui.PhotoViewer;
@SuppressLint({"WrongConstant"})
public class EmbedBottomSheet extends BottomSheet {
@SuppressLint({"StaticFieldLeak"})
public static EmbedBottomSheet instance;
public boolean animationInProgress;
public FrameLayout containerLayout;
public TextView copyTextButton;
public View customView;
public WebChromeClient.CustomViewCallback customViewCallback;
public String embedUrl;
public FrameLayout fullscreenVideoContainer;
public boolean fullscreenedByButton;
public boolean hasDescription;
public int height;
public LinearLayout imageButtonsContainer;
public boolean isYouTube;
public DialogInterface.OnShowListener onShowListener;
public String openUrl;
public OrientationEventListener orientationEventListener;
public Activity parentActivity;
public ImageView pipButton;
public int[] position;
public int prevOrientation;
public RadialProgressView progressBar;
public View progressBarBlackBackground;
public int seekTimeOverride;
public WebPlayerView videoView;
public int waitingForDraw;
public boolean wasInLandscape;
public WebView webView;
public int width;
public static boolean lambda$new$0(View view, MotionEvent motionEvent) {
return true;
}
public static boolean lambda$new$1(View view, MotionEvent motionEvent) {
return true;
}
public class YoutubeProxy {
public YoutubeProxy() {
}
@JavascriptInterface
public void postEvent(final String eventName, final String eventData) {
if ("loaded".equals(eventName)) {
AndroidUtilities.runOnUIThread(new Runnable() {
@Override
public final void run() {
EmbedBottomSheet.YoutubeProxy.this.lambda$postEvent$0();
}
});
}
}
public void lambda$postEvent$0() {
EmbedBottomSheet.this.progressBar.setVisibility(4);
EmbedBottomSheet.this.progressBarBlackBackground.setVisibility(4);
EmbedBottomSheet.this.pipButton.setEnabled(true);
EmbedBottomSheet.this.pipButton.setAlpha(1.0f);
}
}
public static void show(BaseFragment fragment, MessageObject message, PhotoViewer.PhotoViewerProvider photoViewerProvider, String title, String description, String originalUrl, final String url, int w, int h, boolean keyboardVisible) {
show(fragment, message, photoViewerProvider, title, description, originalUrl, url, w, h, -1, keyboardVisible);
}
public static void show(BaseFragment fragment, MessageObject message, PhotoViewer.PhotoViewerProvider photoViewerProvider, String title, String description, String originalUrl, final String url, int w, int h, int seekTime, boolean keyboardVisible) {
TLRPC.MessageMedia messageMedia;
EmbedBottomSheet embedBottomSheet = instance;
if (embedBottomSheet != null) {
embedBottomSheet.destroy();
}
if (((message == null || (messageMedia = message.messageOwner.media) == null || messageMedia.webpage == null) ? null : WebPlayerView.getYouTubeVideoId(url)) != null) {
PhotoViewer.getInstance().setParentActivity(fragment);
PhotoViewer.getInstance().openPhoto(message, seekTime, (ChatActivity) null, 0L, 0L, 0L, photoViewerProvider);
} else {
EmbedBottomSheet embedBottomSheet2 = new EmbedBottomSheet(fragment.getParentActivity(), title, description, originalUrl, url, w, h, seekTime);
embedBottomSheet2.setCalcMandatoryInsets(keyboardVisible);
embedBottomSheet2.show();
}
}
@SuppressLint({"SetJavaScriptEnabled"})
public EmbedBottomSheet(final Context context, String title, String description, String originalUrl, final String url, int w, int h, int seekTime) {
super(context, false);
this.position = new int[2];
this.prevOrientation = -2;
this.onShowListener = new DialogInterface.OnShowListener() {
@Override
public void onShow(DialogInterface dialog) {
if (PipVideoOverlay.isVisible() && EmbedBottomSheet.this.videoView.isInline()) {
EmbedBottomSheet.this.videoView.getViewTreeObserver().addOnPreDrawListener(new ViewTreeObserver.OnPreDrawListener() {
@Override
public boolean onPreDraw() {
EmbedBottomSheet.this.videoView.getViewTreeObserver().removeOnPreDrawListener(this);
return true;
}
});
}
}
};
((BottomSheet) this).fullWidth = true;
setApplyTopPadding(false);
setApplyBottomPadding(false);
this.seekTimeOverride = seekTime;
if (context instanceof Activity) {
this.parentActivity = (Activity) context;
}
this.embedUrl = url;
this.hasDescription = description != null && description.length() > 0;
this.openUrl = originalUrl;
this.width = w;
this.height = h;
if (w == 0 || h == 0) {
android.graphics.Point point = AndroidUtilities.displaySize;
this.width = point.x;
this.height = point.y / 2;
}
FrameLayout frameLayout = new FrameLayout(context);
this.fullscreenVideoContainer = frameLayout;
frameLayout.setKeepScreenOn(true);
this.fullscreenVideoContainer.setBackgroundColor(-16777216);
int i = Build.VERSION.SDK_INT;
if (i >= 21) {
this.fullscreenVideoContainer.setFitsSystemWindows(true);
}
this.fullscreenVideoContainer.setOnTouchListener(new View.OnTouchListener() {
@Override
public final boolean onTouch(View view, MotionEvent motionEvent) {
boolean lambda$new$0;
lambda$new$0 = EmbedBottomSheet.lambda$new$0(view, motionEvent);
return lambda$new$0;
}
});
((BottomSheet) this).container.addView(this.fullscreenVideoContainer, LayoutHelper.createFrame(-1, -1.0f));
this.fullscreenVideoContainer.setVisibility(4);
FrameLayout frameLayout2 = new FrameLayout(context) {
@Override
public void onDetachedFromWindow() {
super.onDetachedFromWindow();
try {
if ((!PipVideoOverlay.isVisible() || EmbedBottomSheet.this.webView.getVisibility() != 0) && EmbedBottomSheet.this.webView.getParent() != null) {
removeView(EmbedBottomSheet.this.webView);
EmbedBottomSheet.this.webView.stopLoading();
EmbedBottomSheet.this.webView.loadUrl("about:blank");
EmbedBottomSheet.this.webView.destroy();
}
if (EmbedBottomSheet.this.videoView.isInline() || PipVideoOverlay.isVisible()) {
return;
}
if (EmbedBottomSheet.instance == EmbedBottomSheet.this) {
EmbedBottomSheet.instance = null;
}
EmbedBottomSheet.this.videoView.destroy();
} catch (Exception e) {
FileLog.e(e);
}
}
@Override
public void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, View.MeasureSpec.makeMeasureSpec(((int) Math.min(EmbedBottomSheet.this.height / (EmbedBottomSheet.this.width / View.MeasureSpec.getSize(widthMeasureSpec)), AndroidUtilities.displaySize.y / 2)) + AndroidUtilities.dp((EmbedBottomSheet.this.hasDescription ? 22 : 0) + 84) + 1, 1073741824));
}
};
this.containerLayout = frameLayout2;
frameLayout2.setOnTouchListener(new View.OnTouchListener() {
@Override
public final boolean onTouch(View view, MotionEvent motionEvent) {
boolean lambda$new$1;
lambda$new$1 = EmbedBottomSheet.lambda$new$1(view, motionEvent);
return lambda$new$1;
}
});
setCustomView(this.containerLayout);
WebView webView = new WebView(context) {
@Override
public void onAttachedToWindow() {
AndroidUtilities.checkAndroidTheme(context, true);
super.onAttachedToWindow();
}
@Override
public void onDetachedFromWindow() {
AndroidUtilities.checkAndroidTheme(context, false);
super.onDetachedFromWindow();
}
@Override
public boolean onTouchEvent(MotionEvent event) {
boolean onTouchEvent = super.onTouchEvent(event);
if (onTouchEvent) {
if (event.getAction() == 1) {
EmbedBottomSheet.this.setDisableScroll(false);
} else {
EmbedBottomSheet.this.setDisableScroll(true);
}
}
return onTouchEvent;
}
};
this.webView = webView;
webView.getSettings().setJavaScriptEnabled(true);
this.webView.getSettings().setDomStorageEnabled(true);
if (i >= 17) {
this.webView.getSettings().setMediaPlaybackRequiresUserGesture(false);
}
if (i >= 21) {
this.webView.getSettings().setMixedContentMode(0);
CookieManager.getInstance().setAcceptThirdPartyCookies(this.webView, true);
}
this.webView.setWebChromeClient(new WebChromeClient() {
@Override
public void onShowCustomView(View view, int requestedOrientation, WebChromeClient.CustomViewCallback callback) {
onShowCustomView(view, callback);
}
@Override
public void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) {
if (EmbedBottomSheet.this.customView != null || PipVideoOverlay.isVisible()) {
callback.onCustomViewHidden();
return;
}
EmbedBottomSheet.this.exitFromPip();
EmbedBottomSheet.this.customView = view;
EmbedBottomSheet.this.getSheetContainer().setVisibility(4);
EmbedBottomSheet.this.fullscreenVideoContainer.setVisibility(0);
EmbedBottomSheet.this.fullscreenVideoContainer.addView(view, LayoutHelper.createFrame(-1, -1.0f));
EmbedBottomSheet.this.customViewCallback = callback;
}
@Override
public void onHideCustomView() {
super.onHideCustomView();
if (EmbedBottomSheet.this.customView == null) {
return;
}
EmbedBottomSheet.this.getSheetContainer().setVisibility(0);
EmbedBottomSheet.this.fullscreenVideoContainer.setVisibility(4);
EmbedBottomSheet.this.fullscreenVideoContainer.removeView(EmbedBottomSheet.this.customView);
if (EmbedBottomSheet.this.customViewCallback != null && !EmbedBottomSheet.this.customViewCallback.getClass().getName().contains(".chromium.")) {
EmbedBottomSheet.this.customViewCallback.onCustomViewHidden();
}
EmbedBottomSheet.this.customView = null;
}
});
this.webView.setWebViewClient(new AnonymousClass5());
this.containerLayout.addView(this.webView, LayoutHelper.createFrame(-1, -1.0f, 51, 0.0f, 0.0f, 0.0f, (this.hasDescription ? 22 : 0) + 84));
WebPlayerView webPlayerView = new WebPlayerView(context, true, false, new WebPlayerView.WebPlayerViewDelegate() {
@Override
public void onSharePressed() {
}
@Override
public void onVideoSizeChanged(float aspectRatio, int rotation) {
}
@Override
public void onInitFailed() {
EmbedBottomSheet.this.webView.setVisibility(0);
EmbedBottomSheet.this.imageButtonsContainer.setVisibility(0);
EmbedBottomSheet.this.copyTextButton.setVisibility(4);
EmbedBottomSheet.this.webView.setKeepScreenOn(true);
EmbedBottomSheet.this.videoView.setVisibility(4);
EmbedBottomSheet.this.videoView.getControlsView().setVisibility(4);
EmbedBottomSheet.this.videoView.getTextureView().setVisibility(4);
if (EmbedBottomSheet.this.videoView.getTextureImageView() != null) {
EmbedBottomSheet.this.videoView.getTextureImageView().setVisibility(4);
}
EmbedBottomSheet.this.videoView.loadVideo(null, null, null, null, false);
HashMap hashMap = new HashMap();
hashMap.put("Referer", "messenger.telegram.org");
try {
EmbedBottomSheet.this.webView.loadUrl(EmbedBottomSheet.this.embedUrl, hashMap);
} catch (Exception e) {
FileLog.e(e);
}
}
@Override
public TextureView onSwitchToFullscreen(View controlsView, boolean fullscreen, float aspectRatio, int rotation, boolean byButton) {
if (fullscreen) {
EmbedBottomSheet.this.fullscreenVideoContainer.setVisibility(0);
EmbedBottomSheet.this.fullscreenVideoContainer.setAlpha(1.0f);
EmbedBottomSheet.this.fullscreenVideoContainer.addView(EmbedBottomSheet.this.videoView.getAspectRatioView());
EmbedBottomSheet.this.wasInLandscape = false;
EmbedBottomSheet.this.fullscreenedByButton = byButton;
if (EmbedBottomSheet.this.parentActivity == null) {
return null;
}
try {
EmbedBottomSheet embedBottomSheet = EmbedBottomSheet.this;
embedBottomSheet.prevOrientation = embedBottomSheet.parentActivity.getRequestedOrientation();
if (byButton) {
if (((WindowManager) EmbedBottomSheet.this.parentActivity.getSystemService("window")).getDefaultDisplay().getRotation() == 3) {
EmbedBottomSheet.this.parentActivity.setRequestedOrientation(8);
} else {
EmbedBottomSheet.this.parentActivity.setRequestedOrientation(0);
}
}
((BottomSheet) EmbedBottomSheet.this).containerView.setSystemUiVisibility(1028);
return null;
} catch (Exception e) {
FileLog.e(e);
return null;
}
}
EmbedBottomSheet.this.fullscreenVideoContainer.setVisibility(4);
EmbedBottomSheet.this.fullscreenedByButton = false;
if (EmbedBottomSheet.this.parentActivity == null) {
return null;
}
try {
((BottomSheet) EmbedBottomSheet.this).containerView.setSystemUiVisibility(0);
EmbedBottomSheet.this.parentActivity.setRequestedOrientation(EmbedBottomSheet.this.prevOrientation);
return null;
} catch (Exception e2) {
FileLog.e(e2);
return null;
}
}
@Override
public void onInlineSurfaceTextureReady() {
if (EmbedBottomSheet.this.videoView.isInline()) {
EmbedBottomSheet.this.dismissInternal();
}
}
@Override
public void prepareToSwitchInlineMode(boolean inline, final Runnable switchInlineModeRunnable, float aspectRatio, boolean animated) {
if (inline) {
if (EmbedBottomSheet.this.parentActivity != null) {
try {
((BottomSheet) EmbedBottomSheet.this).containerView.setSystemUiVisibility(0);
if (EmbedBottomSheet.this.prevOrientation != -2) {
EmbedBottomSheet.this.parentActivity.setRequestedOrientation(EmbedBottomSheet.this.prevOrientation);
}
} catch (Exception e) {
FileLog.e(e);
}
}
if (EmbedBottomSheet.this.fullscreenVideoContainer.getVisibility() == 0) {
((BottomSheet) EmbedBottomSheet.this).containerView.setTranslationY(((BottomSheet) EmbedBottomSheet.this).containerView.getMeasuredHeight() + AndroidUtilities.dp(10.0f));
((BottomSheet) EmbedBottomSheet.this).backDrawable.setAlpha(0);
}
EmbedBottomSheet.this.setOnShowListener(null);
if (animated) {
TextureView textureView = EmbedBottomSheet.this.videoView.getTextureView();
View controlsView = EmbedBottomSheet.this.videoView.getControlsView();
ImageView textureImageView = EmbedBottomSheet.this.videoView.getTextureImageView();
Rect pipRect = PipVideoOverlay.getPipRect(true, aspectRatio);
float width = pipRect.width / textureView.getWidth();
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(ObjectAnimator.ofFloat(textureImageView, (Property<ImageView, Float>) View.SCALE_X, width), ObjectAnimator.ofFloat(textureImageView, (Property<ImageView, Float>) View.SCALE_Y, width), ObjectAnimator.ofFloat(textureImageView, (Property<ImageView, Float>) View.TRANSLATION_X, pipRect.x), ObjectAnimator.ofFloat(textureImageView, (Property<ImageView, Float>) View.TRANSLATION_Y, pipRect.y), ObjectAnimator.ofFloat(textureView, (Property<TextureView, Float>) View.SCALE_X, width), ObjectAnimator.ofFloat(textureView, (Property<TextureView, Float>) View.SCALE_Y, width), ObjectAnimator.ofFloat(textureView, (Property<TextureView, Float>) View.TRANSLATION_X, pipRect.x), ObjectAnimator.ofFloat(textureView, (Property<TextureView, Float>) View.TRANSLATION_Y, pipRect.y), ObjectAnimator.ofFloat(((BottomSheet) EmbedBottomSheet.this).containerView, (Property<ViewGroup, Float>) View.TRANSLATION_Y, ((BottomSheet) EmbedBottomSheet.this).containerView.getMeasuredHeight() + AndroidUtilities.dp(10.0f)), ObjectAnimator.ofInt(((BottomSheet) EmbedBottomSheet.this).backDrawable, AnimationProperties.COLOR_DRAWABLE_ALPHA, 0), ObjectAnimator.ofFloat(EmbedBottomSheet.this.fullscreenVideoContainer, (Property<FrameLayout, Float>) View.ALPHA, 0.0f), ObjectAnimator.ofFloat(controlsView, (Property<View, Float>) View.ALPHA, 0.0f));
animatorSet.setInterpolator(new DecelerateInterpolator());
animatorSet.setDuration(250L);
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
if (EmbedBottomSheet.this.fullscreenVideoContainer.getVisibility() == 0) {
EmbedBottomSheet.this.fullscreenVideoContainer.setAlpha(1.0f);
EmbedBottomSheet.this.fullscreenVideoContainer.setVisibility(4);
}
switchInlineModeRunnable.run();
}
});
animatorSet.start();
return;
}
if (EmbedBottomSheet.this.fullscreenVideoContainer.getVisibility() == 0) {
EmbedBottomSheet.this.fullscreenVideoContainer.setAlpha(1.0f);
EmbedBottomSheet.this.fullscreenVideoContainer.setVisibility(4);
}
switchInlineModeRunnable.run();
EmbedBottomSheet.this.dismissInternal();
return;
}
if (ApplicationLoader.mainInterfacePaused) {
try {
EmbedBottomSheet.this.parentActivity.startService(new Intent(ApplicationLoader.applicationContext, (Class<?>) BringAppForegroundService.class));
} catch (Throwable th) {
FileLog.e(th);
}
}
if (animated) {
?? r0 = EmbedBottomSheet.this;
r0.setOnShowListener(r0.onShowListener);
Rect pipRect2 = PipVideoOverlay.getPipRect(false, aspectRatio);
TextureView textureView2 = EmbedBottomSheet.this.videoView.getTextureView();
ImageView textureImageView2 = EmbedBottomSheet.this.videoView.getTextureImageView();
float f = pipRect2.width / textureView2.getLayoutParams().width;
textureImageView2.setScaleX(f);
textureImageView2.setScaleY(f);
textureImageView2.setTranslationX(pipRect2.x);
textureImageView2.setTranslationY(pipRect2.y);
textureView2.setScaleX(f);
textureView2.setScaleY(f);
textureView2.setTranslationX(pipRect2.x);
textureView2.setTranslationY(pipRect2.y);
} else {
PipVideoOverlay.dismiss();
}
EmbedBottomSheet.this.setShowWithoutAnimation(true);
EmbedBottomSheet.this.show();
if (animated) {
EmbedBottomSheet.this.waitingForDraw = 4;
((BottomSheet) EmbedBottomSheet.this).backDrawable.setAlpha(1);
((BottomSheet) EmbedBottomSheet.this).containerView.setTranslationY(((BottomSheet) EmbedBottomSheet.this).containerView.getMeasuredHeight() + AndroidUtilities.dp(10.0f));
}
}
@Override
public TextureView onSwitchInlineMode(View controlsView, boolean inline, int videoWidth, int videoHeight, int rotation, boolean animated) {
if (inline) {
controlsView.setTranslationY(0.0f);
TextureView textureView = new TextureView(EmbedBottomSheet.this.parentActivity);
if (!PipVideoOverlay.show(false, EmbedBottomSheet.this.parentActivity, textureView, videoWidth, videoHeight)) {
return null;
}
PipVideoOverlay.setParentSheet(EmbedBottomSheet.this);
return textureView;
}
if (!animated) {
((BottomSheet) EmbedBottomSheet.this).containerView.setTranslationY(0.0f);
} else {
EmbedBottomSheet.this.animationInProgress = true;
EmbedBottomSheet.this.videoView.getAspectRatioView().getLocationInWindow(EmbedBottomSheet.this.position);
int[] iArr = EmbedBottomSheet.this.position;
iArr[0] = iArr[0] - EmbedBottomSheet.this.getLeftInset();
EmbedBottomSheet.this.position[1] = (int) (r8[1] - ((BottomSheet) EmbedBottomSheet.this).containerView.getTranslationY());
TextureView textureView2 = EmbedBottomSheet.this.videoView.getTextureView();
ImageView textureImageView = EmbedBottomSheet.this.videoView.getTextureImageView();
AnimatorSet animatorSet = new AnimatorSet();
animatorSet.playTogether(ObjectAnimator.ofFloat(textureImageView, (Property<ImageView, Float>) View.SCALE_X, 1.0f), ObjectAnimator.ofFloat(textureImageView, (Property<ImageView, Float>) View.SCALE_Y, 1.0f), ObjectAnimator.ofFloat(textureImageView, (Property<ImageView, Float>) View.TRANSLATION_X, EmbedBottomSheet.this.position[0]), ObjectAnimator.ofFloat(textureImageView, (Property<ImageView, Float>) View.TRANSLATION_Y, EmbedBottomSheet.this.position[1]), ObjectAnimator.ofFloat(textureView2, (Property<TextureView, Float>) View.SCALE_X, 1.0f), ObjectAnimator.ofFloat(textureView2, (Property<TextureView, Float>) View.SCALE_Y, 1.0f), ObjectAnimator.ofFloat(textureView2, (Property<TextureView, Float>) View.TRANSLATION_X, EmbedBottomSheet.this.position[0]), ObjectAnimator.ofFloat(textureView2, (Property<TextureView, Float>) View.TRANSLATION_Y, EmbedBottomSheet.this.position[1]), ObjectAnimator.ofFloat(((BottomSheet) EmbedBottomSheet.this).containerView, (Property<ViewGroup, Float>) View.TRANSLATION_Y, 0.0f), ObjectAnimator.ofInt(((BottomSheet) EmbedBottomSheet.this).backDrawable, AnimationProperties.COLOR_DRAWABLE_ALPHA, 51));
animatorSet.setInterpolator(new DecelerateInterpolator());
animatorSet.setDuration(250L);
animatorSet.addListener(new AnimatorListenerAdapter() {
@Override
public void onAnimationEnd(Animator animation) {
EmbedBottomSheet.this.animationInProgress = false;
}
});
animatorSet.start();
}
return null;
}
@Override
public void onPlayStateChanged(WebPlayerView playerView, boolean playing) {
if (playing) {
try {
EmbedBottomSheet.this.parentActivity.getWindow().addFlags(128);
return;
} catch (Exception e) {
FileLog.e(e);
return;
}
}
try {
EmbedBottomSheet.this.parentActivity.getWindow().clearFlags(128);
} catch (Exception e2) {
FileLog.e(e2);
}
}
@Override
public boolean checkInlinePermissions() {
return EmbedBottomSheet.this.checkInlinePermissions();
}
@Override
public ViewGroup getTextureViewContainer() {
return ((BottomSheet) EmbedBottomSheet.this).container;
}
});
this.videoView = webPlayerView;
webPlayerView.setVisibility(4);
this.containerLayout.addView(this.videoView, LayoutHelper.createFrame(-1, -1.0f, 51, 0.0f, 0.0f, 0.0f, ((this.hasDescription ? 22 : 0) + 84) - 10));
View view = new View(context);
this.progressBarBlackBackground = view;
view.setBackgroundColor(-16777216);
this.progressBarBlackBackground.setVisibility(4);
this.containerLayout.addView(this.progressBarBlackBackground, LayoutHelper.createFrame(-1, -1.0f, 51, 0.0f, 0.0f, 0.0f, (this.hasDescription ? 22 : 0) + 84));
RadialProgressView radialProgressView = new RadialProgressView(context);
this.progressBar = radialProgressView;
radialProgressView.setVisibility(4);
this.containerLayout.addView(this.progressBar, LayoutHelper.createFrame(-2, -2.0f, 17, 0.0f, 0.0f, 0.0f, ((this.hasDescription ? 22 : 0) + 84) / 2));
if (this.hasDescription) {
TextView textView = new TextView(context);
textView.setTextSize(1, 16.0f);
textView.setTextColor(Theme.usePlusTheme ? Theme.dialogTextColor : Theme.getColor(Theme.key_dialogTextBlack));
textView.setText(description);
textView.setSingleLine(true);
textView.setTypeface(AndroidUtilities.bold());
textView.setEllipsize(TextUtils.TruncateAt.END);
textView.setPadding(AndroidUtilities.dp(18.0f), 0, AndroidUtilities.dp(18.0f), 0);
this.containerLayout.addView(textView, LayoutHelper.createFrame(-1, -2.0f, 83, 0.0f, 0.0f, 0.0f, 77.0f));
}
TextView textView2 = new TextView(context);
textView2.setTextSize(1, 14.0f);
textView2.setTextColor(Theme.getColor(Theme.key_dialogTextGray));
textView2.setText(title);
textView2.setSingleLine(true);
textView2.setEllipsize(TextUtils.TruncateAt.END);
textView2.setPadding(AndroidUtilities.dp(18.0f), 0, AndroidUtilities.dp(18.0f), 0);
this.containerLayout.addView(textView2, LayoutHelper.createFrame(-1, -2.0f, 83, 0.0f, 0.0f, 0.0f, 57.0f));
View view2 = new View(context);
view2.setBackgroundColor(Theme.getColor(Theme.key_dialogGrayLine));
this.containerLayout.addView(view2, new FrameLayout.LayoutParams(-1, 1, 83));
((FrameLayout.LayoutParams) view2.getLayoutParams()).bottomMargin = AndroidUtilities.dp(48.0f);
FrameLayout frameLayout3 = new FrameLayout(context);
frameLayout3.setBackgroundColor(Theme.usePlusTheme ? Theme.dialogBGColor : Theme.getColor(Theme.key_dialogBackground));
this.containerLayout.addView(frameLayout3, LayoutHelper.createFrame(-1, 48, 83));
LinearLayout linearLayout = new LinearLayout(context);
linearLayout.setOrientation(0);
linearLayout.setWeightSum(1.0f);
frameLayout3.addView(linearLayout, LayoutHelper.createFrame(-2, -1, 53));
TextView textView3 = new TextView(context);
textView3.setTextSize(1, 14.0f);
int i2 = Theme.key_dialogTextBlue4;
textView3.setTextColor(Theme.getColor(i2));
textView3.setGravity(17);
textView3.setSingleLine(true);
textView3.setEllipsize(TextUtils.TruncateAt.END);
int i3 = Theme.key_dialogButtonSelector;
textView3.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.getColor(i3), 0));
textView3.setPadding(AndroidUtilities.dp(18.0f), 0, AndroidUtilities.dp(18.0f), 0);
textView3.setText(LocaleController.getString("Close", R.string.Close).toUpperCase());
textView3.setTypeface(AndroidUtilities.bold());
frameLayout3.addView(textView3, LayoutHelper.createLinear(-2, -1, 51));
textView3.setOnClickListener(new View.OnClickListener() {
@Override
public final void onClick(View view3) {
EmbedBottomSheet.this.lambda$new$2(view3);
}
});
LinearLayout linearLayout2 = new LinearLayout(context);
this.imageButtonsContainer = linearLayout2;
linearLayout2.setVisibility(4);
frameLayout3.addView(this.imageButtonsContainer, LayoutHelper.createFrame(-2, -1, 17));
ImageView imageView = new ImageView(context);
this.pipButton = imageView;
imageView.setScaleType(ImageView.ScaleType.CENTER);
this.pipButton.setImageResource(R.drawable.ic_goinline);
this.pipButton.setContentDescription(LocaleController.getString("AccDescrPipMode", R.string.AccDescrPipMode));
this.pipButton.setEnabled(false);
this.pipButton.setAlpha(0.5f);
this.pipButton.setColorFilter(new PorterDuffColorFilter(Theme.getColor(i2), PorterDuff.Mode.MULTIPLY));
this.pipButton.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.getColor(i3), 0));
this.imageButtonsContainer.addView(this.pipButton, LayoutHelper.createFrame(48, 48.0f, 51, 0.0f, 0.0f, 4.0f, 0.0f));
this.pipButton.setOnClickListener(new View.OnClickListener() {
@Override
public final void onClick(View view3) {
EmbedBottomSheet.this.lambda$new$3(view3);
}
});
View.OnClickListener onClickListener = new View.OnClickListener() {
@Override
public final void onClick(View view3) {
EmbedBottomSheet.this.lambda$new$4(view3);
}
};
ImageView imageView2 = new ImageView(context);
imageView2.setScaleType(ImageView.ScaleType.CENTER);
imageView2.setImageResource(R.drawable.msg_copy);
imageView2.setContentDescription(LocaleController.getString("CopyLink", R.string.CopyLink));
imageView2.setColorFilter(new PorterDuffColorFilter(Theme.getColor(i2), PorterDuff.Mode.MULTIPLY));
imageView2.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.getColor(i3), 0));
this.imageButtonsContainer.addView(imageView2, LayoutHelper.createFrame(48, 48, 51));
imageView2.setOnClickListener(onClickListener);
TextView textView4 = new TextView(context);
this.copyTextButton = textView4;
textView4.setTextSize(1, 14.0f);
this.copyTextButton.setTextColor(Theme.getColor(i2));
this.copyTextButton.setGravity(17);
this.copyTextButton.setSingleLine(true);
this.copyTextButton.setEllipsize(TextUtils.TruncateAt.END);
this.copyTextButton.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.getColor(i3), 0));
this.copyTextButton.setPadding(AndroidUtilities.dp(18.0f), 0, AndroidUtilities.dp(18.0f), 0);
this.copyTextButton.setText(LocaleController.getString("Copy", R.string.Copy).toUpperCase());
this.copyTextButton.setTypeface(AndroidUtilities.bold());
linearLayout.addView(this.copyTextButton, LayoutHelper.createFrame(-2, -1, 51));
this.copyTextButton.setOnClickListener(onClickListener);
TextView textView5 = new TextView(context);
textView5.setTextSize(1, 14.0f);
textView5.setTextColor(Theme.getColor(i2));
textView5.setGravity(17);
textView5.setSingleLine(true);
textView5.setEllipsize(TextUtils.TruncateAt.END);
textView5.setBackgroundDrawable(Theme.createSelectorDrawable(Theme.getColor(i3), 0));
textView5.setPadding(AndroidUtilities.dp(18.0f), 0, AndroidUtilities.dp(18.0f), 0);
textView5.setText(LocaleController.getString("OpenInBrowser", R.string.OpenInBrowser).toUpperCase());
textView5.setTypeface(AndroidUtilities.bold());
linearLayout.addView(textView5, LayoutHelper.createFrame(-2, -1, 51));
textView5.setOnClickListener(new View.OnClickListener() {
@Override
public final void onClick(View view3) {
EmbedBottomSheet.this.lambda$new$5(view3);
}
});
final boolean z = this.videoView.canHandleUrl(this.embedUrl) || this.videoView.canHandleUrl(originalUrl);
this.videoView.setVisibility(z ? 0 : 4);
if (z) {
this.videoView.willHandle();
}
setDelegate(new BottomSheet.BottomSheetDelegate() {
public void onOpenAnimationEnd() {
int intValue;
if (z && EmbedBottomSheet.this.videoView.loadVideo(EmbedBottomSheet.this.embedUrl, null, null, EmbedBottomSheet.this.openUrl, true)) {
EmbedBottomSheet.this.progressBar.setVisibility(4);
EmbedBottomSheet.this.webView.setVisibility(4);
EmbedBottomSheet.this.videoView.setVisibility(0);
return;
}
EmbedBottomSheet.this.progressBar.setVisibility(0);
EmbedBottomSheet.this.webView.setVisibility(0);
EmbedBottomSheet.this.imageButtonsContainer.setVisibility(0);
EmbedBottomSheet.this.copyTextButton.setVisibility(4);
EmbedBottomSheet.this.webView.setKeepScreenOn(true);
EmbedBottomSheet.this.videoView.setVisibility(4);
EmbedBottomSheet.this.videoView.getControlsView().setVisibility(4);
EmbedBottomSheet.this.videoView.getTextureView().setVisibility(4);
if (EmbedBottomSheet.this.videoView.getTextureImageView() != null) {
EmbedBottomSheet.this.videoView.getTextureImageView().setVisibility(4);
}
EmbedBottomSheet.this.videoView.loadVideo(null, null, null, null, false);
HashMap hashMap = new HashMap();
hashMap.put("Referer", "messenger.telegram.org");
try {
String youtubeId = EmbedBottomSheet.this.videoView.getYoutubeId();
if (youtubeId != null) {
EmbedBottomSheet.this.progressBarBlackBackground.setVisibility(0);
EmbedBottomSheet.this.isYouTube = true;
String str = null;
Object[] objArr = 0;
if (Build.VERSION.SDK_INT >= 17) {
EmbedBottomSheet.this.webView.addJavascriptInterface(new YoutubeProxy(), "YoutubeProxy");
}
if (EmbedBottomSheet.this.openUrl != null) {
try {
Uri parse = Uri.parse(EmbedBottomSheet.this.openUrl);
if (EmbedBottomSheet.this.seekTimeOverride > 0) {
str = BuildConfig.APP_CENTER_HASH + EmbedBottomSheet.this.seekTimeOverride;
}
if (str == null && (str = parse.getQueryParameter("t")) == null) {
str = parse.getQueryParameter("time_continue");
}
} catch (Exception e) {
FileLog.e(e);
}
if (str != null) {
if (str.contains("m")) {
String[] split = str.split("m");
intValue = (Utilities.parseInt((CharSequence) split[0]).intValue() * 60) + Utilities.parseInt((CharSequence) split[1]).intValue();
} else {
intValue = Utilities.parseInt((CharSequence) str).intValue();
}
EmbedBottomSheet.this.webView.loadDataWithBaseURL("https://messenger.telegram.org/", String.format(Locale.US, "<!DOCTYPE html><html><head><style>body { margin: 0; width:100%%; height:100%%; background-color:#000; }html { width:100%%; height:100%%; background-color:#000; }.embed-container iframe,.embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%% !important; height: 100%% !important; } </style></head><body> <div class=\"embed-container\"> <div id=\"player\"></div> </div> <script src=\"https://www.youtube.com/iframe_api\"></script> <script> var player; var observer; var videoEl; var playing; var posted = false; YT.ready(function() { player = new YT.Player(\"player\", { \"width\" : \"100%%\", \"events\" : { \"onReady\" : \"onReady\", \"onError\" : \"onError\", \"onStateChange\" : \"onStateChange\", }, \"videoId\" : \"%1$s\", \"height\" : \"100%%\", \"playerVars\" : { \"start\" : %2$d, \"rel\" : 1, \"showinfo\" : 0, \"modestbranding\" : 0, \"iv_load_policy\" : 3, \"autohide\" : 1, \"autoplay\" : 1, \"cc_load_policy\" : 1, \"playsinline\" : 1, \"controls\" : 1 } }); player.setSize(window.innerWidth, window.innerHeight); }); function hideControls() { playing = !videoEl.paused; videoEl.controls = 0; observer.observe(videoEl, {attributes: true}); } function showControls() { playing = !videoEl.paused; observer.disconnect(); videoEl.controls = 1; } function onError(event) { if (!posted) { if (window.YoutubeProxy !== undefined) { YoutubeProxy.postEvent(\"loaded\", null); } posted = true; } } function onStateChange(event) { if (event.data == YT.PlayerState.PLAYING && !posted) { if (window.YoutubeProxy !== undefined) { YoutubeProxy.postEvent(\"loaded\", null); } posted = true; } } function onReady(event) { player.playVideo(); } window.onresize = function() { player.setSize(window.innerWidth, window.innerHeight); player.playVideo(); } </script></body></html>", youtubeId, Integer.valueOf(intValue)), "text/html", "UTF-8", "https://youtube.com");
return;
}
}
intValue = 0;
EmbedBottomSheet.this.webView.loadDataWithBaseURL("https://messenger.telegram.org/", String.format(Locale.US, "<!DOCTYPE html><html><head><style>body { margin: 0; width:100%%; height:100%%; background-color:#000; }html { width:100%%; height:100%%; background-color:#000; }.embed-container iframe,.embed-container object, .embed-container embed { position: absolute; top: 0; left: 0; width: 100%% !important; height: 100%% !important; } </style></head><body> <div class=\"embed-container\"> <div id=\"player\"></div> </div> <script src=\"https://www.youtube.com/iframe_api\"></script> <script> var player; var observer; var videoEl; var playing; var posted = false; YT.ready(function() { player = new YT.Player(\"player\", { \"width\" : \"100%%\", \"events\" : { \"onReady\" : \"onReady\", \"onError\" : \"onError\", \"onStateChange\" : \"onStateChange\", }, \"videoId\" : \"%1$s\", \"height\" : \"100%%\", \"playerVars\" : { \"start\" : %2$d, \"rel\" : 1, \"showinfo\" : 0, \"modestbranding\" : 0, \"iv_load_policy\" : 3, \"autohide\" : 1, \"autoplay\" : 1, \"cc_load_policy\" : 1, \"playsinline\" : 1, \"controls\" : 1 } }); player.setSize(window.innerWidth, window.innerHeight); }); function hideControls() { playing = !videoEl.paused; videoEl.controls = 0; observer.observe(videoEl, {attributes: true}); } function showControls() { playing = !videoEl.paused; observer.disconnect(); videoEl.controls = 1; } function onError(event) { if (!posted) { if (window.YoutubeProxy !== undefined) { YoutubeProxy.postEvent(\"loaded\", null); } posted = true; } } function onStateChange(event) { if (event.data == YT.PlayerState.PLAYING && !posted) { if (window.YoutubeProxy !== undefined) { YoutubeProxy.postEvent(\"loaded\", null); } posted = true; } } function onReady(event) { player.playVideo(); } window.onresize = function() { player.setSize(window.innerWidth, window.innerHeight); player.playVideo(); } </script></body></html>", youtubeId, Integer.valueOf(intValue)), "text/html", "UTF-8", "https://youtube.com");
return;
}
EmbedBottomSheet.this.webView.loadUrl(EmbedBottomSheet.this.embedUrl, hashMap);
} catch (Exception e2) {
FileLog.e(e2);
}
}
public boolean canDismiss() {
if (EmbedBottomSheet.this.videoView.isInFullscreen()) {
EmbedBottomSheet.this.videoView.exitFullscreen();
return false;
}
try {
EmbedBottomSheet.this.parentActivity.getWindow().clearFlags(128);
return true;
} catch (Exception e) {
FileLog.e(e);
return true;
}
}
});
this.orientationEventListener = new OrientationEventListener(ApplicationLoader.applicationContext) {
@Override
public void onOrientationChanged(int orientation) {
if (EmbedBottomSheet.this.orientationEventListener != null && EmbedBottomSheet.this.videoView.getVisibility() == 0 && EmbedBottomSheet.this.parentActivity != null && EmbedBottomSheet.this.videoView.isInFullscreen() && EmbedBottomSheet.this.fullscreenedByButton) {
if (orientation >= 240 && orientation <= 300) {
EmbedBottomSheet.this.wasInLandscape = true;
return;
}
if (!EmbedBottomSheet.this.wasInLandscape || orientation <= 0) {
return;
}
if (orientation >= 330 || orientation <= 30) {
EmbedBottomSheet.this.parentActivity.setRequestedOrientation(EmbedBottomSheet.this.prevOrientation);
EmbedBottomSheet.this.fullscreenedByButton = false;
EmbedBottomSheet.this.wasInLandscape = false;
}
}
}
};
String youTubeVideoId = WebPlayerView.getYouTubeVideoId(this.embedUrl);
if (youTubeVideoId != null || !z) {
this.progressBar.setVisibility(0);
this.webView.setVisibility(0);
this.imageButtonsContainer.setVisibility(0);
if (youTubeVideoId != null) {
this.progressBarBlackBackground.setVisibility(0);
}
this.copyTextButton.setVisibility(4);
this.webView.setKeepScreenOn(true);
this.videoView.setVisibility(4);
this.videoView.getControlsView().setVisibility(4);
this.videoView.getTextureView().setVisibility(4);
if (this.videoView.getTextureImageView() != null) {
this.videoView.getTextureImageView().setVisibility(4);
}
if (youTubeVideoId != null && "disabled".equals(MessagesController.getInstance(((BottomSheet) this).currentAccount).youtubePipType)) {
this.pipButton.setVisibility(8);
}
}
if (this.orientationEventListener.canDetectOrientation()) {
this.orientationEventListener.enable();
} else {
this.orientationEventListener.disable();
this.orientationEventListener = null;
}
instance = this;
}
public class AnonymousClass5 extends WebViewClient {
public AnonymousClass5() {
}
@Override
public boolean onRenderProcessGone(WebView view, RenderProcessGoneDetail detail) {
LaunchActivity launchActivity = LaunchActivity.instance;
if (launchActivity != null && launchActivity.isFinishing()) {
return true;
}
new AlertDialog.Builder(EmbedBottomSheet.this.getContext(), ((BottomSheet) EmbedBottomSheet.this).resourcesProvider).setTitle(LocaleController.getString(R.string.ChromeCrashTitle)).setMessage(AndroidUtilities.replaceSingleTag(LocaleController.getString(R.string.ChromeCrashMessage), new Runnable() {
@Override
public final void run() {
EmbedBottomSheet.AnonymousClass5.this.lambda$onRenderProcessGone$0();
}
})).setPositiveButton(LocaleController.getString(R.string.OK), (DialogInterface.OnClickListener) null).show();
return true;
}
public void lambda$onRenderProcessGone$0() {
Browser.openUrl(EmbedBottomSheet.this.getContext(), "https://play.google.com/store/apps/details?id=com.google.android.webview");
}
@Override
public void onLoadResource(WebView view, String url) {
super.onLoadResource(view, url);
}
@Override
public void onPageFinished(WebView view, String url) {
super.onPageFinished(view, url);
if (!EmbedBottomSheet.this.isYouTube || Build.VERSION.SDK_INT < 17) {
EmbedBottomSheet.this.progressBar.setVisibility(4);
EmbedBottomSheet.this.progressBarBlackBackground.setVisibility(4);
EmbedBottomSheet.this.pipButton.setEnabled(true);
EmbedBottomSheet.this.pipButton.setAlpha(1.0f);
}
}
@Override
public boolean shouldOverrideUrlLoading(WebView view, String url) {
if (EmbedBottomSheet.this.isYouTube) {
Browser.openUrl(view.getContext(), url);
return true;
}
return super.shouldOverrideUrlLoading(view, url);
}
}
public void lambda$new$2(View view) {
dismiss();
}
public void lambda$new$3(View view) {
if (PipVideoOverlay.isVisible()) {
PipVideoOverlay.dismiss();
Objects.requireNonNull(view);
AndroidUtilities.runOnUIThread(new ChatActivityEnterView$$ExternalSyntheticLambda42(view), 300L);
return;
}
boolean z = this.isYouTube && "inapp".equals(MessagesController.getInstance(((BottomSheet) this).currentAccount).youtubePipType);
if ((z || checkInlinePermissions()) && this.progressBar.getVisibility() != 0) {
if (PipVideoOverlay.show(z, this.parentActivity, this.webView, this.width, this.height)) {
PipVideoOverlay.setParentSheet(this);
}
if (this.isYouTube) {
runJsCode("hideControls();");
}
((BottomSheet) this).containerView.setTranslationY(0.0f);
dismissInternal();
}
}
public void lambda$new$4(View view) {
try {
((ClipboardManager) ApplicationLoader.applicationContext.getSystemService("clipboard")).setPrimaryClip(ClipData.newPlainText("label", this.openUrl));
} catch (Exception e) {
FileLog.e(e);
}
LaunchActivity launchActivity = this.parentActivity;
if ((launchActivity instanceof LaunchActivity) && !PlusSettings.hideMsgDeletedHint) {
launchActivity.showBulletin(new Function() {
public final Object apply(Object obj) {
return ((BulletinFactory) obj).createCopyLinkBulletin();
}
});
}
dismiss();
}
public void lambda$new$5(View view) {
Browser.openUrl(this.parentActivity, this.openUrl);
dismiss();
}
public final void runJsCode(String code) {
if (Build.VERSION.SDK_INT >= 21) {
this.webView.evaluateJavascript(code, null);
return;
}
try {
this.webView.loadUrl("javascript:" + code);
} catch (Exception e) {
FileLog.e(e);
}
}
public boolean checkInlinePermissions() {
Activity activity = this.parentActivity;
if (activity == null) {
return false;
}
if (Build.VERSION.SDK_INT < 23 || Settings.canDrawOverlays(activity)) {
return true;
}
AlertsCreator.createDrawOverlayPermissionDialog(this.parentActivity, null);
return false;
}
public boolean canDismissWithSwipe() {
return (this.videoView.getVisibility() == 0 && this.videoView.isInFullscreen()) ? false : true;
}
public void onConfigurationChanged(Configuration newConfig) {
if (this.videoView.getVisibility() == 0 && this.videoView.isInitied() && !this.videoView.isInline()) {
if (newConfig.orientation == 2) {
if (this.videoView.isInFullscreen()) {
return;
}
this.videoView.enterFullscreen();
} else if (this.videoView.isInFullscreen()) {
this.videoView.exitFullscreen();
}
}
}
public void destroy() {
WebView webView = this.webView;
if (webView != null && webView.getVisibility() == 0) {
this.containerLayout.removeView(this.webView);
this.webView.stopLoading();
this.webView.loadUrl("about:blank");
this.webView.destroy();
}
PipVideoOverlay.dismiss();
WebPlayerView webPlayerView = this.videoView;
if (webPlayerView != null) {
webPlayerView.destroy();
}
instance = null;
dismissInternal();
}
public void dismissInternal() {
super.dismissInternal();
OrientationEventListener orientationEventListener = this.orientationEventListener;
if (orientationEventListener != null) {
orientationEventListener.disable();
this.orientationEventListener = null;
}
}
public void exitFromPip() {
if (this.webView == null || !PipVideoOverlay.isVisible()) {
return;
}
if (ApplicationLoader.mainInterfacePaused) {
try {
this.parentActivity.startService(new Intent(ApplicationLoader.applicationContext, (Class<?>) BringAppForegroundService.class));
} catch (Throwable th) {
FileLog.e(th);
}
}
if (this.isYouTube) {
runJsCode("showControls();");
}
ViewGroup viewGroup = (ViewGroup) this.webView.getParent();
if (viewGroup != null) {
viewGroup.removeView(this.webView);
}
this.containerLayout.addView(this.webView, 0, LayoutHelper.createFrame(-1, -1.0f, 51, 0.0f, 0.0f, 0.0f, (this.hasDescription ? 22 : 0) + 84));
setShowWithoutAnimation(true);
show();
PipVideoOverlay.dismiss(true);
}
public static EmbedBottomSheet getInstance() {
return instance;
}
public void updateTextureViewPosition() {
this.videoView.getAspectRatioView().getLocationInWindow(this.position);
int[] iArr = this.position;
iArr[0] = iArr[0] - getLeftInset();
if (!this.videoView.isInline() && !this.animationInProgress) {
TextureView textureView = this.videoView.getTextureView();
textureView.setTranslationX(this.position[0]);
textureView.setTranslationY(this.position[1]);
ImageView textureImageView = this.videoView.getTextureImageView();
if (textureImageView != null) {
textureImageView.setTranslationX(this.position[0]);
textureImageView.setTranslationY(this.position[1]);
}
}
View controlsView = this.videoView.getControlsView();
if (controlsView.getParent() == ((BottomSheet) this).container) {
controlsView.setTranslationY(this.position[1]);
} else {
controlsView.setTranslationY(0.0f);
}
}
public boolean canDismissWithTouchOutside() {
return this.fullscreenVideoContainer.getVisibility() != 0;
}
public void onContainerTranslationYChanged(float translationY) {
updateTextureViewPosition();
}
public boolean onCustomMeasure(View view, int width, int height) {
if (view == this.videoView.getControlsView()) {
ViewGroup.LayoutParams layoutParams = view.getLayoutParams();
layoutParams.width = this.videoView.getMeasuredWidth();
layoutParams.height = this.videoView.getAspectRatioView().getMeasuredHeight() + (this.videoView.isInFullscreen() ? 0 : AndroidUtilities.dp(10.0f));
}
return false;
}
public boolean onCustomLayout(View view, int left, int top, int right, int bottom) {
if (view != this.videoView.getControlsView()) {
return false;
}
updateTextureViewPosition();
return false;
}
public void pause() {
WebPlayerView webPlayerView = this.videoView;
if (webPlayerView == null || !webPlayerView.isInitied()) {
return;
}
this.videoView.pause();
}
public void onContainerDraw(Canvas canvas) {
int i = this.waitingForDraw;
if (i != 0) {
int i2 = i - 1;
this.waitingForDraw = i2;
if (i2 == 0) {
this.videoView.updateTextureImageView();
PipVideoOverlay.dismiss();
} else {
((BottomSheet) this).container.invalidate();
}
}
}
}