mirror of
				https://github.com/TeamNewPipe/NewPipe
				synced 2025-10-30 23:03:00 +00:00 
			
		
		
		
	Merge pull request #2742 from mauriciocolli/fix-mess-tabs
Fix tab handling and enable ignored tests again
This commit is contained in:
		| @@ -107,6 +107,7 @@ public abstract class BaseFragment extends Fragment { | ||||
|         if (DEBUG) Log.d(TAG, "setTitle() called with: title = [" + title + "]"); | ||||
|         if((!useAsFrontPage || mIsVisibleToUser) | ||||
|             && (activity != null && activity.getSupportActionBar() != null)) { | ||||
|             activity.getSupportActionBar().setDisplayShowTitleEnabled(true); | ||||
|             activity.getSupportActionBar().setTitle(title); | ||||
|         } | ||||
|     } | ||||
|   | ||||
| @@ -1,5 +1,6 @@ | ||||
| package org.schabi.newpipe.fragments; | ||||
|  | ||||
| import android.content.Context; | ||||
| import android.os.Bundle; | ||||
| import android.util.Log; | ||||
| import android.view.LayoutInflater; | ||||
| @@ -15,7 +16,7 @@ import androidx.appcompat.app.ActionBar; | ||||
| import androidx.appcompat.app.AppCompatActivity; | ||||
| import androidx.fragment.app.Fragment; | ||||
| import androidx.fragment.app.FragmentManager; | ||||
| import androidx.fragment.app.FragmentPagerAdapter; | ||||
| import androidx.fragment.app.FragmentStatePagerAdapter; | ||||
| import androidx.viewpager.widget.ViewPager; | ||||
|  | ||||
| import com.google.android.material.tabs.TabLayout; | ||||
| @@ -52,32 +53,19 @@ public class MainFragment extends BaseFragment implements TabLayout.OnTabSelecte | ||||
|         super.onCreate(savedInstanceState); | ||||
|         setHasOptionsMenu(true); | ||||
|  | ||||
|         destroyOldFragments(); | ||||
|  | ||||
|         tabsManager = TabsManager.getManager(activity); | ||||
|         tabsManager.setSavedTabsListener(() -> { | ||||
|             if (DEBUG) { | ||||
|                 Log.d(TAG, "TabsManager.SavedTabsChangeListener: onTabsChanged called, isResumed = " + isResumed()); | ||||
|             } | ||||
|             if (isResumed()) { | ||||
|                 updateTabs(); | ||||
|                 setupTabs(); | ||||
|             } else { | ||||
|                 hasTabsChanged = true; | ||||
|             } | ||||
|         }); | ||||
|     } | ||||
|  | ||||
|     private void destroyOldFragments() { | ||||
|         for (Fragment fragment : getChildFragmentManager().getFragments()) { | ||||
|             if (fragment != null) { | ||||
|                 getChildFragmentManager() | ||||
|                         .beginTransaction() | ||||
|                         .remove(fragment) | ||||
|                         .commitNowAllowingStateLoss(); | ||||
|             } | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) { | ||||
|         return inflater.inflate(R.layout.fragment_main, container, false); | ||||
| @@ -90,23 +78,17 @@ public class MainFragment extends BaseFragment implements TabLayout.OnTabSelecte | ||||
|         tabLayout = rootView.findViewById(R.id.main_tab_layout); | ||||
|         viewPager = rootView.findViewById(R.id.pager); | ||||
|  | ||||
|         /*  Nested fragment, use child fragment here to maintain backstack in view pager. */ | ||||
|         pagerAdapter = new SelectedTabsPagerAdapter(getChildFragmentManager()); | ||||
|         viewPager.setAdapter(pagerAdapter); | ||||
|  | ||||
|         tabLayout.setupWithViewPager(viewPager); | ||||
|         tabLayout.addOnTabSelectedListener(this); | ||||
|         updateTabs(); | ||||
|  | ||||
|         setupTabs(); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public void onResume() { | ||||
|         super.onResume(); | ||||
|  | ||||
|         if (hasTabsChanged) { | ||||
|             hasTabsChanged = false; | ||||
|             updateTabs(); | ||||
|         } | ||||
|         if (hasTabsChanged) setupTabs(); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
| @@ -153,45 +135,42 @@ public class MainFragment extends BaseFragment implements TabLayout.OnTabSelecte | ||||
|     // Tabs | ||||
|     //////////////////////////////////////////////////////////////////////////*/ | ||||
|  | ||||
|     public void updateTabs() { | ||||
|     public void setupTabs() { | ||||
|         tabsList.clear(); | ||||
|         tabsList.addAll(tabsManager.getTabs()); | ||||
|         pagerAdapter.notifyDataSetChanged(); | ||||
|  | ||||
|         viewPager.setOffscreenPageLimit(pagerAdapter.getCount()); | ||||
|         updateTabsIcon(); | ||||
|         updateTabsContentDescription(); | ||||
|         updateCurrentTitle(); | ||||
|         if (pagerAdapter == null || !pagerAdapter.sameTabs(tabsList)) { | ||||
|             pagerAdapter = new SelectedTabsPagerAdapter(requireContext(), getChildFragmentManager(), tabsList); | ||||
|         } | ||||
|         // Clear previous tabs/fragments and set new adapter | ||||
|         viewPager.setAdapter(pagerAdapter); | ||||
|         viewPager.setOffscreenPageLimit(tabsList.size()); | ||||
|  | ||||
|         updateTabsIconAndDescription(); | ||||
|         updateTitleForTab(viewPager.getCurrentItem()); | ||||
|  | ||||
|         hasTabsChanged = false; | ||||
|     } | ||||
|  | ||||
|     private void updateTabsIcon() { | ||||
|     private void updateTabsIconAndDescription() { | ||||
|         for (int i = 0; i < tabsList.size(); i++) { | ||||
|             final TabLayout.Tab tabToSet = tabLayout.getTabAt(i); | ||||
|             if (tabToSet != null) { | ||||
|                 tabToSet.setIcon(tabsList.get(i).getTabIconRes(activity)); | ||||
|                 final Tab tab = tabsList.get(i); | ||||
|                 tabToSet.setIcon(tab.getTabIconRes(requireContext())); | ||||
|                 tabToSet.setContentDescription(tab.getTabName(requireContext())); | ||||
|             } | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     private void updateTabsContentDescription() { | ||||
|         for (int i = 0; i < tabsList.size(); i++) { | ||||
|             final TabLayout.Tab tabToSet = tabLayout.getTabAt(i); | ||||
|             if (tabToSet != null) { | ||||
|                 final Tab t = tabsList.get(i); | ||||
|                 tabToSet.setIcon(t.getTabIconRes(activity)); | ||||
|                 tabToSet.setContentDescription(t.getTabName(activity)); | ||||
|             } | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     private void updateCurrentTitle() { | ||||
|         setTitle(tabsList.get(viewPager.getCurrentItem()).getTabName(requireContext())); | ||||
|     private void updateTitleForTab(int tabPosition) { | ||||
|         setTitle(tabsList.get(tabPosition).getTabName(requireContext())); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public void onTabSelected(TabLayout.Tab selectedTab) { | ||||
|         if (DEBUG) Log.d(TAG, "onTabSelected() called with: selectedTab = [" + selectedTab + "]"); | ||||
|         updateCurrentTitle(); | ||||
|         updateTitleForTab(selectedTab.getPosition()); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
| @@ -201,29 +180,33 @@ public class MainFragment extends BaseFragment implements TabLayout.OnTabSelecte | ||||
|     @Override | ||||
|     public void onTabReselected(TabLayout.Tab tab) { | ||||
|         if (DEBUG) Log.d(TAG, "onTabReselected() called with: tab = [" + tab + "]"); | ||||
|         updateCurrentTitle(); | ||||
|         updateTitleForTab(tab.getPosition()); | ||||
|     } | ||||
|  | ||||
|     private class SelectedTabsPagerAdapter extends FragmentPagerAdapter { | ||||
|     private static class SelectedTabsPagerAdapter extends FragmentStatePagerAdapter { | ||||
|         private final Context context; | ||||
|         private final List<Tab> internalTabsList; | ||||
|  | ||||
|         private SelectedTabsPagerAdapter(FragmentManager fragmentManager) { | ||||
|             super(fragmentManager); | ||||
|         private SelectedTabsPagerAdapter(Context context, FragmentManager fragmentManager, List<Tab> tabsList) { | ||||
|             super(fragmentManager, BEHAVIOR_RESUME_ONLY_CURRENT_FRAGMENT); | ||||
|             this.context = context; | ||||
|             this.internalTabsList = new ArrayList<>(tabsList); | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public Fragment getItem(int position) { | ||||
|             final Tab tab = tabsList.get(position); | ||||
|             final Tab tab = internalTabsList.get(position); | ||||
|  | ||||
|             Throwable throwable = null; | ||||
|             Fragment fragment = null; | ||||
|             try { | ||||
|                 fragment = tab.getFragment(); | ||||
|                 fragment = tab.getFragment(context); | ||||
|             } catch (ExtractionException e) { | ||||
|                 throwable = e; | ||||
|             } | ||||
|  | ||||
|             if (throwable != null) { | ||||
|                 ErrorActivity.reportError(activity, throwable, activity.getClass(), null, | ||||
|                 ErrorActivity.reportError(context, throwable, null, null, | ||||
|                         ErrorActivity.ErrorInfo.make(UserAction.UI_ERROR, "none", "", R.string.app_ui_crash)); | ||||
|                 return new BlankFragment(); | ||||
|             } | ||||
| @@ -244,15 +227,11 @@ public class MainFragment extends BaseFragment implements TabLayout.OnTabSelecte | ||||
|  | ||||
|         @Override | ||||
|         public int getCount() { | ||||
|             return tabsList.size(); | ||||
|             return internalTabsList.size(); | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public void destroyItem(ViewGroup container, int position, Object object) { | ||||
|             getChildFragmentManager() | ||||
|                     .beginTransaction() | ||||
|                     .remove((Fragment) object) | ||||
|                     .commitNowAllowingStateLoss(); | ||||
|         public boolean sameTabs(List<Tab> tabsToCompare) { | ||||
|             return internalTabsList.equals(tabsToCompare); | ||||
|         } | ||||
|     } | ||||
| } | ||||
|   | ||||
| @@ -111,6 +111,8 @@ public abstract class BaseListInfoFragment<I extends ListInfo> | ||||
|         super.startLoading(forceLoad); | ||||
|  | ||||
|         showListFooter(false); | ||||
|         infoListAdapter.clearStreamItemList(); | ||||
|  | ||||
|         currentInfo = null; | ||||
|         if (currentWorker != null) currentWorker.dispose(); | ||||
|         currentWorker = loadResult(forceLoad) | ||||
|   | ||||
| @@ -0,0 +1,51 @@ | ||||
| package org.schabi.newpipe.fragments.list.kiosk; | ||||
|  | ||||
| import android.os.Bundle; | ||||
|  | ||||
| import org.schabi.newpipe.extractor.NewPipe; | ||||
| import org.schabi.newpipe.extractor.exceptions.ExtractionException; | ||||
| import org.schabi.newpipe.extractor.kiosk.KioskList; | ||||
| import org.schabi.newpipe.report.UserAction; | ||||
| import org.schabi.newpipe.util.KioskTranslator; | ||||
| import org.schabi.newpipe.util.ServiceHelper; | ||||
|  | ||||
| public class DefaultKioskFragment extends KioskFragment { | ||||
|  | ||||
|     @Override | ||||
|     public void onCreate(Bundle savedInstanceState) { | ||||
|         super.onCreate(savedInstanceState); | ||||
|  | ||||
|         if (serviceId < 0) { | ||||
|             updateSelectedDefaultKiosk(); | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public void onResume() { | ||||
|         super.onResume(); | ||||
|  | ||||
|         if (serviceId != ServiceHelper.getSelectedServiceId(requireContext())) { | ||||
|             if (currentWorker != null) currentWorker.dispose(); | ||||
|             updateSelectedDefaultKiosk(); | ||||
|             reloadContent(); | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     private void updateSelectedDefaultKiosk() { | ||||
|         try { | ||||
|             serviceId = ServiceHelper.getSelectedServiceId(requireContext()); | ||||
|  | ||||
|             final KioskList kioskList = NewPipe.getService(serviceId).getKioskList(); | ||||
|             kioskId = kioskList.getDefaultKioskId(); | ||||
|             url = kioskList.getListLinkHandlerFactoryByType(kioskId).fromId(kioskId).getUrl(); | ||||
|  | ||||
|             kioskTranslatedName = KioskTranslator.getTranslatedKioskName(kioskId, requireContext()); | ||||
|             name = kioskTranslatedName; | ||||
|  | ||||
|             currentInfo = null; | ||||
|             currentNextPageUrl = null; | ||||
|         } catch (ExtractionException e) { | ||||
|             onUnrecoverableError(e, UserAction.REQUESTED_KIOSK, "none", "Loading default kiosk from selected service", 0); | ||||
|         } | ||||
|     } | ||||
| } | ||||
| @@ -4,6 +4,8 @@ import android.os.Bundle; | ||||
| import androidx.annotation.NonNull; | ||||
| import androidx.annotation.Nullable; | ||||
| import androidx.appcompat.app.ActionBar; | ||||
|  | ||||
| import android.preference.PreferenceManager; | ||||
| import android.view.LayoutInflater; | ||||
| import android.view.Menu; | ||||
| import android.view.MenuInflater; | ||||
| @@ -17,10 +19,12 @@ import org.schabi.newpipe.extractor.StreamingService; | ||||
| import org.schabi.newpipe.extractor.exceptions.ExtractionException; | ||||
| import org.schabi.newpipe.extractor.kiosk.KioskInfo; | ||||
| import org.schabi.newpipe.extractor.linkhandler.ListLinkHandlerFactory; | ||||
| import org.schabi.newpipe.extractor.localization.ContentCountry; | ||||
| import org.schabi.newpipe.fragments.list.BaseListInfoFragment; | ||||
| import org.schabi.newpipe.report.UserAction; | ||||
| import org.schabi.newpipe.util.ExtractorHelper; | ||||
| import org.schabi.newpipe.util.KioskTranslator; | ||||
| import org.schabi.newpipe.util.Localization; | ||||
|  | ||||
| import icepick.State; | ||||
| import io.reactivex.Single; | ||||
| @@ -52,6 +56,8 @@ public class KioskFragment extends BaseListInfoFragment<KioskInfo> { | ||||
|     @State | ||||
|     protected String kioskId = ""; | ||||
|     protected String kioskTranslatedName; | ||||
|     @State | ||||
|     protected ContentCountry contentCountry; | ||||
|  | ||||
|  | ||||
|     /*////////////////////////////////////////////////////////////////////////// | ||||
| @@ -87,6 +93,7 @@ public class KioskFragment extends BaseListInfoFragment<KioskInfo> { | ||||
|  | ||||
|         kioskTranslatedName = KioskTranslator.getTranslatedKioskName(kioskId, activity); | ||||
|         name = kioskTranslatedName; | ||||
|         contentCountry = Localization.getPreferredContentCountry(requireContext()); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
| @@ -108,6 +115,15 @@ public class KioskFragment extends BaseListInfoFragment<KioskInfo> { | ||||
|         return inflater.inflate(R.layout.fragment_kiosk, container, false); | ||||
|     } | ||||
|  | ||||
|     @Override | ||||
|     public void onResume() { | ||||
|         super.onResume(); | ||||
|  | ||||
|         if (!Localization.getPreferredContentCountry(requireContext()).equals(contentCountry)) { | ||||
|             reloadContent(); | ||||
|         } | ||||
|     } | ||||
|  | ||||
|     /*////////////////////////////////////////////////////////////////////////// | ||||
|     // Menu | ||||
|     //////////////////////////////////////////////////////////////////////////*/ | ||||
| @@ -127,6 +143,7 @@ public class KioskFragment extends BaseListInfoFragment<KioskInfo> { | ||||
|  | ||||
|     @Override | ||||
|     public Single<KioskInfo> loadResult(boolean forceReload) { | ||||
|         contentCountry = Localization.getPreferredContentCountry(requireContext()); | ||||
|         return ExtractorHelper.getKioskInfo(serviceId, | ||||
|                 url, | ||||
|                 forceReload); | ||||
|   | ||||
| @@ -17,6 +17,7 @@ import com.nononsenseapps.filepicker.Utils; | ||||
| import com.nostra13.universalimageloader.core.ImageLoader; | ||||
|  | ||||
| import org.schabi.newpipe.R; | ||||
| import org.schabi.newpipe.extractor.NewPipe; | ||||
| import org.schabi.newpipe.extractor.localization.ContentCountry; | ||||
| import org.schabi.newpipe.extractor.localization.Localization; | ||||
| import org.schabi.newpipe.report.ErrorActivity; | ||||
| @@ -128,6 +129,8 @@ public class ContentSettingsFragment extends BasePreferenceFragment { | ||||
|         if (!selectedLocalization.equals(initialSelectedLocalization) | ||||
|                 || !selectedContentCountry.equals(initialSelectedContentCountry)) { | ||||
|             Toast.makeText(requireContext(), R.string.localization_changes_requires_app_restart, Toast.LENGTH_LONG).show(); | ||||
|  | ||||
|             NewPipe.setupLocalization(selectedLocalization, selectedContentCountry); | ||||
|         } | ||||
|     } | ||||
|  | ||||
|   | ||||
| @@ -231,7 +231,7 @@ public class ChooseTabsFragment extends Fragment { | ||||
|                     break; | ||||
|                 case DEFAULT_KIOSK: | ||||
|                     if (!tabList.contains(tab)) { | ||||
|                         returnList.add(new ChooseTabListItem(tab.getTabId(), getString(R.string.default_kiosk_page_sumatry), | ||||
|                         returnList.add(new ChooseTabListItem(tab.getTabId(), getString(R.string.default_kiosk_page_summary), | ||||
|                                 ThemeHelper.resolveResourceIdFromAttr(context, R.attr.ic_hot))); | ||||
|                     } | ||||
|                     break; | ||||
| @@ -305,23 +305,25 @@ public class ChooseTabsFragment extends Fragment { | ||||
|                     return; | ||||
|                 } | ||||
|  | ||||
|                 String tabName = tab.getTabName(requireContext()); | ||||
|                 final String tabName; | ||||
|                 switch (type) { | ||||
|                     case BLANK: | ||||
|                         tabName = requireContext().getString(R.string.blank_page_summary); | ||||
|                         break; | ||||
|                     case KIOSK: | ||||
|                         tabName = NewPipe.getNameOfService(((Tab.KioskTab) tab).getKioskServiceId()) + "/" + tabName; | ||||
|                         break; | ||||
|                     case CHANNEL: | ||||
|                         tabName = NewPipe.getNameOfService(((Tab.ChannelTab) tab).getChannelServiceId()) + "/" + tabName; | ||||
|                         tabName = getString(R.string.blank_page_summary); | ||||
|                         break; | ||||
|                     case DEFAULT_KIOSK: | ||||
|                         tabName = requireContext().getString(R.string.default_kiosk_page_sumatry); | ||||
|                         tabName = getString(R.string.default_kiosk_page_summary); | ||||
|                         break; | ||||
|                     case KIOSK: | ||||
|                         tabName = NewPipe.getNameOfService(((Tab.KioskTab) tab).getKioskServiceId()) + "/" + tab.getTabName(requireContext()); | ||||
|                         break; | ||||
|                     case CHANNEL: | ||||
|                         tabName = NewPipe.getNameOfService(((Tab.ChannelTab) tab).getChannelServiceId()) + "/" + tab.getTabName(requireContext()); | ||||
|                         break; | ||||
|                     default: | ||||
|                         tabName = tab.getTabName(requireContext()); | ||||
|                         break; | ||||
|                 } | ||||
|  | ||||
|  | ||||
|                 tabNameView.setText(tabName); | ||||
|                 tabIconView.setImageResource(tab.getTabIconRes(requireContext())); | ||||
|             } | ||||
|   | ||||
| @@ -1,6 +1,7 @@ | ||||
| package org.schabi.newpipe.settings.tabs; | ||||
|  | ||||
| import android.content.Context; | ||||
|  | ||||
| import androidx.annotation.DrawableRes; | ||||
| import androidx.annotation.NonNull; | ||||
| import androidx.annotation.Nullable; | ||||
| @@ -9,22 +10,26 @@ import androidx.fragment.app.Fragment; | ||||
| import com.grack.nanojson.JsonObject; | ||||
| import com.grack.nanojson.JsonSink; | ||||
|  | ||||
| import org.jsoup.helper.StringUtil; | ||||
| import org.schabi.newpipe.App; | ||||
| import org.schabi.newpipe.R; | ||||
| import org.schabi.newpipe.extractor.NewPipe; | ||||
| import org.schabi.newpipe.extractor.StreamingService; | ||||
| import org.schabi.newpipe.extractor.exceptions.ExtractionException; | ||||
| import org.schabi.newpipe.fragments.BlankFragment; | ||||
| import org.schabi.newpipe.fragments.list.channel.ChannelFragment; | ||||
| import org.schabi.newpipe.fragments.list.kiosk.DefaultKioskFragment; | ||||
| import org.schabi.newpipe.fragments.list.kiosk.KioskFragment; | ||||
| import org.schabi.newpipe.local.bookmark.BookmarkFragment; | ||||
| import org.schabi.newpipe.local.feed.FeedFragment; | ||||
| import org.schabi.newpipe.local.history.StatisticsPlaylistFragment; | ||||
| import org.schabi.newpipe.local.subscription.SubscriptionFragment; | ||||
| import org.schabi.newpipe.report.ErrorActivity; | ||||
| import org.schabi.newpipe.report.UserAction; | ||||
| import org.schabi.newpipe.util.KioskTranslator; | ||||
| import org.schabi.newpipe.util.ServiceHelper; | ||||
| import org.schabi.newpipe.util.ThemeHelper; | ||||
|  | ||||
| import java.util.Objects; | ||||
|  | ||||
| public abstract class Tab { | ||||
|     Tab() { | ||||
|     } | ||||
| @@ -40,10 +45,12 @@ public abstract class Tab { | ||||
|     /** | ||||
|      * Return a instance of the fragment that this tab represent. | ||||
|      */ | ||||
|     public abstract Fragment getFragment() throws ExtractionException; | ||||
|     public abstract Fragment getFragment(Context context) throws ExtractionException; | ||||
|  | ||||
|     @Override | ||||
|     public boolean equals(Object obj) { | ||||
|         if (obj == this) return true; | ||||
|  | ||||
|         return obj instanceof Tab && obj.getClass().equals(this.getClass()) | ||||
|                 && ((Tab) obj).getTabId() == this.getTabId(); | ||||
|     } | ||||
| @@ -115,12 +122,6 @@ public abstract class Tab { | ||||
|                     return new KioskTab(jsonObject); | ||||
|                 case CHANNEL: | ||||
|                     return new ChannelTab(jsonObject); | ||||
|                 case DEFAULT_KIOSK: | ||||
|                     DefaultKioskTab tab = new DefaultKioskTab(); | ||||
|                     if(!StringUtil.isBlank(tab.getKioskId())){ | ||||
|                         return tab; | ||||
|                     } | ||||
|                     return null; | ||||
|             } | ||||
|         } | ||||
|  | ||||
| @@ -133,13 +134,13 @@ public abstract class Tab { | ||||
|  | ||||
|     public enum Type { | ||||
|         BLANK(new BlankTab()), | ||||
|         DEFAULT_KIOSK(new DefaultKioskTab()), | ||||
|         SUBSCRIPTIONS(new SubscriptionsTab()), | ||||
|         FEED(new FeedTab()), | ||||
|         BOOKMARKS(new BookmarksTab()), | ||||
|         HISTORY(new HistoryTab()), | ||||
|         KIOSK(new KioskTab()), | ||||
|         CHANNEL(new ChannelTab()), | ||||
|         DEFAULT_KIOSK(new DefaultKioskTab()); | ||||
|         CHANNEL(new ChannelTab()); | ||||
|  | ||||
|         private Tab tab; | ||||
|  | ||||
| @@ -176,7 +177,7 @@ public abstract class Tab { | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public BlankFragment getFragment() { | ||||
|         public BlankFragment getFragment(Context context) { | ||||
|             return new BlankFragment(); | ||||
|         } | ||||
|     } | ||||
| @@ -201,7 +202,7 @@ public abstract class Tab { | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public SubscriptionFragment getFragment() { | ||||
|         public SubscriptionFragment getFragment(Context context) { | ||||
|             return new SubscriptionFragment(); | ||||
|         } | ||||
|  | ||||
| @@ -227,7 +228,7 @@ public abstract class Tab { | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public FeedFragment getFragment() { | ||||
|         public FeedFragment getFragment(Context context) { | ||||
|             return new FeedFragment(); | ||||
|         } | ||||
|     } | ||||
| @@ -252,7 +253,7 @@ public abstract class Tab { | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public BookmarkFragment getFragment() { | ||||
|         public BookmarkFragment getFragment(Context context) { | ||||
|             return new BookmarkFragment(); | ||||
|         } | ||||
|     } | ||||
| @@ -277,7 +278,7 @@ public abstract class Tab { | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public StatisticsPlaylistFragment getFragment() { | ||||
|         public StatisticsPlaylistFragment getFragment(Context context) { | ||||
|             return new StatisticsPlaylistFragment(); | ||||
|         } | ||||
|     } | ||||
| @@ -327,7 +328,7 @@ public abstract class Tab { | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public KioskFragment getFragment() throws ExtractionException { | ||||
|         public KioskFragment getFragment(Context context) throws ExtractionException { | ||||
|             return KioskFragment.getInstance(kioskServiceId, kioskId); | ||||
|         } | ||||
|  | ||||
| @@ -343,6 +344,13 @@ public abstract class Tab { | ||||
|             kioskId = jsonObject.getString(JSON_KIOSK_ID_KEY, "<no-id>"); | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public boolean equals(Object obj) { | ||||
|             return super.equals(obj) && | ||||
|                     kioskServiceId == ((KioskTab) obj).kioskServiceId | ||||
|                     && Objects.equals(kioskId, ((KioskTab) obj).kioskId); | ||||
|         } | ||||
|  | ||||
|         public int getKioskServiceId() { | ||||
|             return kioskServiceId; | ||||
|         } | ||||
| @@ -394,7 +402,7 @@ public abstract class Tab { | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public ChannelFragment getFragment() { | ||||
|         public ChannelFragment getFragment(Context context) { | ||||
|             return ChannelFragment.getInstance(channelServiceId, channelUrl, channelName); | ||||
|         } | ||||
|  | ||||
| @@ -412,6 +420,14 @@ public abstract class Tab { | ||||
|             channelName = jsonObject.getString(JSON_CHANNEL_NAME_KEY, "<no-name>"); | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public boolean equals(Object obj) { | ||||
|             return super.equals(obj) && | ||||
|                     channelServiceId == ((ChannelTab) obj).channelServiceId | ||||
|                     && Objects.equals(channelUrl, ((ChannelTab) obj).channelUrl) | ||||
|                     && Objects.equals(channelName, ((ChannelTab) obj).channelName); | ||||
|         } | ||||
|  | ||||
|         public int getChannelServiceId() { | ||||
|             return channelServiceId; | ||||
|         } | ||||
| @@ -428,22 +444,6 @@ public abstract class Tab { | ||||
|     public static class DefaultKioskTab extends Tab { | ||||
|         public static final int ID = 7; | ||||
|  | ||||
|         private int kioskServiceId; | ||||
|         private String kioskId; | ||||
|  | ||||
|         protected DefaultKioskTab() { | ||||
|             initKiosk(); | ||||
|         } | ||||
|  | ||||
|         public void initKiosk() { | ||||
|             this.kioskServiceId = ServiceHelper.getSelectedServiceId(App.getApp()); | ||||
|             try { | ||||
|                 this.kioskId = NewPipe.getService(this.kioskServiceId).getKioskList().getDefaultKioskId(); | ||||
|             } catch (ExtractionException e) { | ||||
|                 this.kioskId = ""; | ||||
|             } | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public int getTabId() { | ||||
|             return ID; | ||||
| @@ -451,27 +451,31 @@ public abstract class Tab { | ||||
|  | ||||
|         @Override | ||||
|         public String getTabName(Context context) { | ||||
|             return KioskTranslator.getTranslatedKioskName(kioskId, context); | ||||
|             return KioskTranslator.getTranslatedKioskName(getDefaultKioskId(context), context); | ||||
|         } | ||||
|  | ||||
|         @DrawableRes | ||||
|         @Override | ||||
|         public int getTabIconRes(Context context) { | ||||
|             final int kioskIcon = KioskTranslator.getKioskIcons(kioskId, context); | ||||
|  | ||||
|             if (kioskIcon <= 0) { | ||||
|                 throw new IllegalStateException("Kiosk ID is not valid: \"" + kioskId + "\""); | ||||
|             } | ||||
|  | ||||
|             return kioskIcon; | ||||
|             return KioskTranslator.getKioskIcons(getDefaultKioskId(context), context); | ||||
|         } | ||||
|  | ||||
|         @Override | ||||
|         public KioskFragment getFragment() throws ExtractionException { | ||||
|             return KioskFragment.getInstance(kioskServiceId, kioskId); | ||||
|         public DefaultKioskFragment getFragment(Context context) throws ExtractionException { | ||||
|             return new DefaultKioskFragment(); | ||||
|         } | ||||
|  | ||||
|         public String getKioskId() { | ||||
|         private String getDefaultKioskId(Context context) { | ||||
|             final int kioskServiceId = ServiceHelper.getSelectedServiceId(context); | ||||
|  | ||||
|             String kioskId = ""; | ||||
|             try { | ||||
|                 final StreamingService service = NewPipe.getService(kioskServiceId); | ||||
|                 kioskId = service.getKioskList().getDefaultKioskId(); | ||||
|             } catch (ExtractionException e) { | ||||
|                 ErrorActivity.reportError(context, e, null, null, | ||||
|                         ErrorActivity.ErrorInfo.make(UserAction.REQUESTED_KIOSK, "none", "Loading default kiosk from selected service", 0)); | ||||
|             } | ||||
|             return kioskId; | ||||
|         } | ||||
|     } | ||||
|   | ||||
| @@ -1,7 +1,5 @@ | ||||
| package org.schabi.newpipe.settings.tabs; | ||||
|  | ||||
| import androidx.annotation.Nullable; | ||||
|  | ||||
| import com.grack.nanojson.JsonArray; | ||||
| import com.grack.nanojson.JsonObject; | ||||
| import com.grack.nanojson.JsonParser; | ||||
| @@ -9,18 +7,25 @@ import com.grack.nanojson.JsonParserException; | ||||
| import com.grack.nanojson.JsonStringWriter; | ||||
| import com.grack.nanojson.JsonWriter; | ||||
|  | ||||
| import org.jsoup.helper.StringUtil; | ||||
|  | ||||
| import java.util.ArrayList; | ||||
| import java.util.Arrays; | ||||
| import java.util.Collections; | ||||
| import java.util.List; | ||||
|  | ||||
| import androidx.annotation.Nullable; | ||||
|  | ||||
| /** | ||||
|  * Class to get a JSON representation of a list of tabs, and the other way around. | ||||
|  */ | ||||
| public class TabsJsonHelper { | ||||
|     private static final String JSON_TABS_ARRAY_KEY = "tabs"; | ||||
|  | ||||
|     private static final List<Tab> FALLBACK_INITIAL_TABS_LIST = Collections.unmodifiableList(Arrays.asList( | ||||
|             Tab.Type.DEFAULT_KIOSK.getTab(), | ||||
|             Tab.Type.SUBSCRIPTIONS.getTab(), | ||||
|             Tab.Type.BOOKMARKS.getTab() | ||||
|     )); | ||||
|  | ||||
|     public static class InvalidJsonException extends Exception { | ||||
|         private InvalidJsonException() { | ||||
|             super(); | ||||
| @@ -83,16 +88,6 @@ public class TabsJsonHelper { | ||||
|         return returnTabs; | ||||
|     } | ||||
|  | ||||
|     public static List<Tab> getDefaultTabs(){ | ||||
|         List<Tab> tabs = new ArrayList<>(); | ||||
|         Tab.DefaultKioskTab tab = new Tab.DefaultKioskTab(); | ||||
|         if(!StringUtil.isBlank(tab.getKioskId())){ | ||||
|             tabs.add(tab); | ||||
|         } | ||||
|         tabs.add(Tab.Type.SUBSCRIPTIONS.getTab()); | ||||
|         tabs.add(Tab.Type.BOOKMARKS.getTab()); | ||||
|         return Collections.unmodifiableList(tabs); | ||||
|     } | ||||
|     /** | ||||
|      * Get a JSON representation from a list of tabs. | ||||
|      * | ||||
| @@ -112,4 +107,8 @@ public class TabsJsonHelper { | ||||
|         jsonWriter.end(); | ||||
|         return jsonWriter.done(); | ||||
|     } | ||||
|  | ||||
|     public static List<Tab> getDefaultTabs(){ | ||||
|         return FALLBACK_INITIAL_TABS_LIST; | ||||
|     } | ||||
| } | ||||
| @@ -379,7 +379,7 @@ | ||||
|     <string name="selection">Selection</string> | ||||
|     <string name="blank_page_summary">Blank Page</string> | ||||
|     <string name="kiosk_page_summary">Kiosk Page</string> | ||||
|     <string name="default_kiosk_page_sumatry">Default Kiosk</string> | ||||
|     <string name="default_kiosk_page_summary">Default Kiosk</string> | ||||
|     <string name="subscription_page_summary">Subscription Page</string> | ||||
|     <string name="feed_page_summary">Feed Page</string> | ||||
|     <string name="channel_page_summary">Channel Page</string> | ||||
|   | ||||
| @@ -1,6 +1,5 @@ | ||||
| package org.schabi.newpipe.settings.tabs; | ||||
|  | ||||
| import org.junit.Ignore; | ||||
| import org.junit.Test; | ||||
|  | ||||
| import java.util.HashSet; | ||||
| @@ -9,7 +8,6 @@ import java.util.Set; | ||||
| import static org.junit.Assert.assertTrue; | ||||
|  | ||||
| public class TabTest { | ||||
|     @Ignore | ||||
|     @Test | ||||
|     public void checkIdDuplication() { | ||||
|         final Set<Integer> usedIds = new HashSet<>(); | ||||
|   | ||||
| @@ -5,7 +5,6 @@ import com.grack.nanojson.JsonObject; | ||||
| import com.grack.nanojson.JsonParser; | ||||
| import com.grack.nanojson.JsonParserException; | ||||
|  | ||||
| import org.junit.Ignore; | ||||
| import org.junit.Test; | ||||
|  | ||||
| import java.util.Arrays; | ||||
| @@ -21,19 +20,19 @@ public class TabsJsonHelperTest { | ||||
|     private static final String JSON_TABS_ARRAY_KEY = "tabs"; | ||||
|     private static final String JSON_TAB_ID_KEY = "tab_id"; | ||||
|  | ||||
|     @Ignore | ||||
|     @Test | ||||
|     public void testEmptyAndNullRead() throws TabsJsonHelper.InvalidJsonException { | ||||
|         final List<Tab> defaultTabs = TabsJsonHelper.getDefaultTabs(); | ||||
|  | ||||
|         final String emptyTabsJson = "{\"" + JSON_TABS_ARRAY_KEY + "\":[]}"; | ||||
|         List<Tab> items = TabsJsonHelper.getTabsFromJson(emptyTabsJson); | ||||
|         assertTrue(!items.isEmpty()); | ||||
|         assertEquals(items, defaultTabs); | ||||
|  | ||||
|         final String nullSource = null; | ||||
|         items = TabsJsonHelper.getTabsFromJson(nullSource); | ||||
|         assertTrue(!items.isEmpty()); | ||||
|         assertEquals(items, defaultTabs); | ||||
|     } | ||||
|  | ||||
|     @Ignore | ||||
|     @Test | ||||
|     public void testInvalidIdRead() throws TabsJsonHelper.InvalidJsonException { | ||||
|         final int blankTabId = Tab.Type.BLANK.getTabId(); | ||||
| @@ -84,17 +83,17 @@ public class TabsJsonHelperTest { | ||||
|         return jsonObject.getArray(JSON_TABS_ARRAY_KEY).size() == 0; | ||||
|     } | ||||
|  | ||||
|     @Ignore | ||||
|     @Test | ||||
|     public void testSaveAndReading() throws JsonParserException { | ||||
|         // Saving | ||||
|         final Tab.BlankTab blankTab = new Tab.BlankTab(); | ||||
|         final Tab.DefaultKioskTab defaultKioskTab = new Tab.DefaultKioskTab(); | ||||
|         final Tab.SubscriptionsTab subscriptionsTab = new Tab.SubscriptionsTab(); | ||||
|         final Tab.ChannelTab channelTab = new Tab.ChannelTab(666, "https://example.org", "testName"); | ||||
|         final Tab.KioskTab kioskTab = new Tab.KioskTab(123, "trending_key"); | ||||
|  | ||||
|         final List<Tab> tabs = Arrays.asList(blankTab, subscriptionsTab, channelTab, kioskTab); | ||||
|         String returnedJson = TabsJsonHelper.getJsonToSave(tabs); | ||||
|         final List<Tab> tabs = Arrays.asList(blankTab, defaultKioskTab, subscriptionsTab, channelTab, kioskTab); | ||||
|         final String returnedJson = TabsJsonHelper.getJsonToSave(tabs); | ||||
|  | ||||
|         // Reading | ||||
|         final JsonObject jsonObject = JsonParser.object().from(returnedJson); | ||||
| @@ -106,16 +105,19 @@ public class TabsJsonHelperTest { | ||||
|         final Tab.BlankTab blankTabFromReturnedJson = requireNonNull((Tab.BlankTab) Tab.from(((JsonObject) tabsFromArray.get(0)))); | ||||
|         assertEquals(blankTab.getTabId(), blankTabFromReturnedJson.getTabId()); | ||||
|  | ||||
|         final Tab.SubscriptionsTab subscriptionsTabFromReturnedJson = requireNonNull((Tab.SubscriptionsTab) Tab.from(((JsonObject) tabsFromArray.get(1)))); | ||||
|         final Tab.DefaultKioskTab defaultKioskTabFromReturnedJson = requireNonNull((Tab.DefaultKioskTab) Tab.from(((JsonObject) tabsFromArray.get(1)))); | ||||
|         assertEquals(defaultKioskTab.getTabId(), defaultKioskTabFromReturnedJson.getTabId()); | ||||
|  | ||||
|         final Tab.SubscriptionsTab subscriptionsTabFromReturnedJson = requireNonNull((Tab.SubscriptionsTab) Tab.from(((JsonObject) tabsFromArray.get(2)))); | ||||
|         assertEquals(subscriptionsTab.getTabId(), subscriptionsTabFromReturnedJson.getTabId()); | ||||
|  | ||||
|         final Tab.ChannelTab channelTabFromReturnedJson = requireNonNull((Tab.ChannelTab) Tab.from(((JsonObject) tabsFromArray.get(2)))); | ||||
|         final Tab.ChannelTab channelTabFromReturnedJson = requireNonNull((Tab.ChannelTab) Tab.from(((JsonObject) tabsFromArray.get(3)))); | ||||
|         assertEquals(channelTab.getTabId(), channelTabFromReturnedJson.getTabId()); | ||||
|         assertEquals(channelTab.getChannelServiceId(), channelTabFromReturnedJson.getChannelServiceId()); | ||||
|         assertEquals(channelTab.getChannelUrl(), channelTabFromReturnedJson.getChannelUrl()); | ||||
|         assertEquals(channelTab.getChannelName(), channelTabFromReturnedJson.getChannelName()); | ||||
|  | ||||
|         final Tab.KioskTab kioskTabFromReturnedJson = requireNonNull((Tab.KioskTab) Tab.from(((JsonObject) tabsFromArray.get(3)))); | ||||
|         final Tab.KioskTab kioskTabFromReturnedJson = requireNonNull((Tab.KioskTab) Tab.from(((JsonObject) tabsFromArray.get(4)))); | ||||
|         assertEquals(kioskTab.getTabId(), kioskTabFromReturnedJson.getTabId()); | ||||
|         assertEquals(kioskTab.getKioskServiceId(), kioskTabFromReturnedJson.getKioskServiceId()); | ||||
|         assertEquals(kioskTab.getKioskId(), kioskTabFromReturnedJson.getKioskId()); | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Tobias Groza
					Tobias Groza