This repository has been archived by the owner on Dec 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
changed id numbers generation algorithm.
- Loading branch information
1 parent
f95ec9e
commit 757750f
Showing
4 changed files
with
79 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
<?php | ||
|
||
namespace Faker\Provider\ar_SA; | ||
|
||
class Utils | ||
{ | ||
// ripped unashamedly from https://github.com/grahamking/darkcoding-credit-card/blob/master/gencc.php | ||
public static function generateLuhnNumber($prefix, $length) | ||
{ | ||
|
||
$number = $prefix; | ||
|
||
# generate digits | ||
|
||
while (strlen($number) < ($length - 1)) { | ||
$number .= mt_rand(0, 9); | ||
} | ||
|
||
# Calculate sum | ||
|
||
$sum = 0; | ||
$pos = 0; | ||
|
||
$reversedNumber = strrev($number); | ||
|
||
while ($pos < $length - 1) { | ||
|
||
$odd = $reversedNumber[$pos] * 2; | ||
if ($odd > 9) { | ||
$odd -= 9; | ||
} | ||
|
||
$sum += $odd; | ||
|
||
if ($pos != ($length - 2)) { | ||
|
||
$sum += $reversedNumber[$pos +1]; | ||
} | ||
$pos += 2; | ||
} | ||
|
||
# Calculate check digit | ||
|
||
$checkdigit = ((floor($sum/10) + 1) * 10 - $sum) % 10; | ||
$number .= $checkdigit; | ||
|
||
return $number; | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<?php | ||
|
||
namespace Faker\Test\Provider\ar_SA; | ||
|
||
use Faker\Generator; | ||
use Faker\Provider\ar_SA\Utils; | ||
use Faker\Calculator\Luhn; | ||
|
||
class UtilsTest extends \PHPUnit_Framework_TestCase | ||
{ | ||
|
||
public function testGeneretedNumber() | ||
{ | ||
$this->assertNotEmpty(Utils::generateLuhnNumber(1, 5)); | ||
} | ||
|
||
public function testIfGeneretedNumberIsLuhnien() | ||
{ | ||
$this->assertTrue(Luhn::isValid(Utils::generateLuhnNumber(443, 10))); | ||
$this->assertTrue(Luhn::isValid(Utils::generateLuhnNumber(5, 15))); | ||
$this->assertTrue(Luhn::isValid(Utils::generateLuhnNumber(203, 25))); | ||
} | ||
} |