blob: f53a5c5e999c46f596c3f436d242dced1824357e [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef CHROME_BROWSER_BROWSER_SWITCHER_BROWSER_SWITCHER_SITELIST_H_
#define CHROME_BROWSER_BROWSER_SWITCHER_BROWSER_SWITCHER_SITELIST_H_
#include "base/macros.h"
#include "chrome/browser/browser_switcher/browser_switcher_prefs.h"
#include "components/prefs/pref_change_registrar.h"
class GURL;
namespace browser_switcher {
class BrowserSwitcherPrefs;
class ParsedXml;
// Pre-processes the URL rule and modifies it in-place if needed, to avoid
// having to convert uppercase/lowercase for every rule at every navigation.
void CanonicalizeRule(std::string* rule);
enum Action {
kStay = 0,
kGo = 1,
};
enum Reason {
// BrowserSwitcher is globally disabled.
kDisabled = 0,
// Protocol is not HTTP, HTTPS or FILE.
kProtocol = 1,
// A sitelist rule (either positive or negative) matched.
kSitelist = 2,
// A greylist rule matched.
kGreylist = 3,
// No rule matched, so default to STAY.
kDefault = 4,
};
struct Decision {
Decision(Action, Reason, base::StringPiece matching_rule);
Decision();
Decision(Decision&);
Decision(Decision&&);
bool operator==(const Decision&) const;
Action action;
Reason reason;
// If reason is kSitelist or kGreylist, this is the rule that caused the
// decision.
base::StringPiece matching_rule;
};
// Interface that decides whether a navigation should trigger a browser
// switch.
class BrowserSwitcherSitelist {
public:
virtual ~BrowserSwitcherSitelist();
// Returns true if the given URL should be open in an alternative browser.
bool ShouldSwitch(const GURL& url) const;
// Same as ShouldSwitch(), but returns a struct instead of a bool, also
// containing the reason why this decision was made.
virtual Decision GetDecision(const GURL& url) const = 0;
// Set the Internet Explorer Enterprise Mode sitelist to use, in addition to
// Chrome's sitelist/greylist policies. Consumes the object, and performs no
// copy.
virtual void SetIeemSitelist(ParsedXml&& sitelist) = 0;
// Set the XML sitelist file to use, in addition to Chrome's sitelist/greylist
// policies. This XML file is in the same format as an IEEM sitelist.
// Consumes the object, and performs no copy.
virtual void SetExternalSitelist(ParsedXml&& sitelist) = 0;
// Set the XML sitelist file to use, in addition to Chrome's sitelist/greylist
// policies. This XML file is in the same format as an IEEM sitelist.
// Consumes the object, and performs no copy.
virtual void SetExternalGreylist(ParsedXml&& sitelist) = 0;
virtual const RuleSet* GetIeemSitelist() const = 0;
virtual const RuleSet* GetExternalSitelist() const = 0;
};
// Manages the sitelist configured by the administrator for
// BrowserSwitcher. Decides whether a navigation should trigger a browser
// switch.
class BrowserSwitcherSitelistImpl : public BrowserSwitcherSitelist {
public:
explicit BrowserSwitcherSitelistImpl(const BrowserSwitcherPrefs* prefs);
~BrowserSwitcherSitelistImpl() override;
// BrowserSwitcherSitelist
Decision GetDecision(const GURL& url) const override;
void SetIeemSitelist(ParsedXml&& sitelist) override;
void SetExternalSitelist(ParsedXml&& sitelist) override;
void SetExternalGreylist(ParsedXml&& greylist) override;
const RuleSet* GetIeemSitelist() const override;
const RuleSet* GetExternalSitelist() const override;
private:
// Returns true if there are any rules configured.
bool IsActive() const;
Decision GetDecisionImpl(const GURL& url) const;
RuleSet ieem_sitelist_;
RuleSet external_sitelist_;
const BrowserSwitcherPrefs* const prefs_;
DISALLOW_COPY_AND_ASSIGN(BrowserSwitcherSitelistImpl);
};
} // namespace browser_switcher
#endif // CHROME_BROWSER_BROWSER_SWITCHER_BROWSER_SWITCHER_SITELIST_H_