File: initial_external_extension_loader.cc

package info (click to toggle)
chromium 141.0.7390.107-1~deb13u1
  • links: PTS, VCS
  • area: main
  • in suites: trixie-proposed-updates
  • size: 6,246,428 kB
  • sloc: cpp: 35,264,965; ansic: 7,169,920; javascript: 4,250,185; python: 1,460,635; asm: 950,788; xml: 751,751; pascal: 187,972; sh: 89,459; perl: 88,691; objc: 79,953; sql: 53,924; cs: 44,622; fortran: 24,137; makefile: 22,313; tcl: 15,277; php: 14,018; yacc: 8,995; ruby: 7,553; awk: 3,720; lisp: 3,096; lex: 1,330; ada: 727; jsp: 228; sed: 36
file content (89 lines) | stat: -rw-r--r-- 3,028 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
// Copyright 2025 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/extensions/initial_external_extension_loader.h"

#include <string>

#include "base/strings/strcat.h"
#include "base/types/to_address.h"
#include "base/values.h"
#include "chrome/browser/extensions/external_provider_impl.h"
#include "components/crx_file/id_util.h"
#include "components/prefs/pref_service.h"
#include "content/public/browser/browser_thread.h"
#include "extensions/browser/pref_names.h"
#include "extensions/common/extension_urls.h"

namespace extensions {

namespace {

std::string MakePrefName(const std::string& extension_id,
                         const std::string& pref_name) {
  return base::StrCat({extension_id, ".", pref_name});
}

// Generates a dictionary of preferences for the given extension IDs.
// For each valid extension ID in `extensions_ids`, its creates
// preferences to set the update URL to the Chrome Web Store and to mark the
// extension as trusted (i.e., not untrusted).
base::Value::Dict GenerateExtensionPrefs(
    const base::Value::List& extensions_ids) {
  base::Value::Dict prefs;
  const std::string web_store_update_url =
      extension_urls::GetWebstoreUpdateUrl().spec();
  for (const auto& extension_id : extensions_ids) {
    const std::string* id = extension_id.GetIfString();
    if (!id || !crx_file::id_util::IdIsValid(*id)) {
      continue;
    }

    prefs.SetByDottedPath(
        MakePrefName(*id, ExternalProviderImpl::kExternalUpdateUrl),
        web_store_update_url);
    prefs.SetByDottedPath(
        MakePrefName(*id, ExternalProviderImpl::kMayBeUntrusted), false);
  }
  return prefs;
}

}  // namespace

InitialExternalExtensionLoader::InitialExternalExtensionLoader(
    PrefService& prefs)
    : prefs_(prefs) {
  DCHECK_CURRENTLY_ON(content::BrowserThread::UI);

  pref_registrar_.Init(base::to_address(prefs_));

  // base::Unretained() is safe because `pref_registrar_` is owned by `this`.
  //
  // `pref_names::kInitialInstallList` may not be populated at this time.
  // Therefore, future changes should be monitored so that the extension ids
  // will be taken into consideration.
  pref_registrar_.Add(
      pref_names::kInitialInstallList,
      base::BindRepeating(
          &InitialExternalExtensionLoader::OnExtensionsPrefChanged,
          base::Unretained(this)));
}

InitialExternalExtensionLoader::~InitialExternalExtensionLoader() = default;

void InitialExternalExtensionLoader::StartLoading() {
  DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
  const base::Value::List& ids =
      prefs_->GetList(pref_names::kInitialInstallList);
  LoadFinished(GenerateExtensionPrefs(ids));
}

void InitialExternalExtensionLoader::OnExtensionsPrefChanged() {
  DCHECK_CURRENTLY_ON(content::BrowserThread::UI);
  const base::Value::List& ids =
      prefs_->GetList(pref_names::kInitialInstallList);
  OnUpdated(GenerateExtensionPrefs(ids));
}

}  // namespace extensions