File: safari_data_importer.cc

package info (click to toggle)
chromium 141.0.7390.107-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,246,132 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 (844 lines) | stat: -rw-r--r-- 32,442 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
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
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
// 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 "components/user_data_importer/utility/safari_data_importer.h"

#include "base/barrier_closure.h"
#include "base/check_deref.h"
#include "base/containers/span_rust.h"
#include "base/files/file_util.h"
#include "base/memory/raw_ptr.h"
#include "base/metrics/histogram_functions.h"
#include "base/strings/sys_string_conversions.h"
#include "base/strings/utf_string_conversions.h"
#include "base/task/bind_post_task.h"
#include "base/task/sequenced_task_runner.h"
#include "base/task/thread_pool.h"
#include "base/time/time.h"
#include "base/types/expected.h"
#include "base/types/expected_macros.h"
#include "components/autofill/core/browser/data_manager/payments/payments_data_manager.h"
#include "components/autofill/core/browser/data_model/payments/credit_card.h"
#include "components/autofill/core/common/autofill_prefs.h"
#include "components/bookmarks/browser/bookmark_model.h"
#include "components/bookmarks/common/bookmark_pref_names.h"
#include "components/history/core/browser/history_service.h"
#include "components/history/core/common/pref_names.h"
#include "components/password_manager/core/browser/features/password_manager_features_util.h"
#include "components/password_manager/core/browser/ui/saved_passwords_presenter.h"
#include "components/password_manager/core/common/password_manager_pref_names.h"
#include "components/reading_list/core/reading_list_model.h"
#include "components/strings/grit/components_strings.h"
#include "components/user_data_importer/utility/bookmark_util.h"
#include "components/user_data_importer/utility/history_callback_from_rust.h"
#include "components/user_data_importer/utility/importer_metrics_recorder.h"
#include "components/user_data_importer/utility/parsing_ffi/lib.rs.h"
#include "ui/base/l10n/l10n_util.h"

namespace {

// Error states reported when an entire import flow failed.
// These values are persisted to logs. Entries should not be renumbered and
// numeric values should never be reused.
// LINT.IfChange(TotalFailureError)
enum class TotalFailureError {
  kNoFileProvided = 0,
  kFileTooBig = 1,
  kUnzipFailed = 2,
  kOther = 3,
  kMaxValue = kOther,
};
// LINT.ThenChange(//tools/metrics/histograms/metadata/user_data_importer/enums.xml:UserDataImportTotalFailureError)

void LogTotalFailureError(TotalFailureError error) {
  base::UmaHistogramEnumeration("UserDataImporter.Safari.TotalFailureError",
                                error);
}

void LogInputFileSize(std::optional<int64_t> size_bytes_optional) {
  int64_t size_bytes = size_bytes_optional.value_or(0);
  int file_size_kb = static_cast<int>(size_bytes / 1024);

  base::UmaHistogramMemoryKB("UserDataImporter.Safari.TotalFileSize",
                             file_size_kb);
}

std::string_view RustStringToStringView(const rust::String& rust_string) {
  return std::string_view(rust_string.data(), rust_string.length());
}

std::u16string RustStringToUTF16(const rust::String& rust_string) {
  return base::UTF8ToUTF16(RustStringToStringView(rust_string));
}

scoped_refptr<base::SequencedTaskRunner> GetRunner() {
  return base::SequencedTaskRunner::GetCurrentDefault();
}

autofill::CreditCard ConvertToAutofillCreditCard(
    const user_data_importer::PaymentCardEntry& card,
    const std::string& app_locale) {
  autofill::CreditCard credit_card;

  credit_card.SetNumber(RustStringToUTF16(card.card_number));
  credit_card.SetNickname(RustStringToUTF16(card.card_name));
  credit_card.SetExpirationMonth(card.card_expiration_month);
  credit_card.SetExpirationYear(card.card_expiration_year);

  // Import all cards as local cards initially. Adding other card types
  // (server, etc) is too complex for an import flow.
  credit_card.set_record_type(autofill::CreditCard::RecordType::kLocalCard);

  credit_card.SetInfo(autofill::CREDIT_CARD_NAME_FULL,
                      RustStringToUTF16(card.cardholder_name), app_locale);

  return credit_card;
}

bool IsRedirect(const GURL& source_url, const GURL& destination_url) {
  // If URLs are identical strings, it's not a redirect.
  if (source_url == destination_url) {
    return false;
  }

  // Check if URLs are valid.
  if (!source_url.is_valid() || !destination_url.is_valid()) {
    return false;  // Cannot reliably determine redirect if URLs are unparsable.
  }

  // Check for differences in scheme.
  if ((source_url.has_scheme() != destination_url.has_scheme()) ||
      (source_url.has_scheme() && destination_url.has_scheme() &&
       !source_url.SchemeIs(destination_url.scheme()))) {
    return true;
  }

  // Check for differences in host.
  if ((source_url.has_host() != destination_url.has_host()) ||
      (source_url.has_host() && destination_url.has_host() &&
       source_url.host() != destination_url.host())) {
    return true;
  }

  // Check for differences in path.
  if ((source_url.has_path() != destination_url.has_path()) ||
      (source_url.has_path() && destination_url.has_path() &&
       source_url.path() != destination_url.path())) {
    return true;
  }

  // Check for specific redirect pattern: source has no query, but destination
  // does.
  if (!source_url.has_query() && destination_url.has_query()) {
    return true;
  }

  // If none of the above conditions are met, it's not considered a redirect
  // by this logic (e.g., only fragment changes, or query changes where source
  // already had a query).
  return false;
}

// Returns whether to skip this history entry.
bool IsSkippedEntry(const user_data_importer::SafariHistoryEntry& entry) {
  // If either source or destination URL is missing, we can't determine if this
  // entry should be skipped.
  if (entry.source_url.empty() || entry.destination_url.empty()) {
    return false;
  }

  // Parse URLs using GURL.
  GURL source_url(RustStringToStringView(entry.source_url));
  GURL destination_url(RustStringToStringView(entry.destination_url));

  // Only import history entries if the scheme is http or https.
  if ((source_url.has_scheme() && !source_url.SchemeIs(url::kHttpsScheme) &&
       !source_url.SchemeIs(url::kHttpScheme)) ||
      (destination_url.has_scheme() &&
       !destination_url.SchemeIs(url::kHttpsScheme) &&
       !destination_url.SchemeIs(url::kHttpScheme))) {
    return true;
  }

  // Redirects are skipped.
  return IsRedirect(source_url, destination_url);
}

std::optional<history::URLRow> ConvertToURLRow(
    const user_data_importer::SafariHistoryEntry& history_entry) {
  GURL gurl(RustStringToStringView(history_entry.url));
  if (!gurl.is_valid() || IsSkippedEntry(history_entry)) {
    return std::nullopt;
  }

  history::URLRow url_row(gurl);
  url_row.set_title(RustStringToUTF16(history_entry.title));
  url_row.set_visit_count(history_entry.visit_count);

  // "time_usec" is a UNIX timestamp in microseconds.
  url_row.set_last_visit(base::Time::UnixEpoch() +
                         base::Microseconds(history_entry.time_usec));

  return url_row;
}

// Returns an error enum appropriate for logging if the password importer
// status indicates an error, or std::nullopt if it is OK to proceed.
std::optional<user_data_importer::PasswordsImportError>
TranslatePasswordStatusToError(password_manager::ImportResults::Status status) {
  switch (status) {
    case password_manager::ImportResults::CONFLICTS:
    case password_manager::ImportResults::SUCCESS:
      return std::nullopt;
    case password_manager::ImportResults::IO_ERROR:
    case password_manager::ImportResults::BAD_FORMAT:
      return user_data_importer::PasswordsImportError::kFailedToRead;
    case password_manager::ImportResults::MAX_FILE_SIZE:
    case password_manager::ImportResults::NUM_PASSWORDS_EXCEEDED:
      return user_data_importer::PasswordsImportError::kTooBig;
    case password_manager::ImportResults::NONE:
    case password_manager::ImportResults::UNKNOWN_ERROR:
    case password_manager::ImportResults::DISMISSED:
    case password_manager::ImportResults::IMPORT_ALREADY_ACTIVE:
    default:
      return user_data_importer::PasswordsImportError::kOther;
  }
}

// Returns true if an import is blocked by a "disabling" policy.
bool IsImportBlockedByDisablingPolicy(const PrefService* pref_service,
                                      const char* pref_name) {
  return pref_service->IsManagedPreference(pref_name) &&
         pref_service->GetBoolean(pref_name);
}

// Returns true if an import is blocked by an "enabling" policy.
bool IsImportBlockedByEnablingPolicy(const PrefService* pref_service,
                                     const char* pref_name) {
  return pref_service->IsManagedPreference(pref_name) &&
         !pref_service->GetBoolean(pref_name);
}
}  // namespace

namespace user_data_importer {

// Object used to allow Rust History import pipeline to communicate results
// back to this importer.
class RustHistoryCallback final
    : public user_data_importer::HistoryCallbackFromRust<SafariHistoryEntry> {
 public:
  using ParseHistoryCallback = base::RepeatingCallback<void(
      std::vector<user_data_importer::SafariHistoryEntry>)>;

  explicit RustHistoryCallback(ParseHistoryCallback parse_history_callback,
                               base::OnceClosure done_closure,
                               base::OnceClosure failed_closure)
      : parse_history_callback_(parse_history_callback),
        done_closure_(std::move(done_closure)),
        failed_closure_(std::move(failed_closure)) {}

  ~RustHistoryCallback() override = default;

  // Callback called while parsing the history file.
  void ImportHistoryEntries(
      std::unique_ptr<std::vector<SafariHistoryEntry>> history_entries,
      bool completed) override {
    parse_history_callback_.Run(std::move(*history_entries));

    if (completed) {
      std::move(done_closure_).Run();
    }
  }

  // Calls `failed_closure_` to signal that parsing has failed.
  void Fail() override { std::move(failed_closure_).Run(); }

 private:
  ParseHistoryCallback parse_history_callback_;
  base::OnceClosure done_closure_;
  base::OnceClosure failed_closure_;
};

SafariDataImporter::SafariDataImporter(
    SafariDataImportClient* client,
    password_manager::SavedPasswordsPresenter* presenter,
    autofill::PaymentsDataManager* payments_data_manager,
    history::HistoryService* history_service,
    bookmarks::BookmarkModel* bookmark_model,
    ReadingListModel* reading_list_model,
    syncer::SyncService* sync_service,
    PrefService* pref_service,
    std::unique_ptr<BookmarkParser> bookmark_parser,
    std::string app_locale)
    : blocking_queue_(base::ThreadPool::CreateSequencedTaskRunner(
          {base::MayBlock(), base::TaskPriority::USER_VISIBLE})),
      blocking_worker_(blocking_queue_, std::move(bookmark_parser)),
      password_importer_(std::make_unique<password_manager::PasswordImporter>(
          presenter,
          /*user_confirmation_required=*/true)),
      client_(CHECK_DEREF(client)),
      payments_data_manager_(CHECK_DEREF(payments_data_manager)),
      history_service_(CHECK_DEREF(history_service)),
      bookmark_model_(CHECK_DEREF(bookmark_model)),
      reading_list_model_(CHECK_DEREF(reading_list_model)),
      sync_service_(sync_service),
      pref_service_(pref_service),
      metrics_recorder_(ImporterMetricsRecorder::Source::kSafari),
      app_locale_(std::move(app_locale)) {}

SafariDataImporter::~SafariDataImporter() = default;

void SafariDataImporter::PrepareImport(const base::FilePath& path) {
  metrics_recorder_.OnFlowStarted();

  std::string zip_filename = path.MaybeAsASCII();
  if (zip_filename.empty()) {
    LogTotalFailureError(TotalFailureError::kNoFileProvided);
    client_->OnTotalFailure();
    return;
  }

  blocking_worker_.AsyncCall(&BlockingWorker::GetInitialFileSize)
      .WithArgs(path)
      .Then(base::BindOnce(&LogInputFileSize));

  blocking_worker_.AsyncCall(&BlockingWorker::CreateZipFileArchive)
      .WithArgs(std::move(zip_filename))
      .Then(base::BindOnce(&SafariDataImporter::OnZipArchiveReady,
                           weak_factory_.GetWeakPtr()));
}

void SafariDataImporter::CompleteImport(
    const std::vector<int>& selected_password_ids) {
  constexpr int kNumTasks = 4;

  // No need to BindPostTask here, because `barrier_closure` is always chained
  // to another callback which is, itself, posted back to the default runner.
  base::RepeatingClosure barrier_closure = base::BarrierClosure(
      kNumTasks, base::BindOnce(&SafariDataImporter::OnImportComplete,
                                weak_factory_.GetWeakPtr()));

  if (!IsImportBlockedByDisablingPolicy(pref_service_,
                                        prefs::kSavingBrowserHistoryDisabled)) {
    history_urls_imported_ = 0;
    RustHistoryCallback::ParseHistoryCallback parse_history_callback =
        base::BindPostTask(
            GetRunner(),
            base::BindRepeating(&SafariDataImporter::ImportHistoryEntries,
                                weak_factory_.GetWeakPtr()));

    base::OnceClosure done_history_closure = base::BindPostTask(
        GetRunner(),
        base::BindOnce(&SafariDataImporter::OnHistoryImportCompleted,
                       weak_factory_.GetWeakPtr())
            .Then(barrier_closure));

    base::OnceClosure failed_history_closure = base::BindPostTask(
        GetRunner(), base::BindOnce(&SafariDataImporter::OnHistoryImportFailed,
                                    weak_factory_.GetWeakPtr())
                         .Then(barrier_closure));

    metrics_recorder_.history_metrics().OnImportStarted();
    blocking_worker_.AsyncCall(&BlockingWorker::ImportHistory)
        .WithArgs(std::make_unique<RustHistoryCallback>(
                      std::move(parse_history_callback),
                      std::move(done_history_closure),
                      std::move(failed_history_closure)),
                  history_size_threshold_);
  } else {
    client_->OnHistoryImported(0);
    barrier_closure.Run();
  }

  if (password_importer_ &&
      password_importer_->IsState(
          password_manager::PasswordImporter::kUserInteractionRequired)) {
    CHECK(!IsImportBlockedByEnablingPolicy(
        pref_service_, password_manager::prefs::kCredentialsEnableService));

    metrics_recorder_.password_metrics().OnImportStarted();

    password_importer_->ContinueImport(
        selected_password_ids,
        base::BindOnce(&SafariDataImporter::OnPasswordImportCompleted,
                       weak_factory_.GetWeakPtr())
            .Then(barrier_closure));
  } else {
    client_->OnPasswordsImported(password_manager::ImportResults());
    // In the case where no passwords need to be imported, just run
    // `barrier_closure` directly. This is safe because CompleteImport runs on
    // the main sequence.
    barrier_closure.Run();
  }

  metrics_recorder_.bookmark_metrics().OnImportStarted();
  metrics_recorder_.reading_list_metrics().OnImportStarted();
  GetRunner()->PostTask(
      FROM_HERE, base::BindOnce(&SafariDataImporter::ContinueImportBookmarks,
                                weak_factory_.GetWeakPtr())
                     .Then(barrier_closure));

  metrics_recorder_.payment_card_metrics().OnImportStarted();
  GetRunner()->PostTask(
      FROM_HERE, base::BindOnce(&SafariDataImporter::ContinueImportPaymentCards,
                                weak_factory_.GetWeakPtr())
                     .Then(barrier_closure));
}

// Called after calling "Import" in order to cancel the import process.
void SafariDataImporter::CancelImport() {
  // TODO(crbug.com/407587751): Notify password_importer_.

  blocking_worker_.AsyncCall(&BlockingWorker::CloseZipFileArchive);
}

SafariDataImporter::BlockingWorker::BlockingWorker(
    std::unique_ptr<BookmarkParser> bookmark_parser)
    : bookmark_parser_(std::move(bookmark_parser)) {}

SafariDataImporter::BlockingWorker::~BlockingWorker() = default;

bool SafariDataImporter::BlockingWorker::CreateZipFileArchive(
    std::string zip_filename) {
  const std::vector<uint8_t> zip_filename_span(zip_filename.begin(),
                                               zip_filename.end());
  rust::Slice<const uint8_t> rs_zip_filename =
      base::SpanToRustSlice(zip_filename_span);
  rust::Box<ResultOfZipFileArchive> result_of_zip_file_archive =
      new_archive(rs_zip_filename);

  if (result_of_zip_file_archive->err()) {
    return false;
  }

  zip_file_archive_.emplace(result_of_zip_file_archive->unwrap());
  return true;
}

void SafariDataImporter::BlockingWorker::CloseZipFileArchive() {
  zip_file_archive_.reset();
}

std::string SafariDataImporter::BlockingWorker::Unzip(FileType filetype) {
  std::string output_bytes;
  if (!zip_file_archive_ ||
      !(*zip_file_archive_)->unzip(filetype, output_bytes)) {
    return std::string();
  }
  return output_bytes;
}

size_t SafariDataImporter::BlockingWorker::GetUncompressedFileSizeInBytes(
    FileType filetype) {
  return zip_file_archive_ ? (*zip_file_archive_)->get_file_size_bytes(filetype)
                           : 0u;
}

std::optional<int64_t> SafariDataImporter::BlockingWorker::GetInitialFileSize(
    const base::FilePath& path) {
  return base::GetFileSize(path);
}

SafariDataImporter::BlockingWorker::BookmarkUnzipResult::BookmarkUnzipResult(
    std::optional<base::FilePath> p,
    size_t size)
    : path(std::move(p)), file_size_bytes(size) {}
SafariDataImporter::BlockingWorker::BookmarkUnzipResult::
    ~BookmarkUnzipResult() = default;
SafariDataImporter::BlockingWorker::BookmarkUnzipResult::BookmarkUnzipResult(
    BookmarkUnzipResult&&) = default;
SafariDataImporter::BlockingWorker::BookmarkUnzipResult&
SafariDataImporter::BlockingWorker::BookmarkUnzipResult::operator=(
    SafariDataImporter::BlockingWorker::BookmarkUnzipResult&&) = default;

SafariDataImporter::BlockingWorker::BookmarkUnzipResult
SafariDataImporter::BlockingWorker::WriteBookmarksToTmpFile() {
  std::string html_data = Unzip(FileType::Bookmarks);

  if (html_data.empty()) {
    return BookmarkUnzipResult(std::nullopt, 0);
  }

  bookmarks_temp_dir_ = std::make_unique<base::ScopedTempDir>();

  if (!bookmarks_temp_dir_->CreateUniqueTempDir()) {
    return BookmarkUnzipResult(std::nullopt, 0);
  }

  base::FilePath path =
      bookmarks_temp_dir_->GetPath().AppendASCII("bookmarks.html");

  if (!base::WriteFile(path, html_data)) {
    return BookmarkUnzipResult(std::nullopt, 0);
  }
  return BookmarkUnzipResult(path, html_data.length());
}

void SafariDataImporter::BlockingWorker::ParseBookmarks(
    std::optional<base::FilePath> bookmarks_html,
    user_data_importer::BookmarkParser::BookmarkParsingCallback
        bookmarks_callback) {
  bookmark_parser_->Parse(*bookmarks_html, std::move(bookmarks_callback));
}

SafariDataImporter::BlockingWorker::PaymentCardParseResult::
    PaymentCardParseResult(std::vector<PaymentCardEntry> e, size_t size)
    : entries(std::move(e)), file_size_bytes(size) {}
SafariDataImporter::BlockingWorker::PaymentCardParseResult::
    ~PaymentCardParseResult() = default;
SafariDataImporter::BlockingWorker::PaymentCardParseResult::
    PaymentCardParseResult(
        SafariDataImporter::BlockingWorker::PaymentCardParseResult&&) = default;
SafariDataImporter::BlockingWorker::PaymentCardParseResult&
SafariDataImporter::BlockingWorker::PaymentCardParseResult::operator=(
    SafariDataImporter::BlockingWorker::PaymentCardParseResult&&) = default;

SafariDataImporter::BlockingWorker::PaymentCardParseResult
SafariDataImporter::BlockingWorker::ParsePaymentCards() {
  std::vector<PaymentCardEntry> payment_cards;
  if (!zip_file_archive_ ||
      !(*zip_file_archive_)->parse_payment_cards(payment_cards)) {
    return PaymentCardParseResult({}, 0);
  }
  return PaymentCardParseResult(
      std::move(payment_cards),
      GetUncompressedFileSizeInBytes(FileType::PaymentCards));
}

void SafariDataImporter::BlockingWorker::ImportHistory(
    std::unique_ptr<RustHistoryCallback> callback,
    size_t history_size_threshold) {
  if (!zip_file_archive_) {
    callback->Fail();
    return;
  }

  (*zip_file_archive_)
      ->parse_safari_history(std::move(callback), history_size_threshold);

  CloseZipFileArchive();
}

void SafariDataImporter::OnZipArchiveReady(bool success) {
  if (!success) {
    LogTotalFailureError(TotalFailureError::kUnzipFailed);
    client_->OnTotalFailure();
    return;
  }

  // Passwords import may require conflict resolution, so it is done first.
  metrics_recorder_.password_metrics().OnPreparationStarted();
  blocking_worker_.AsyncCall(&BlockingWorker::Unzip)
      .WithArgs(FileType::Passwords)
      .Then(base::BindOnce(&SafariDataImporter::PreparePasswords,
                           weak_factory_.GetWeakPtr()));

  metrics_recorder_.payment_card_metrics().OnPreparationStarted();
  blocking_worker_.AsyncCall(&BlockingWorker::ParsePaymentCards)
      .Then(base::BindOnce(&SafariDataImporter::PreparePaymentCards,
                           weak_factory_.GetWeakPtr()));

  metrics_recorder_.bookmark_metrics().OnPreparationStarted();
  metrics_recorder_.reading_list_metrics().OnPreparationStarted();
  blocking_worker_.AsyncCall(&BlockingWorker::WriteBookmarksToTmpFile)
      .Then(base::BindOnce(&SafariDataImporter::PrepareBookmarks,
                           weak_factory_.GetWeakPtr()));

  metrics_recorder_.history_metrics().OnPreparationStarted();
  blocking_worker_.AsyncCall(&BlockingWorker::GetUncompressedFileSizeInBytes)
      .WithArgs(FileType::SafariHistory)
      .Then(base::BindOnce(&SafariDataImporter::PrepareHistory,
                           weak_factory_.GetWeakPtr()));
}

void SafariDataImporter::PreparePasswords(std::string csv_data) {
  if (csv_data.empty()) {
    metrics_recorder_.password_metrics().LogOutcome(
        DataTypeMetrics::ImportOutcome::kNotPresent);

    // Empty results object, indicating no work could be done.
    client_->OnPasswordsReady(base::ok(password_manager::ImportResults{}));
    return;
  }

  if (IsImportBlockedByEnablingPolicy(
          pref_service_, password_manager::prefs::kCredentialsEnableService)) {
    // TODO(crbug.com/407587751): Signal to UI that passwords import is blocked
    // by policy.
    client_->OnPasswordsReady(
        base::unexpected(ImportPreparationError::kBlockedByPolicy));
    return;
  }

  metrics_recorder_.password_metrics().LogFileSizeBytes(csv_data.length());

  password_manager::PasswordForm::Store to_store = {
      password_manager::features_util::IsAccountStorageEnabled(sync_service_)
          ? password_manager::PasswordForm::Store::kAccountStore
          : password_manager::PasswordForm::Store::kProfileStore};

  password_importer_->Import(
      std::move(csv_data), to_store,
      base::BindOnce(&SafariDataImporter::OnPasswordsParsed,
                     weak_factory_.GetWeakPtr()));
}

void SafariDataImporter::PreparePaymentCards(
    SafariDataImporter::BlockingWorker::PaymentCardParseResult result) {
  if (IsImportBlockedByEnablingPolicy(
          pref_service_, autofill::prefs::kAutofillCreditCardEnabled)) {
    // TODO(crbug.com/407587751): Signal to UI that payment cards import is
    // blocked by policy.
    client_->OnPaymentCardsReady(
        base::unexpected(ImportPreparationError::kBlockedByPolicy));
    return;
  }

  if (result.entries.empty()) {
    metrics_recorder_.payment_card_metrics().LogOutcome(
        DataTypeMetrics::ImportOutcome::kNotPresent);
    client_->OnPaymentCardsReady(base::ok(0u));
    return;
  }

  metrics_recorder_.payment_card_metrics().LogFileSizeBytes(
      result.file_size_bytes);

  cards_to_import_.clear();
  cards_to_import_.reserve(result.entries.size());
  std::ranges::transform(result.entries, std::back_inserter(cards_to_import_),
                         [this](const auto& card) {
                           return ConvertToAutofillCreditCard(card,
                                                              app_locale_);
                         });

  size_t count = cards_to_import_.size();
  metrics_recorder_.payment_card_metrics().OnPreparationFinished(count);
  client_->OnPaymentCardsReady(base::ok(count));
}

void SafariDataImporter::PrepareBookmarks(
    SafariDataImporter::BlockingWorker::BookmarkUnzipResult result) {
  if (IsImportBlockedByEnablingPolicy(
          pref_service_, bookmarks::prefs::kEditBookmarksEnabled)) {
    // TODO(crbug.com/407587751): Signal to UI that bookmarks import is blocked
    // by policy.
    client_->OnBookmarksReady(
        base::unexpected(ImportPreparationError::kBlockedByPolicy));
    return;
  }

  if (!result.path || result.path->empty()) {
    metrics_recorder_.bookmark_metrics().LogOutcome(
        DataTypeMetrics::ImportOutcome::kNotPresent);
    metrics_recorder_.reading_list_metrics().LogOutcome(
        DataTypeMetrics::ImportOutcome::kNotPresent);
    client_->OnBookmarksReady(base::ok(0u));
    return;
  }

  auto import_bookmarks_callback = base::BindPostTask(
      GetRunner(), base::BindOnce(&SafariDataImporter::OnBookmarksParsed,
                                  weak_factory_.GetWeakPtr()));
  metrics_recorder_.bookmark_metrics().LogFileSizeBytes(result.file_size_bytes);
  metrics_recorder_.reading_list_metrics().LogFileSizeBytes(
      result.file_size_bytes);

  blocking_worker_.AsyncCall(&BlockingWorker::ParseBookmarks)
      .WithArgs(result.path, std::move(import_bookmarks_callback));
}

void SafariDataImporter::OnPasswordsParsed(
    const password_manager::ImportResults& results) {
  auto error = TranslatePasswordStatusToError(results.status);
  if (error) {
    metrics_recorder_.LogPasswordsError(*error);
    client_->OnPasswordsReady(base::ok(password_manager::ImportResults{}));
    return;
  }

  size_t count = results.displayed_entries.size() + results.number_to_import;
  metrics_recorder_.password_metrics().OnPreparationFinished(count);

  client_->OnPasswordsReady(base::ok(results));
}

void SafariDataImporter::OnBookmarksParsed(
    BookmarkParser::BookmarkParsingResult result) {
  ASSIGN_OR_RETURN(BookmarkParser::ParsedBookmarks value, std::move(result),
                   &SafariDataImporter::OnBookmarkParsingError, this);

  pending_bookmarks_ = std::move(value.bookmarks);
  pending_reading_list_ = std::move(value.reading_list);

  size_t importable_bookmarks_count = 0;
  for (const auto& bookmark : pending_bookmarks_) {
    if (!bookmark.is_folder) {
      ++importable_bookmarks_count;
    }
  }

  metrics_recorder_.bookmark_metrics().OnPreparationFinished(
      importable_bookmarks_count);
  metrics_recorder_.reading_list_metrics().OnPreparationFinished(
      pending_reading_list_.size());

  client_->OnBookmarksReady(
      base::ok(importable_bookmarks_count + pending_reading_list_.size()));
}

void SafariDataImporter::OnBookmarkParsingError(
    BookmarkParser::BookmarkParsingError error) {
  metrics_recorder_.LogBookmarksError(ConvertBookmarkError(error));
  metrics_recorder_.bookmark_metrics().LogOutcome(
      DataTypeMetrics::ImportOutcome::kFailure);
  metrics_recorder_.reading_list_metrics().LogOutcome(
      DataTypeMetrics::ImportOutcome::kFailure);

  client_->OnBookmarksReady(base::ok(0u));
}

void SafariDataImporter::PrepareHistory(size_t file_size_bytes) {
  if (IsImportBlockedByDisablingPolicy(pref_service_,
                                       prefs::kSavingBrowserHistoryDisabled)) {
    // TODO(crbug.com/407587751): Signal to UI that history import is blocked
    // by policy.
    client_->OnHistoryReady(
        base::unexpected(ImportPreparationError::kBlockedByPolicy));
    return;
  }

  // This is an approximation of the number of bytes per URL entry in the
  // history file.
  static const size_t kBytesPerURL = 250;
  size_t approximate_number_of_urls =
      (file_size_bytes > 0) ? (file_size_bytes / kBytesPerURL) + 1 : 0;

  if (file_size_bytes == 0) {
    metrics_recorder_.history_metrics().LogOutcome(
        DataTypeMetrics::ImportOutcome::kNotPresent);
  } else {
    metrics_recorder_.history_metrics().LogFileSizeBytes(file_size_bytes);
    metrics_recorder_.history_metrics().OnPreparationFinished(
        approximate_number_of_urls);
  }

  // TODO(crbug.com/407587751): Pass list of profiles.
  client_->OnHistoryReady(base::ok(approximate_number_of_urls));
}

void SafariDataImporter::ImportHistoryEntries(
    std::vector<SafariHistoryEntry> history_entries) {
  history::URLRows url_rows;
  url_rows.reserve(history_entries.size());
  for (auto history_entry : history_entries) {
    auto opt_row = ConvertToURLRow(history_entry);
    if (opt_row) {
      url_rows.push_back(opt_row.value());
    }
  }

  if (!url_rows.empty()) {
    history_service_->AddPagesWithDetails(url_rows,
                                          history::SOURCE_SAFARI_IMPORTED);

    history_urls_imported_ += url_rows.size();
  }
}

void SafariDataImporter::OnHistoryImportFailed() {
  metrics_recorder_.history_metrics().LogOutcome(
      DataTypeMetrics::ImportOutcome::kFailure);
  metrics_recorder_.history_metrics().OnImportFinished(history_urls_imported_);
  client_->OnHistoryImported(history_urls_imported_);
}

void SafariDataImporter::OnHistoryImportCompleted() {
  metrics_recorder_.history_metrics().OnImportFinished(history_urls_imported_);
  metrics_recorder_.history_metrics().LogOutcome(
      DataTypeMetrics::ImportOutcome::kSuccess);
  client_->OnHistoryImported(history_urls_imported_);
}

void SafariDataImporter::OnPasswordImportCompleted(
    const password_manager::ImportResults& results) {
  metrics_recorder_.password_metrics().OnImportFinished(
      results.number_imported);
  // At this phase of import, any status other than SUCCESS is a failure, as we
  // expect the flow to have concluded.
  metrics_recorder_.password_metrics().LogOutcome(
      results.status == password_manager::ImportResults::SUCCESS
          ? DataTypeMetrics::ImportOutcome::kSuccess
          : DataTypeMetrics::ImportOutcome::kFailure);
  client_->OnPasswordsImported(results);
}

void SafariDataImporter::ContinueImportPaymentCards() {
  if (IsImportBlockedByEnablingPolicy(
          pref_service_, autofill::prefs::kAutofillCreditCardEnabled) ||
      cards_to_import_.empty()) {
    client_->OnPaymentCardsImported(/* count= */ 0);
    return;
  }

  size_t imported_credit_cards = 0u;

  for (const auto& credit_card : cards_to_import_) {
    if (!credit_card.IsValid()) {
      continue;
    }

    const autofill::CreditCard* existing_card =
        payments_data_manager_->GetCreditCardByNumber(
            base::UTF16ToUTF8(credit_card.number()));

    // If a local card with the same number already exists, update it.
    if (existing_card && existing_card->record_type() ==
                             autofill::CreditCard::RecordType::kLocalCard) {
      payments_data_manager_->UpdateCreditCard(credit_card);
    } else {
      payments_data_manager_->AddCreditCard(credit_card);
    }

    ++imported_credit_cards;
  }

  metrics_recorder_.payment_card_metrics().OnImportFinished(
      imported_credit_cards);
  metrics_recorder_.payment_card_metrics().LogOutcome(
      DataTypeMetrics::ImportOutcome::kSuccess);
  client_->OnPaymentCardsImported(imported_credit_cards);
}

void SafariDataImporter::ContinueImportBookmarks() {
  if (IsImportBlockedByEnablingPolicy(
          pref_service_, bookmarks::prefs::kEditBookmarksEnabled)) {
    client_->OnBookmarksImported(0);
    return;
  }

  size_t imported_bookmarks_count = user_data_importer::ImportBookmarks(
      &*bookmark_model_, std::move(pending_bookmarks_),
      l10n_util::GetStringUTF16(IDS_IMPORTED_FROM_SAFARI_FOLDER));
  size_t imported_reading_list_count = user_data_importer::ImportReadingList(
      &*reading_list_model_, std::move(pending_reading_list_));

  metrics_recorder_.bookmark_metrics().OnImportFinished(
      imported_bookmarks_count);
  metrics_recorder_.reading_list_metrics().OnImportFinished(
      imported_reading_list_count);
  metrics_recorder_.bookmark_metrics().LogOutcome(
      DataTypeMetrics::ImportOutcome::kSuccess);
  metrics_recorder_.reading_list_metrics().LogOutcome(
      DataTypeMetrics::ImportOutcome::kSuccess);

  client_->OnBookmarksImported(imported_bookmarks_count +
                               imported_reading_list_count);
}

void SafariDataImporter::OnImportComplete() {
  metrics_recorder_.OnFlowFinished();
}

}  // namespace user_data_importer