1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
|
// Copyright 2022 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/feed/web_feed_util.h"
#include "base/functional/bind.h"
#include "base/memory/weak_ptr.h"
#include "chrome/browser/feed/feed_service_factory.h"
#include "chrome/browser/feed/web_feed_page_information_fetcher.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/profiles/profile_manager.h"
#include "components/feed/core/v2/public/feed_service.h"
#include "content/public/browser/navigation_entry.h"
#include "content/public/browser/web_contents.h"
namespace feed {
namespace {
WebFeedPageInformationFetcher::PageInformation ConstructPageInformation(
content::WebContents* web_contents) {
WebFeedPageInformationFetcher::PageInformation page_info;
page_info.url = web_contents->GetLastCommittedURL();
page_info.web_contents = web_contents;
return page_info;
}
} // namespace
WebFeedSubscriptions* GetSubscriptionsForProfile(Profile* profile) {
FeedService* service = FeedServiceFactory::GetForBrowserContext(profile);
if (!service)
return nullptr;
return &service->GetStream()->subscriptions();
}
void FindWebFeedInfoForPage(
content::WebContents* web_contents,
WebFeedPageInformationRequestReason reason,
base::OnceCallback<void(WebFeedMetadata)> callback) {
auto on_page_info_fetched =
[](base::WeakPtr<content::WebContents> web_contents,
base::OnceCallback<void(WebFeedMetadata)> callback,
WebFeedPageInformation page_info) {
if (!web_contents)
return;
Profile* profile =
Profile::FromBrowserContext(web_contents->GetBrowserContext());
if (!profile) {
std::move(callback).Run({});
return;
}
WebFeedSubscriptions* subscriptions =
GetSubscriptionsForProfile(profile);
if (!subscriptions) {
std::move(callback).Run({});
return;
}
subscriptions->FindWebFeedInfoForPage(page_info, std::move(callback));
};
WebFeedPageInformationFetcher::Start(
ConstructPageInformation(web_contents), reason,
base::BindOnce(on_page_info_fetched, web_contents->GetWeakPtr(),
std::move(callback)));
}
void FollowWebFeed(
content::WebContents* web_contents,
feedwire::webfeed::WebFeedChangeReason change_reason,
base::OnceCallback<void(WebFeedSubscriptions::FollowWebFeedResult)>
callback) {
auto on_page_info_fetched =
[](feedwire::webfeed::WebFeedChangeReason change_reason,
base::WeakPtr<content::WebContents> web_contents,
base::OnceCallback<void(WebFeedSubscriptions::FollowWebFeedResult)>
callback,
WebFeedPageInformation page_info) {
if (page_info.url().is_empty() || !web_contents)
return;
Profile* profile =
Profile::FromBrowserContext(web_contents->GetBrowserContext());
if (!profile) {
std::move(callback).Run({});
return;
}
WebFeedSubscriptions* subscriptions =
GetSubscriptionsForProfile(profile);
if (!subscriptions) {
std::move(callback).Run({});
return;
}
subscriptions->FollowWebFeed(page_info, change_reason,
std::move(callback));
};
WebFeedPageInformationFetcher::Start(
ConstructPageInformation(web_contents),
WebFeedPageInformationRequestReason::kUserRequestedFollow,
base::BindOnce(on_page_info_fetched, change_reason,
web_contents->GetWeakPtr(), std::move(callback)));
}
void UnfollowWebFeed(
const std::string& web_feed_id,
bool is_durable_request,
feedwire::webfeed::WebFeedChangeReason change_reason,
base::OnceCallback<void(WebFeedSubscriptions::UnfollowWebFeedResult)>
callback) {
Profile* profile = ProfileManager::GetLastUsedProfile();
WebFeedSubscriptions* subscriptions = GetSubscriptionsForProfile(profile);
if (!subscriptions) {
std::move(callback).Run({});
return;
}
subscriptions->UnfollowWebFeed(web_feed_id, is_durable_request, change_reason,
std::move(callback));
}
} // namespace feed
|