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
use Luhn to calculate ar_SA id numbers. #875
Merged
Merged
Changes from 6 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
d61f557
use Luhn to calculate ar_SA id numbers.
FooBarQuaxx 186c75a
added company id number for ar_SA provider.
FooBarQuaxx 5028351
fixed code style errors.
FooBarQuaxx d3ec0c9
fixed code style errors.
FooBarQuaxx f95ec9e
fixed array notation compat. issue for older php version.
FooBarQuaxx 757750f
changed id numbers generation algorithm.
FooBarQuaxx 74219b4
use faker utility class to generate luhnien numbers.
FooBarQuaxx 39f225c
fixed namespace cs issue.
FooBarQuaxx 78ae6d9
moved Luhn number generation to Luhn calculator class.
FooBarQuaxx ad9147d
separate calculation from random generation with luhn generator in ar…
FooBarQuaxx e2d48f8
fixed code style issues.
FooBarQuaxx File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. this would be better placed in |
||
{ | ||
|
||
$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))); | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You already have everything in
Faker\Calculator\Luhn
. No need to reimplement it here.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it good enough now?