summaryrefslogtreecommitdiff
path: root/chromium/components/autofill/core/browser/form_parsing/price_field.cc
blob: bc1fed93b867ed127aeb1b2e02bbc5c72f0f1f3c (plain)
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
// Copyright 2019 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.

#include "components/autofill/core/browser/form_parsing/price_field.h"

#include "base/strings/utf_string_conversions.h"
#include "components/autofill/core/browser/autofill_field.h"
#include "components/autofill/core/browser/autofill_regex_constants.h"
#include "components/autofill/core/browser/form_parsing/autofill_scanner.h"

namespace autofill {

// static
std::unique_ptr<FormField> PriceField::Parse(AutofillScanner* scanner,
                                             const LanguageCode& page_language,
                                             LogManager* log_manager) {
  AutofillField* field;
  const std::vector<MatchingPattern>& price_patterns =
      PatternProvider::GetInstance().GetMatchPatterns("PRICE", page_language);

  if (ParseFieldSpecifics(scanner, base::UTF8ToUTF16(kPriceRe),
                          MATCH_DEFAULT | MATCH_NUMBER | MATCH_SELECT |
                              MATCH_TEXT_AREA | MATCH_SEARCH,
                          price_patterns, &field, {log_manager, kPriceRe})) {
    return std::make_unique<PriceField>(field);
  }

  return nullptr;
}

PriceField::PriceField(const AutofillField* field) : field_(field) {}

void PriceField::AddClassifications(
    FieldCandidatesMap* field_candidates) const {
  AddClassification(field_, PRICE, kBasePriceParserScore, field_candidates);
}

}  // namespace autofill