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
|
<?php
/* CreditCardFraudDetection.php
*
* Copyright (C) 2008 MaxMind, Inc.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
require_once ("HTTPBase.php");
class CreditCardFraudDetection extends HTTPBase {
var $server;
var $numservers;
var $API_VERSION;
function CreditCardFraudDetection() {
$this->HTTPBase();
$this->isSecure = 1; // use HTTPS by default
//set the allowed_fields hash
$this->allowed_fields["i"] = 1;
$this->allowed_fields["domain"] = 1;
$this->allowed_fields["city"] = 1;
$this->allowed_fields["region"] = 1;
$this->allowed_fields["postal"] = 1;
$this->allowed_fields["country"] = 1;
$this->allowed_fields["bin"] = 1;
$this->allowed_fields["binName"] = 1;
$this->allowed_fields["binPhone"] = 1;
$this->allowed_fields["custPhone"] = 1;
$this->allowed_fields["license_key"] = 1;
$this->allowed_fields["requested_type"] = 1;
$this->allowed_fields["forwardedIP"] = 1;
$this->allowed_fields["emailMD5"] = 1;
$this->allowed_fields["shipAddr"] = 1;
$this->allowed_fields["shipCity"] = 1;
$this->allowed_fields["shipRegion"] = 1;
$this->allowed_fields["shipPostal"] = 1;
$this->allowed_fields["shipCountry"] = 1;
$this->allowed_fields["txnID"] = 1;
$this->allowed_fields["sessionID"] = 1;
$this->allowed_fields["usernameMD5"] = 1;
$this->allowed_fields["passwordMD5"] = 1;
$this->allowed_fields["user_agent"] = 1;
$this->allowed_fields["accept_language"] = 1;
$this->num_allowed_fields = count($this->allowed_fields);
//set the url of the web service
$this->url = "app/ccv2r";
$this->check_field = "score";
$this->server = array("minfraud3.maxmind.com", "minfraud1.maxmind.com", "minfraud2.maxmind.com");
$this->numservers = count($this->server);
$this->API_VERSION = 'PHP/1.49';
}
function filter_field($key, $value) {
if ($key == 'emailMD5'){
if (preg_match('/\@/',$value)){
return md5(strtolower($value));
}
} else if ($key == 'usernameMD5' || $key == 'passwordMD5') {
if (strlen($value) != 32) {
return md5(strtolower($value));
}
}
return $value;
}
}
?>
|