File: promo_cards_handler.cc

package info (click to toggle)
chromium 138.0.7204.183-1~deb12u1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm-proposed-updates
  • size: 6,080,960 kB
  • sloc: cpp: 34,937,079; ansic: 7,176,967; javascript: 4,110,704; python: 1,419,954; asm: 946,768; xml: 739,971; pascal: 187,324; sh: 89,623; perl: 88,663; objc: 79,944; sql: 50,304; cs: 41,786; fortran: 24,137; makefile: 21,811; php: 13,980; tcl: 13,166; yacc: 8,925; ruby: 7,485; awk: 3,720; lisp: 3,096; lex: 1,327; ada: 727; jsp: 228; sed: 36
file content (169 lines) | stat: -rw-r--r-- 6,301 bytes parent folder | download | duplicates (3)
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// Copyright 2023 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/ui/webui/password_manager/promo_cards_handler.h"

#include <algorithm>
#include <memory>

#include "base/values.h"
#include "build/branding_buildflags.h"
#include "chrome/browser/extensions/api/passwords_private/passwords_private_delegate.h"
#include "chrome/browser/extensions/api/passwords_private/passwords_private_delegate_factory.h"
#include "chrome/browser/lifetime/application_lifetime.h"
#include "chrome/browser/profiles/profile.h"
#include "chrome/browser/sync/sync_service_factory.h"
#include "chrome/browser/ui/webui/password_manager/promo_card.h"
#include "chrome/grit/generated_resources.h"
#include "components/password_manager/core/common/password_manager_pref_names.h"
#include "components/prefs/scoped_user_pref_update.h"
#include "ui/base/l10n/l10n_util.h"

#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
#include "chrome/browser/ui/webui/password_manager/promo_cards/access_on_any_device_promo.h"
#include "chrome/browser/ui/webui/password_manager/promo_cards/move_passwords_promo.h"
#include "chrome/browser/ui/webui/password_manager/promo_cards/password_checkup_promo.h"
#include "chrome/browser/ui/webui/password_manager/promo_cards/password_manager_shortcut_promo.h"
#include "chrome/browser/ui/webui/password_manager/promo_cards/web_password_manager_promo.h"
#endif

#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
#include "chrome/browser/ui/webui/password_manager/promo_cards/relaunch_chrome_promo.h"
#endif

namespace password_manager {

namespace {

// Returns the base::Value associated with the promo card.
base::Value::Dict PromoCardToValueDict(
    const PasswordPromoCardBase* promo_card) {
  base::Value::Dict dict;
  dict.Set("id", promo_card->GetPromoID());
  dict.Set("title", promo_card->GetTitle());
  dict.Set("description", promo_card->GetDescription());
  if (!promo_card->GetActionButtonText().empty()) {
    dict.Set("actionButtonText", promo_card->GetActionButtonText());
  }
  return dict;
}

std::vector<std::unique_ptr<PasswordPromoCardBase>> GetAllPromoCardsForProfile(
    Profile* profile) {
  std::vector<std::unique_ptr<PasswordPromoCardBase>> promo_cards;
#if BUILDFLAG(GOOGLE_CHROME_BRANDING)
  promo_cards.push_back(std::make_unique<PasswordCheckupPromo>(
      profile->GetPrefs(),
      extensions::PasswordsPrivateDelegateFactory::GetForBrowserContext(profile,
                                                                        false)
          .get()));
  promo_cards.push_back(std::make_unique<WebPasswordManagerPromo>(
      profile->GetPrefs(), SyncServiceFactory::GetForProfile(profile)));
  promo_cards.push_back(
      std::make_unique<PasswordManagerShortcutPromo>(profile));
  promo_cards.push_back(
      std::make_unique<AccessOnAnyDevicePromo>(profile->GetPrefs()));
  promo_cards.push_back(std::make_unique<MovePasswordsPromo>(
      profile,
      extensions::PasswordsPrivateDelegateFactory::GetForBrowserContext(profile,
                                                                        false)
          .get()));
#endif

#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_LINUX)
  promo_cards.push_back(
      std::make_unique<RelaunchChromePromo>(profile->GetPrefs()));
#endif

  return promo_cards;
}

}  // namespace

PromoCardsHandler::PromoCardsHandler(Profile* profile) : profile_(profile) {
  promo_cards_ = GetAllPromoCardsForProfile(profile_);
}

PromoCardsHandler::PromoCardsHandler(
    base::PassKey<class PromoCardsHandlerTest>,
    Profile* profile,
    std::vector<std::unique_ptr<PasswordPromoCardBase>> promo_cards)
    : profile_(profile), promo_cards_(std::move(promo_cards)) {}

PromoCardsHandler::~PromoCardsHandler() = default;

void PromoCardsHandler::RegisterMessages() {
  web_ui()->RegisterMessageCallback(
      "getAvailablePromoCard",
      base::BindRepeating(&PromoCardsHandler::HandleGetAvailablePromoCard,
                          base::Unretained(this)));
  web_ui()->RegisterMessageCallback(
      "recordPromoDismissed",
      base::BindRepeating(&PromoCardsHandler::HandleRecordPromoDismissed,
                          base::Unretained(this)));
  web_ui()->RegisterMessageCallback(
      "restartBrowser", base::BindRepeating(&PromoCardsHandler::RestartChrome,
                                            base::Unretained(this)));
}

void PromoCardsHandler::RestartChrome(const base::Value::List& args) {
  chrome::AttemptRestart();
}

void PromoCardsHandler::HandleGetAvailablePromoCard(
    const base::Value::List& args) {
  AllowJavascript();
  CHECK_EQ(1U, args.size());
  const base::Value& callback_id = args[0];

  PasswordPromoCardBase* promo_card_to_show = GetPromoToShowAndUpdatePref();
  if (promo_card_to_show) {
    ResolveJavascriptCallback(callback_id,
                              PromoCardToValueDict(promo_card_to_show));
  } else {
    ResolveJavascriptCallback(callback_id, base::Value());
  }
}

void PromoCardsHandler::HandleRecordPromoDismissed(
    const base::Value::List& args) {
  AllowJavascript();
  CHECK_EQ(1U, args.size());
  std::string promo_id = args[0].GetString();

  for (auto& promo_card : promo_cards_) {
    if (promo_card->GetPromoID() == promo_id) {
      promo_card->OnPromoCardDismissed();
      return;
    }
  }
}

PasswordPromoCardBase* PromoCardsHandler::GetPromoToShowAndUpdatePref() {
  std::vector<PasswordPromoCardBase*> promo_card_to_show_candidates;
  for (const auto& promo_card : promo_cards_) {
    if (promo_card->ShouldShowPromo()) {
      // If there's a reason to show relaunch Chrome bubble, it should take the
      // highest priority.
      if (promo_card->GetPromoCardType() == PromoCardType::kRelauchChrome) {
        promo_card->OnPromoCardShown();
        return promo_card.get();
      }
      promo_card_to_show_candidates.push_back(promo_card.get());
    }
  }
  if (promo_card_to_show_candidates.empty()) {
    return nullptr;
  }
  // Sort based on last time shown.
  auto* promo_to_show = *std::ranges::min_element(
      promo_card_to_show_candidates, [](auto* lhs, auto* rhs) {
        return lhs->last_time_shown() < rhs->last_time_shown();
      });

  promo_to_show->OnPromoCardShown();
  return promo_to_show;
}

}  // namespace password_manager