| // Copyright 2013 The Chromium Authors |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "chrome/browser/dom_distiller/dom_distiller_service_factory.h" |
| |
| #include <utility> |
| |
| #include "base/callback_list.h" |
| #include "base/task/sequenced_task_runner.h" |
| #include "base/task/thread_pool.h" |
| #include "build/build_config.h" |
| #include "chrome/browser/profiles/incognito_helpers.h" |
| #include "chrome/browser/profiles/profile.h" |
| #include "chrome/browser/ui/zoom/chrome_zoom_level_prefs.h" |
| #include "components/dom_distiller/content/browser/distiller_page_web_contents.h" |
| #include "components/dom_distiller/core/article_entry.h" |
| #include "components/dom_distiller/core/distiller.h" |
| #include "content/public/browser/browser_context.h" |
| #include "content/public/browser/storage_partition.h" |
| #include "services/network/public/cpp/shared_url_loader_factory.h" |
| |
| #if BUILDFLAG(IS_ANDROID) |
| #include "chrome/browser/android/dom_distiller/distiller_ui_handle_android.h" |
| #endif // BUILDFLAG(IS_ANDROID) |
| |
| namespace dom_distiller { |
| |
| DomDistillerContextKeyedService::DomDistillerContextKeyedService( |
| std::unique_ptr<DistillerFactory> distiller_factory, |
| std::unique_ptr<DistillerPageFactory> distiller_page_factory, |
| std::unique_ptr<DistilledPagePrefs> distilled_page_prefs, |
| std::unique_ptr<DistillerUIHandle> distiller_ui_handle, |
| base::CallbackListSubscription distilled_page_prefs_subscription) |
| : DomDistillerService(std::move(distiller_factory), |
| std::move(distiller_page_factory), |
| std::move(distilled_page_prefs), |
| std::move(distiller_ui_handle)), |
| distilled_page_prefs_subscription_( |
| std::move(distilled_page_prefs_subscription)) {} |
| |
| DomDistillerContextKeyedService::~DomDistillerContextKeyedService() = default; |
| |
| // static |
| DomDistillerServiceFactory* DomDistillerServiceFactory::GetInstance() { |
| static base::NoDestructor<DomDistillerServiceFactory> instance; |
| return instance.get(); |
| } |
| |
| // static |
| DomDistillerContextKeyedService* |
| DomDistillerServiceFactory::GetForBrowserContext( |
| content::BrowserContext* context) { |
| return static_cast<DomDistillerContextKeyedService*>( |
| GetInstance()->GetServiceForBrowserContext(context, true)); |
| } |
| |
| DomDistillerServiceFactory::DomDistillerServiceFactory() |
| : ProfileKeyedServiceFactory( |
| "DomDistillerService", |
| // Makes normal profile and off-the-record profile use same service |
| // instance. |
| ProfileSelections::Builder() |
| .WithRegular(ProfileSelection::kRedirectedToOriginal) |
| // TODO(crbug.com/40257657): Check if this service is needed in |
| // Guest mode. |
| .WithGuest(ProfileSelection::kRedirectedToOriginal) |
| // TODO(crbug.com/41488885): Check if this service is needed for |
| // Ash Internals. |
| .WithAshInternals(ProfileSelection::kRedirectedToOriginal) |
| .Build()) {} |
| |
| DomDistillerServiceFactory::~DomDistillerServiceFactory() = default; |
| |
| std::unique_ptr<KeyedService> |
| DomDistillerServiceFactory::BuildServiceInstanceForBrowserContext( |
| content::BrowserContext* context) const { |
| Profile* profile = Profile::FromBrowserContext(context); |
| scoped_refptr<base::SequencedTaskRunner> background_task_runner = |
| base::ThreadPool::CreateSequencedTaskRunner( |
| {base::MayBlock(), base::TaskPriority::BEST_EFFORT}); |
| |
| base::FilePath database_dir( |
| context->GetPath().Append(FILE_PATH_LITERAL("Articles"))); |
| |
| std::unique_ptr<DistillerPageFactory> distiller_page_factory( |
| new DistillerPageWebContentsFactory(context)); |
| std::unique_ptr<DistillerURLFetcherFactory> distiller_url_fetcher_factory( |
| new DistillerURLFetcherFactory( |
| context->GetDefaultStoragePartition() |
| ->GetURLLoaderFactoryForBrowserProcess())); |
| |
| dom_distiller::proto::DomDistillerOptions options; |
| if (VLOG_IS_ON(1)) { |
| options.set_debug_level(logging::GetVlogLevelHelper( |
| FROM_HERE.file_name(), ::strlen(FROM_HERE.file_name()))); |
| } |
| // Options for pagination algorithm: |
| // - "next": detect anchors with "next" text |
| // - "pagenum": detect anchors with numeric page numbers |
| // Default is "next". |
| options.set_pagination_algo("next"); |
| std::unique_ptr<DistillerFactory> distiller_factory(new DistillerFactoryImpl( |
| std::move(distiller_url_fetcher_factory), options)); |
| |
| std::unique_ptr<DistilledPagePrefs> distilled_page_prefs = |
| std::make_unique<DistilledPagePrefs>(profile->GetPrefs()); |
| distilled_page_prefs->SetDefaultFontScaling( |
| profile->GetZoomLevelPrefs()->GetDefaultZoomFactor()); |
| base::CallbackListSubscription distilled_page_prefs_subscription = |
| profile->GetZoomLevelPrefs()->RegisterDefaultZoomLevelCallback( |
| base::BindRepeating(&DomDistillerServiceFactory:: |
| UpdateDistilledPagePrefsDefaultFontScaling, |
| weak_ptr_factory_.GetWeakPtr(), |
| base::Unretained(context))); |
| std::unique_ptr<DistillerUIHandle> distiller_ui_handle; |
| |
| #if BUILDFLAG(IS_ANDROID) |
| distiller_ui_handle = |
| std::make_unique<dom_distiller::android::DistillerUIHandleAndroid>(); |
| #endif // BUILDFLAG(IS_ANDROID) |
| |
| return std::make_unique<DomDistillerContextKeyedService>( |
| std::move(distiller_factory), std::move(distiller_page_factory), |
| std::move(distilled_page_prefs), std::move(distiller_ui_handle), |
| std::move(distilled_page_prefs_subscription)); |
| } |
| |
| void DomDistillerServiceFactory::UpdateDistilledPagePrefsDefaultFontScaling( |
| content::BrowserContext* context) const { |
| DomDistillerContextKeyedService* service = |
| DomDistillerServiceFactory::GetForBrowserContext(context); |
| DCHECK(service); |
| DistilledPagePrefs* distilled_page_prefs = service->GetDistilledPagePrefs(); |
| |
| Profile* profile = Profile::FromBrowserContext(context); |
| distilled_page_prefs->SetDefaultFontScaling( |
| profile->GetZoomLevelPrefs()->GetDefaultZoomFactor()); |
| } |
| |
| } // namespace dom_distiller |