gecko-dev/dom/payments/BasicCardPayment.cpp
Gabriele Svelto ace6d1063f Bug 1600545 - Remove useless inclusions of header files generated from IDL files in dom/ r=Ehsan
The inclusions were removed with the following very crude script and the
resulting breakage was fixed up by hand. The manual fixups did either
revert the changes done by the script, replace a generic header with a more
specific one or replace a header with a forward declaration.

find . -name "*.idl" | grep -v web-platform | grep -v third_party | while read path; do
    interfaces=$(grep "^\(class\|interface\).*:.*" "$path" | cut -d' ' -f2)
    if [ -n "$interfaces" ]; then
        if [[ "$interfaces" == *$'\n'* ]]; then
          regexp="\("
          for i in $interfaces; do regexp="$regexp$i\|"; done
          regexp="${regexp%%\\\|}\)"
        else
          regexp="$interfaces"
        fi
        interface=$(basename "$path")
        rg -l "#include.*${interface%%.idl}.h" . | while read path2; do
            hits=$(grep -v "#include.*${interface%%.idl}.h" "$path2" | grep -c "$regexp" )
            if [ $hits -eq 0 ]; then
                echo "Removing ${interface} from ${path2}"
                grep -v "#include.*${interface%%.idl}.h" "$path2" > "$path2".tmp
                mv -f "$path2".tmp "$path2"
            fi
        done
    fi
done

Differential Revision: https://phabricator.services.mozilla.com/D55442

--HG--
extra : moz-landing-system : lando
2019-12-06 09:24:56 +00:00

130 lines
4.0 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "BasicCardPayment.h"
#include "PaymentAddress.h"
#include "mozilla/ClearOnShutdown.h"
#include "nsArrayUtils.h"
#include "nsCharSeparatedTokenizer.h"
#include "nsDataHashtable.h"
namespace mozilla {
namespace dom {
namespace {
bool IsValidNetwork(const nsAString& aNetwork) {
return aNetwork.Equals(NS_LITERAL_STRING("amex")) ||
aNetwork.Equals(NS_LITERAL_STRING("cartebancaire")) ||
aNetwork.Equals(NS_LITERAL_STRING("diners")) ||
aNetwork.Equals(NS_LITERAL_STRING("discover")) ||
aNetwork.Equals(NS_LITERAL_STRING("jcb")) ||
aNetwork.Equals(NS_LITERAL_STRING("mastercard")) ||
aNetwork.Equals(NS_LITERAL_STRING("mir")) ||
aNetwork.Equals(NS_LITERAL_STRING("unionpay")) ||
aNetwork.Equals(NS_LITERAL_STRING("visa"));
}
} // end of namespace
StaticRefPtr<BasicCardService> gBasicCardService;
already_AddRefed<BasicCardService> BasicCardService::GetService() {
if (!gBasicCardService) {
gBasicCardService = new BasicCardService();
ClearOnShutdown(&gBasicCardService);
}
RefPtr<BasicCardService> service = gBasicCardService;
return service.forget();
}
bool BasicCardService::IsBasicCardPayment(const nsAString& aSupportedMethods) {
return aSupportedMethods.Equals(NS_LITERAL_STRING("basic-card"));
}
bool BasicCardService::IsValidBasicCardRequest(JSContext* aCx, JSObject* aData,
nsAString& aErrorMsg) {
if (!aData) {
return true;
}
JS::RootedValue data(aCx, JS::ObjectValue(*aData));
BasicCardRequest request;
if (!request.Init(aCx, data)) {
aErrorMsg.AssignLiteral(
"Fail to convert methodData.data to BasicCardRequest.");
return false;
}
for (const nsString& network : request.mSupportedNetworks) {
if (!IsValidNetwork(network)) {
aErrorMsg.Assign(network +
NS_LITERAL_STRING(" is not an valid network."));
return false;
}
}
return true;
}
bool BasicCardService::IsValidExpiryMonth(const nsAString& aExpiryMonth) {
// ExpiryMonth can only be
// 1. empty string
// 2. 01 ~ 12
if (aExpiryMonth.IsEmpty()) {
return true;
}
if (aExpiryMonth.Length() != 2) {
return false;
}
// can only be 00 ~ 09
if (aExpiryMonth.CharAt(0) == '0') {
if (aExpiryMonth.CharAt(1) < '0' || aExpiryMonth.CharAt(1) > '9') {
return false;
}
return true;
}
// can only be 11 or 12
if (aExpiryMonth.CharAt(0) == '1') {
if (aExpiryMonth.CharAt(1) != '1' && aExpiryMonth.CharAt(1) != '2') {
return false;
}
return true;
}
return false;
}
bool BasicCardService::IsValidExpiryYear(const nsAString& aExpiryYear) {
// ExpiryYear can only be
// 1. empty string
// 2. 0000 ~ 9999
if (!aExpiryYear.IsEmpty()) {
if (aExpiryYear.Length() != 4) {
return false;
}
for (uint32_t index = 0; index < 4; ++index) {
if (aExpiryYear.CharAt(index) < '0' || aExpiryYear.CharAt(index) > '9') {
return false;
}
}
}
return true;
}
void BasicCardService::CheckForValidBasicCardErrors(JSContext* aCx,
JSObject* aData,
ErrorResult& aRv) {
MOZ_ASSERT(aData, "Don't pass null data");
JS::RootedValue data(aCx, JS::ObjectValue(*aData));
// XXXbz Just because aData converts to BasicCardErrors right now doesn't mean
// it will if someone tries again! Should we be replacing aData with a
// conversion of the BasicCardErrors dictionary to a JS object in a clean
// compartment or something?
BasicCardErrors bcError;
if (!bcError.Init(aCx, data)) {
aRv.NoteJSContextException(aCx);
}
}
} // end of namespace dom
} // end of namespace mozilla