File: data_sharing_utils.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 (310 lines) | stat: -rw-r--r-- 11,746 bytes parent folder | download | duplicates (4)
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
// Copyright 2024 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/views/data_sharing/data_sharing_utils.h"

#include <optional>
#include <string>
#include <variant>

#include "base/functional/bind.h"
#include "base/notreached.h"
#include "base/strings/utf_string_conversions.h"
#include "base/token.h"
#include "chrome/browser/data_sharing/data_sharing_service_factory.h"
#include "chrome/browser/ui/tabs/saved_tab_groups/saved_tab_group_utils.h"
#include "chrome/common/webui_url_constants.h"
#include "chrome/grit/generated_resources.h"
#include "components/data_sharing/public/group_data.h"
#include "components/saved_tab_groups/public/saved_tab_group_tab.h"
#include "components/saved_tab_groups/public/tab_group_sync_service.h"
#include "components/saved_tab_groups/public/types.h"
#include "components/tab_groups/tab_group_id.h"
#include "components/url_formatter/elide_url.h"
#include "mojo/public/mojom/base/absl_status.mojom.h"
#include "net/base/url_util.h"
#include "ui/base/l10n/l10n_util.h"

namespace data_sharing {
RequestInfo::RequestInfo(
    std::variant<tab_groups::LocalTabGroupID, data_sharing::GroupToken> id,
    FlowType type)
    : id(id), type(type) {}
RequestInfo::RequestInfo() : id(GroupToken()) {}
RequestInfo::RequestInfo(const RequestInfo& other) = default;
RequestInfo::~RequestInfo() = default;

GURL CreateShareUrl(const GURL& url,
                    const std::variant<tab_groups::LocalTabGroupID,
                                       data_sharing::GroupToken>& group_id) {
  GURL updated_url = url;
  if (std::holds_alternative<tab_groups::LocalTabGroupID>(group_id)) {
    tab_groups::TabGroupId local_group_id = std::get<0>(group_id);

    // Return share flow url which requires a local group id to later
    // associate with the collaboration_id returned by WebUI.
    updated_url =
        net::AppendQueryParameter(updated_url, kQueryParamFlow, kFlowShare);
    updated_url = net::AppendQueryParameter(updated_url, kQueryParamTabGroupId,
                                            local_group_id.ToString());
  } else {
    NOTREACHED();
  }

  return updated_url;
}

GURL CreateJoinUrl(const GURL& url,
                   const std::variant<tab_groups::LocalTabGroupID,
                                      data_sharing::GroupToken>& group_id) {
  GURL updated_url = url;
  if (std::holds_alternative<tab_groups::LocalTabGroupID>(group_id)) {
    NOTREACHED();
  } else {
    // Return join flow url which requires both collaboration_id and
    // access_token for WebUI to fetch people info.
    GroupToken group_token = std::get<1>(group_id);
    CHECK(group_token.IsValid());
    updated_url =
        net::AppendQueryParameter(updated_url, kQueryParamFlow, kFlowJoin);
    updated_url = net::AppendQueryParameter(updated_url, kQueryParamGroupId,
                                            group_token.group_id.value());
    updated_url = net::AppendQueryParameter(updated_url, kQueryParamTokenSecret,
                                            group_token.access_token);
  }

  return updated_url;
}

GURL CreateManageUrl(
    const GURL& url,
    const std::variant<tab_groups::LocalTabGroupID, data_sharing::GroupToken>&
        group_id,
    const std::optional<tab_groups::SavedTabGroup> saved_group) {
  GURL updated_url = url;
  CHECK(saved_group->is_shared_tab_group());
  if (std::holds_alternative<tab_groups::LocalTabGroupID>(group_id)) {
    // Return manage flow url which requires a group_id for webui to fetch
    // people info.
    updated_url =
        net::AppendQueryParameter(updated_url, kQueryParamFlow, kFlowManage);
    updated_url =
        net::AppendQueryParameter(updated_url, kQueryParamGroupId,
                                  saved_group->collaboration_id()->value());
    tab_groups::TabGroupId local_group_id = std::get<0>(group_id);

    updated_url = net::AppendQueryParameter(updated_url, kQueryParamTabGroupId,
                                            local_group_id.ToString());
  } else {
    // Return manage flow url which requires a group_id for webui to fetch
    // people info.
    GroupToken group_token = std::get<1>(group_id);
    updated_url =
        net::AppendQueryParameter(updated_url, kQueryParamFlow, kFlowManage);
    updated_url = net::AppendQueryParameter(updated_url, kQueryParamGroupId,
                                            group_token.group_id.value());
  }

  return updated_url;
}

GURL CreateLeaveUrl(const GURL& url,
                    const std::variant<tab_groups::LocalTabGroupID,
                                       data_sharing::GroupToken>& group_id) {
  GURL updated_url = url;
  if (std::holds_alternative<tab_groups::LocalTabGroupID>(group_id)) {
    NOTREACHED();
  } else {
    // Return manage flow url which requires a group_id for webui to fetch
    // people info.
    GroupToken group_token = std::get<1>(group_id);
    updated_url =
        net::AppendQueryParameter(updated_url, kQueryParamFlow, kFlowLeave);
    updated_url = net::AppendQueryParameter(updated_url, kQueryParamGroupId,
                                            group_token.group_id.value());
  }

  return updated_url;
}

GURL CreateDeleteUrl(
    const GURL& url,
    const std::optional<tab_groups::SavedTabGroup> saved_group) {
  CHECK(saved_group);
  CHECK(saved_group->collaboration_id());

  GURL updated_url = url;

  // Both variants will use the collaboration id from the saved_group.
  updated_url =
      net::AppendQueryParameter(updated_url, kQueryParamFlow, kFlowDelete);
  updated_url =
      net::AppendQueryParameter(updated_url, kQueryParamGroupId,
                                saved_group->collaboration_id()->value());

  return updated_url;
}

GURL CreateCloseUrl(
    const GURL& url,
    const std::optional<tab_groups::SavedTabGroup> saved_group) {
  CHECK(saved_group);
  CHECK(saved_group->collaboration_id());

  GURL updated_url = url;

  // Both variants will use the collaboration id from the saved_group.
  updated_url =
      net::AppendQueryParameter(updated_url, kQueryParamFlow, kFlowClose);
  updated_url =
      net::AppendQueryParameter(updated_url, kQueryParamGroupId,
                                saved_group->collaboration_id()->value());

  return updated_url;
}
}  // namespace data_sharing

std::optional<GURL> data_sharing::GenerateWebUIUrl(RequestInfo request_info,
                                                   Profile* profile) {
  tab_groups::TabGroupSyncService* const tab_group_service =
      tab_groups::SavedTabGroupUtils::GetServiceForProfile(profile);
  if (!tab_group_service) {
    return std::nullopt;
  }

  // Find the saved group for the request.
  std::optional<tab_groups::SavedTabGroup> saved_group = std::nullopt;

  if (std::holds_alternative<tab_groups::LocalTabGroupID>(request_info.id)) {
    saved_group = tab_group_service->GetGroup(std::get<0>(request_info.id));
    if (!saved_group) {
      // Local requests must be associated with a SavedTabGroup.
      return std::nullopt;
    }
  } else {
    // It's okay if `saved_group` is nullopt here since we could be joining a
    // group we don't have yet.
    GroupToken group_token = std::get<1>(request_info.id);
    for (const tab_groups::SavedTabGroup& group :
         tab_group_service->GetAllGroups()) {
      if (group.collaboration_id() &&
          group.collaboration_id()->value() == group_token.group_id.value()) {
        saved_group = group;
        break;
      }
    }
  }

  GURL url = GURL(chrome::kChromeUIUntrustedDataSharingURL);
  switch (request_info.type) {
    case kShare: {
      url = CreateShareUrl(url, request_info.id);
      break;
    }
    case kJoin: {
      url = CreateJoinUrl(url, request_info.id);
      break;
    }
    case kManage: {
      url = CreateManageUrl(url, request_info.id, saved_group);
      break;
    }
    case kDelete: {
      if (!saved_group || !saved_group->collaboration_id()) {
        // A shared group must exist for us to delete it.
        return std::nullopt;
      }

      url = CreateDeleteUrl(url, saved_group);
      break;
    }
    case kLeave:
      if (!saved_group || !saved_group->collaboration_id()) {
        // A shared group must exist for us to leave it.
        return std::nullopt;
      }

      url = CreateLeaveUrl(url, request_info.id);
      break;
    case kClose:
      if (!saved_group || !saved_group->collaboration_id()) {
        // A shared group must exist for us to close it.
        return std::nullopt;
      }

      url = CreateCloseUrl(url, saved_group);
      break;
  }

  if (saved_group && request_info.type != kJoin) {
    // If group is unnamed use default name e.g. "1 tab" / "3 tabs".
    std::string title =
        saved_group->title().empty()
            ? l10n_util::GetPluralStringFUTF8(IDS_SAVED_TAB_GROUP_TABS_COUNT,
                                              saved_group->saved_tabs().size())
            : base::UTF16ToUTF8(saved_group->title());
    url = net::AppendQueryParameter(url, kQueryParamTabGroupTitle, title);
  }

  return std::make_optional(url);
}

GURL data_sharing::GetShareLink(const std::string& group_id,
                                const std::string& access_token,
                                Profile* profile) {
  data_sharing::GroupData group_data;
  group_data.group_token =
      data_sharing::GroupToken(data_sharing::GroupId(group_id), access_token);
  auto* data_sharing_service =
      data_sharing::DataSharingServiceFactory::GetForProfile(profile);
  // `group_id` and `access_token` are served by webui and should never be null
  // when they get here. So the sharing url must be valid.
  std::unique_ptr<GURL> url_ptr =
      data_sharing_service->GetDataSharingUrl(group_data);
  CHECK(url_ptr);
  return *url_ptr;
}

void data_sharing::ProcessPreviewOutcome(
    data_sharing::mojom::PageHandler::GetTabGroupPreviewCallback callback,
    const data_sharing::DataSharingService::SharedDataPreviewOrFailureOutcome&
        outcome) {
  data_sharing::mojom::GroupPreviewPtr group_preview =
      data_sharing::mojom::GroupPreview::New();
  if (outcome.has_value()) {
    if (outcome->shared_tab_group_preview) {
      group_preview->title = outcome->shared_tab_group_preview->title;
      for (const auto& tab : outcome->shared_tab_group_preview->tabs) {
        group_preview->shared_tabs.push_back(
            data_sharing::mojom::SharedTab::New(tab.GetDisplayUrl(), tab.url));
      }
    }
    // If group is unnamed use default name e.g. "1 tab" / "3 tabs".
    if (group_preview->title.empty()) {
      group_preview->title = l10n_util::GetPluralStringFUTF8(
          IDS_SAVED_TAB_GROUP_TABS_COUNT, group_preview->shared_tabs.size());
    }

    group_preview->status_code = mojo_base::mojom::AbslStatusCode::kOk;
  } else {
    // TODO(crbug.com/368634445): Convert returned PeopleGroupActionFailure to
    // mojom::AbslStatusCode and let WebUI handle the errors.
    group_preview->status_code = mojo_base::mojom::AbslStatusCode::kUnknown;
  }
  std::move(callback).Run(std::move(group_preview));
}

void data_sharing::GetTabGroupPreview(
    const std::string& group_id,
    const std::string& access_token,
    Profile* profile,
    data_sharing::mojom::PageHandler::GetTabGroupPreviewCallback callback) {
  data_sharing::DataSharingService* data_sharing_service =
      data_sharing::DataSharingServiceFactory::GetForProfile(profile);
  auto group_token =
      data_sharing::GroupToken(data_sharing::GroupId(group_id), access_token);
  CHECK(group_token.IsValid());
  data_sharing_service->GetSharedEntitiesPreview(
      group_token, base::BindOnce(&ProcessPreviewOutcome, std::move(callback)));
}