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 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327
|
// Copyright 2012 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef EXTENSIONS_BROWSER_EXTENSION_ACTION_H_
#define EXTENSIONS_BROWSER_EXTENSION_ACTION_H_
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "base/containers/contains.h"
#include "base/containers/map_util.h"
#include "extensions/common/api/extension_action/action_info.h"
#include "extensions/common/constants.h"
#include "extensions/common/extension_id.h"
#include "third_party/skia/include/core/SkColor.h"
#include "ui/gfx/image/image.h"
class GURL;
namespace gfx {
class Image;
} // namespace gfx
namespace extensions {
class Extension;
class IconImage;
// ExtensionAction encapsulates the state of a browser action or page action.
// Instances can have both global and per-tab state. If a property does not have
// a per-tab value, the global value is used instead.
class ExtensionAction {
public:
// TODO(crbug.com/414760992) Consider TabHandle instead of TabData::TabID.
using TabID = int;
// The action that the UI should take after the ExtensionAction is clicked.
// GENERATED_JAVA_ENUM_PACKAGE: org.chromium.extensions
enum class ShowAction {
kNone,
kShowPopup,
kToggleSidePanel,
// We don't need a SHOW_CONTEXT_MENU because that's handled separately in
// the UI.
};
static extension_misc::ExtensionIcons ActionIconSize();
// Returns the default icon to use when no other is available (the puzzle
// piece).
static gfx::Image FallbackIcon();
// Use this ID to indicate the default state for properties that take a tab_id
// parameter.
static const int kDefaultTabId;
ExtensionAction(const Extension& extension, const ActionInfo& manifest_data);
ExtensionAction(const ExtensionAction&) = delete;
ExtensionAction& operator=(const ExtensionAction&) = delete;
~ExtensionAction();
// extension id
const ExtensionId& extension_id() const { return extension_id_; }
// What kind of action is this?
ActionInfo::Type action_type() const { return action_type_; }
ActionInfo::DefaultState default_state() const { return default_state_; }
// Set the url which the popup will load when the user clicks this action's
// icon. Setting an empty URL will disable the popup for a given tab.
void SetPopupUrl(TabID tab_id, const GURL& url);
// Use HasPopup() to see if a popup should be displayed.
bool HasPopup(TabID tab_id) const;
// Get the URL to display in a popup.
GURL GetPopupUrl(TabID tab_id) const;
// Set this action's title on a specific tab.
void SetTitle(TabID tab_id, const std::string& title) {
SetValue(&title_, tab_id, title);
}
// If tab `tab_id` has a set title, return it. Otherwise, return
// the default title.
std::string GetTitle(TabID tab_id) const { return GetValue(title_, tab_id); }
// Icons are a bit different because the default value can be set to either a
// bitmap or a path. However, conceptually, there is only one default icon.
// Setting the default icon using a path clears the bitmap and vice-versa.
// To retrieve the icon for the extension action, use
// ExtensionActionIconFactory.
// Set this action's icon bitmap on a specific tab.
void SetIcon(TabID tab_id, const gfx::Image& image);
// Gets the icon that has been set using `SetIcon` for the tab.
gfx::Image GetExplicitlySetIcon(int tab_id) const;
// Sets the icon for a tab, in a way that can't be read by the extension's
// javascript. Multiple icons can be set at the same time; some icon with the
// highest priority will be used.
void DeclarativeSetIcon(TabID tab_id, int priority, const gfx::Image& icon);
void UndoDeclarativeSetIcon(TabID tab_id,
int priority,
const gfx::Image& icon);
const ExtensionIconSet* default_icon() const { return default_icon_.get(); }
// Set this action's badge text on a specific tab.
void SetBadgeText(TabID tab_id, const std::string& text) {
SetValue(&badge_text_, tab_id, text);
}
// Clear this action's badge text on a specific tab.
void ClearBadgeText(TabID tab_id) { badge_text_.erase(tab_id); }
// Get the badge text that has been set using SetBadgeText for a tab, or the
// default if no badge text was set.
std::string GetExplicitlySetBadgeText(TabID tab_id) const {
return GetValue(badge_text_, tab_id);
}
// Set this action's badge text color on a specific tab.
void SetBadgeTextColor(TabID tab_id, SkColor text_color) {
SetValue(&badge_text_color_, tab_id, text_color);
}
// Get the text color for a tab, or the default color if no text color
// was set.
SkColor GetBadgeTextColor(TabID tab_id) const {
return GetValue(badge_text_color_, tab_id);
}
// Set this action's badge background color on a specific tab.
void SetBadgeBackgroundColor(TabID tab_id, SkColor color) {
SetValue(&badge_background_color_, tab_id, color);
}
// Get the badge background color for a tab, or the default if no color
// was set.
SkColor GetBadgeBackgroundColor(TabID tab_id) const {
return GetValue(badge_background_color_, tab_id);
}
// Set this ExtensionAction's DNR matched action count on a specific tab.
void SetDNRActionCount(TabID tab_id, int action_count) {
SetValue(&dnr_action_count_, tab_id, action_count);
}
// Get this ExtensionAction's DNR matched action count on a specific tab.
// Returns -1 if no entry is found.
int GetDNRActionCount(TabID tab_id) const {
return GetValue(dnr_action_count_, tab_id);
}
// Clear this ExtensionAction's DNR matched action count for all tabs.
void ClearDNRActionCountForAllTabs() { dnr_action_count_.clear(); }
// Get the badge text displayed for a tab, calculated based on both
// `badge_text_` and `dnr_action_count_`. Returns in order of priority:
// - GetExplicitlySetBadgeText(tab_id) if it exists for the `tab_id`
// - GetDNRActionCount(tab_id) if there is at least one action for this tab
// - The default badge text, if set, otherwise: an empty string.
std::string GetDisplayBadgeText(TabID tab_id) const;
// Set this action's badge visibility on a specific tab. Returns true if
// the visibility has changed.
bool SetIsVisible(TabID tab_id, bool value);
// The declarative appearance overrides a default appearance but is overridden
// by an appearance set directly on the tab.
void DeclarativeShow(TabID tab_id);
void UndoDeclarativeShow(TabID tab_id);
const gfx::Image GetDeclarativeIcon(TabID tab_id) const;
// Get the badge visibility for a tab, or the default badge visibility
// if none was set.
// Gets the visibility of `tab_id`. Returns the first of: a specific
// visibility set on the tab; a declarative visibility set on the tab; the
// default visibility set for all tabs; or `false`. Don't return this
// result to an extension's background page because the declarative state can
// leak information about hosts the extension doesn't have permission to
// access.
bool GetIsVisible(TabID tab_id) const {
return GetIsVisibleInternal(tab_id, /*include_declarative=*/true);
}
bool GetIsVisibleIgnoringDeclarative(TabID tab_id) const {
return GetIsVisibleInternal(tab_id, /*include_declarative=*/false);
}
// Remove all tab-specific state.
void ClearAllValuesForTab(TabID tab_id);
// Sets the default IconImage for this action.
void SetDefaultIconImage(std::unique_ptr<IconImage> icon_image);
// Returns the image to use as the default icon for the action. Can only be
// called after SetDefaultIconImage().
gfx::Image GetDefaultIconImage() const;
// Returns the placeholder image for the extension.
gfx::Image GetPlaceholderIconImage() const;
// Determine whether or not the ExtensionAction has a value set for the given
// `tab_id` for each property.
bool HasPopupUrl(TabID tab_id) const;
bool HasTitle(TabID tab_id) const;
bool HasBadgeText(TabID tab_id) const;
bool HasBadgeBackgroundColor(TabID tab_id) const;
bool HasBadgeTextColor(TabID tab_id) const;
bool HasIsVisible(TabID tab_id) const;
bool HasIcon(TabID tab_id) const;
bool HasDNRActionCount(TabID tab_id) const;
IconImage* default_icon_image() { return default_icon_image_.get(); }
void SetDefaultIconForTest(std::unique_ptr<ExtensionIconSet> default_icon);
private:
// Populates the action from the `extension` and `manifest_data`, filling in
// any missing values (like title or icons) as possible.
void Populate(const Extension& extension, const ActionInfo& manifest_data);
// Returns width of the current icon for tab_id.
// TODO(tbarzic): The icon selection is done in ExtensionActionIconFactory.
// We should probably move this there too.
int GetIconWidth(TabID tab_id) const;
// Returns whether the icon is visible on the given `tab`.
// `include_declarative` indicates whether this method should take into
// account declaratively-shown icons; this should only be true when the result
// of this function is not delivered (directly or indirectly) to the
// extension, since it can leak data about the page in the tab.
bool GetIsVisibleInternal(TabID tab_id, bool include_declarative) const;
template <class T>
struct ValueTraits {
static T CreateEmpty() { return T(); }
};
template <class T>
void SetValue(std::map<int, T>* map, TabID tab_id, const T& val) {
(*map)[tab_id] = val;
}
template <class T>
T GetValue(const std::map<int, T>& map, TabID tab_id) const {
if (const T* tab_value = base::FindOrNull(map, tab_id)) {
return *tab_value;
} else if (const T* default_value = base::FindOrNull(map, kDefaultTabId)) {
return *default_value;
} else {
return ValueTraits<T>::CreateEmpty();
}
}
// The id for the extension this action belongs to (as defined in the
// extension manifest).
const ExtensionId extension_id_;
// The name of the extension.
const std::string extension_name_;
const ActionInfo::Type action_type_;
// The default state of the action.
const ActionInfo::DefaultState default_state_;
// Each of these data items can have both a global state (stored with the key
// kDefaultTabId), or tab-specific state (stored with the tab_id as the key).
std::map<TabID, GURL> popup_url_;
std::map<TabID, std::string> title_;
std::map<TabID, gfx::Image> icon_;
std::map<TabID, std::string> badge_text_;
std::map<TabID, SkColor> badge_background_color_;
std::map<TabID, SkColor> badge_text_color_;
std::map<TabID, bool> is_visible_;
// Declarative state exists for two reasons: First, we need to hide it from
// the extension's background/event page to avoid leaking data from hosts the
// extension doesn't have permission to access. Second, the action's state
// gets both reset and given its declarative values in response to a
// WebContentsObserver::DidNavigateMainFrame event, and there's no way to set
// those up to be called in the right order.
// Maps tab_id to the number of active (applied-but-not-reverted)
// declarativeContent.ShowAction actions.
std::map<TabID, int> declarative_show_count_;
// declarative_icon_[tab_id][declarative_rule_priority] is a vector of icon
// images that are currently in effect
std::map<TabID, std::map<int, std::vector<gfx::Image>>> declarative_icon_;
// Maps tab_id to the number of actions taken based on declarative net request
// rule matches on incoming requests. Overrides the default `badge_text_` for
// this extension if it has opted into setting the action count as badge text.
std::map<TabID, int> dnr_action_count_;
// ExtensionIconSet containing paths to bitmaps from which default icon's
// image representations will be selected.
std::unique_ptr<ExtensionIconSet> default_icon_;
// The default icon image, if `default_icon_` exists. Set via
// SetDefaultIconImage(). Since IconImages depend upon BrowserContexts, we
// don't have the ExtensionAction load it directly to keep this class's
// knowledge limited.
std::unique_ptr<IconImage> default_icon_image_;
// The lazily-initialized image for a placeholder icon, in the event that the
// extension doesn't have its own icon. (Mutable to allow lazy init in
// GetDefaultIconImage().)
mutable gfx::Image placeholder_icon_image_;
// The id for the ExtensionAction, for example: "RssPageAction". This is
// needed for compat with an older version of the page actions API.
std::string id_;
};
template <>
struct ExtensionAction::ValueTraits<int> {
static int CreateEmpty() { return -1; }
};
} // namespace extensions
#endif // EXTENSIONS_BROWSER_EXTENSION_ACTION_H_
|