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
ash / components / arc / intent_helper / link_handler_model.h [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef ASH_COMPONENTS_ARC_INTENT_HELPER_LINK_HANDLER_MODEL_H_
#define ASH_COMPONENTS_ARC_INTENT_HELPER_LINK_HANDLER_MODEL_H_
#include <memory>
#include <string>
#include <vector>
#include "ash/components/arc/intent_helper/arc_icon_cache_delegate.h"
#include "ash/components/arc/intent_helper/arc_intent_helper_mojo_delegate.h"
#include "base/memory/raw_ptr.h"
#include "base/memory/weak_ptr.h"
#include "base/observer_list.h"
#include "url/gurl.h"
namespace content {
class BrowserContext;
} // namespace content
namespace arc {
// This struct describes the UI presentation of a single link handler.
struct LinkHandlerInfo {
std::u16string name;
gfx::Image icon;
// An opaque identifier for this handler (which happens to correlate to the
// index in |handlers_|.
uint32_t id;
};
class LinkHandlerModel {
public:
class Observer {
public:
virtual void ModelChanged(const std::vector<LinkHandlerInfo>& handlers) = 0;
};
// Creates and inits a model. Will return null if Init() fails.
static std::unique_ptr<LinkHandlerModel> Create(
content::BrowserContext* context,
const GURL& link_url,
std::unique_ptr<ArcIntentHelperMojoDelegate> mojo_delegate);
LinkHandlerModel(const LinkHandlerModel&) = delete;
LinkHandlerModel& operator=(const LinkHandlerModel&) = delete;
~LinkHandlerModel();
void AddObserver(Observer* observer);
void OpenLinkWithHandler(uint32_t handler_id);
static GURL RewriteUrlFromQueryIfAvailableForTesting(const GURL& url);
private:
explicit LinkHandlerModel(
std::unique_ptr<ArcIntentHelperMojoDelegate> mojo_delegate);
// Starts retrieving handler information for the |url| and returns true.
// Returns false when the information cannot be retrieved. In that case,
// the caller should delete |this| object.
bool Init(content::BrowserContext* context, const GURL& url);
void OnUrlHandlerList(
std::vector<ArcIntentHelperMojoDelegate::IntentHandlerInfo> handlers);
void NotifyObserver(
std::unique_ptr<ArcIconCacheDelegate::ActivityToIconsMap> icons);
// Checks if the |url| matches the following pattern:
// "http(s)://<valid_google_hostname>/url?...&url=<valid_url>&..."
// If it does, creates a new GURL object from the <valid_url> and returns it.
// Otherwise, returns the original |url| as-us.
static GURL RewriteUrlFromQueryIfAvailable(const GURL& url);
raw_ptr<content::BrowserContext> context_ = nullptr;
GURL url_;
base::ObserverList<Observer>::Unchecked observer_list_;
// Url handler info passed from ARC.
std::vector<ArcIntentHelperMojoDelegate::IntentHandlerInfo> handlers_;
// Activity icon info passed from ARC.
ArcIconCacheDelegate::ActivityToIconsMap icons_;
// a delegate instance for calling mojo API.
std::unique_ptr<ArcIntentHelperMojoDelegate> mojo_delegate_;
base::WeakPtrFactory<LinkHandlerModel> weak_ptr_factory_{this};
};
} // namespace arc
#endif // ASH_COMPONENTS_ARC_INTENT_HELPER_LINK_HANDLER_MODEL_H_