package org.schabi.newpipe; import android.app.Activity; import android.content.Intent; import android.os.Build; import android.os.Bundle; import android.widget.Toast; import org.schabi.newpipe.extractor.NewPipe; import org.schabi.newpipe.extractor.StreamingService; import org.schabi.newpipe.player.PopupVideoPlayer; import org.schabi.newpipe.util.Constants; import org.schabi.newpipe.util.PermissionHelper; import java.util.Collection; import java.util.HashSet; /** * This activity is thought to open video streams form an external app using the popup player. */ public class RouterPopupActivity extends Activity { //private static final String TAG = "RouterPopupActivity"; /** * Removes invisible separators (\p{Z}) and punctuation characters including * brackets (\p{P}). See http://www.regular-expressions.info/unicode.html for * more details. */ private final static String REGEX_REMOVE_FROM_URL = "[\\p{Z}\\p{P}]"; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); handleIntent(getIntent()); finish(); } private void handleIntent(Intent intent) { if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M && !PermissionHelper.checkSystemAlertWindowPermission(this)) { Toast.makeText(this, R.string.msg_popup_permission, Toast.LENGTH_LONG).show(); return; } String videoUrl = ""; StreamingService service; // first gather data and find service if (intent.getData() != null) { // this means the video was called though another app videoUrl = intent.getData().toString(); } else if (intent.getStringExtra(Intent.EXTRA_TEXT) != null) { //this means that vidoe was called through share menu String extraText = intent.getStringExtra(Intent.EXTRA_TEXT); videoUrl = getUris(extraText)[0]; } service = NewPipe.getServiceByUrl(videoUrl); if (service == null) { Toast.makeText(this, R.string.url_not_supported_toast, Toast.LENGTH_LONG).show(); return; } Intent callIntent = new Intent(this, PopupVideoPlayer.class); switch (service.getLinkTypeByUrl(videoUrl)) { case STREAM: break; default: Toast.makeText(this, R.string.url_not_supported_toast, Toast.LENGTH_LONG).show(); return; } callIntent.putExtra(Constants.KEY_URL, videoUrl); callIntent.putExtra(Constants.KEY_SERVICE_ID, service.getServiceId()); startService(callIntent); } private static String removeHeadingGibberish(final String input) { int start = 0; for (int i = input.indexOf("://") - 1; i >= 0; i--) { if (!input.substring(i, i + 1).matches("\\p{L}")) { start = i + 1; break; } } return input.substring(start, input.length()); } private static String trim(final String input) { if (input == null || input.length() < 1) { return input; } else { String output = input; while (output.length() > 0 && output.substring(0, 1).matches(REGEX_REMOVE_FROM_URL)) { output = output.substring(1); } while (output.length() > 0 && output.substring(output.length() - 1, output.length()).matches(REGEX_REMOVE_FROM_URL)) { output = output.substring(0, output.length() - 1); } return output; } } /** * Retrieves all Strings which look remotely like URLs from a text. * Used if NewPipe was called through share menu. * * @param sharedText text to scan for URLs. * @return potential URLs */ private String[] getUris(final String sharedText) { final Collection result = new HashSet<>(); if (sharedText != null) { final String[] array = sharedText.split("\\p{Space}"); for (String s : array) { s = trim(s); if (s.length() != 0) { if (s.matches(".+://.+")) { result.add(removeHeadingGibberish(s)); } else if (s.matches(".+\\..+")) { result.add("http://" + s); } } } } return result.toArray(new String[result.size()]); } }