Skip to content

Commit

Permalink
Add support for querying government registry
Browse files Browse the repository at this point in the history
  • Loading branch information
krmbzds committed Jul 6, 2023
1 parent c8ddf54 commit 3dc1244
Show file tree
Hide file tree
Showing 8 changed files with 478 additions and 13 deletions.
27 changes: 25 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
[![Status](https://img.shields.io/github/actions/workflow/status/krmbzds/turkish_id/test.yml?branch=master)](https://github.com/krmbzds/turkish_id/actions/workflows/test.yml)
[![Coverage](https://img.shields.io/coveralls/github/krmbzds/turkish_id)](https://coveralls.io/github/krmbzds/turkish_id)
[![Downloads](https://img.shields.io/gem/dt/turkish_id.svg)](https://rubygems.org/gems/turkish_id)
[![Dependencies](https://img.shields.io/badge/dependencies-none-brightgreen.svg)](https://rubygems.org/gems/turkish_id)
[![Dependencies](https://img.shields.io/badge/dependencies-1-yellowgreen.svg)](https://rubygems.org/gems/turkish_id)
[![Maintainability](https://img.shields.io/codeclimate/maintainability/krmbzds/turkish_id)](https://codeclimate.com/github/krmbzds/turkish_id)
[![Version](https://img.shields.io/gem/v/turkish_id.svg)](https://github.com/krmbzds/turkish_id)
[![Docs](https://img.shields.io/badge/rubydoc-info-blue.svg)](https://www.rubydoc.info/gems/turkish_id)
Expand Down Expand Up @@ -51,6 +51,29 @@ $ turkish_id 10000000079 #=> false
$ echo $? #=> 1
```

### Querying the Government Registry

Create a new instance:

```rb
identity_number = TurkishId.new(10000000146)
```

Use ```registered?``` method to query the government registry:

```rb
identity_number.registered?("Ahmet", "Yılmaz", 1987) #=> false
```

Or use the command line executable:

```sh
$ turkish_id 10000000078 Ahmet Yılmaz 2000 #=> true
$ echo $? #=> 0
$ turkish_id 19930509666 Cypher Punk 1984 #=> false
$ echo $? #=> 1
```

### Generating Relatives

You can generate ID numbers for your younger or elder relatives.
Expand Down Expand Up @@ -99,7 +122,7 @@ There are three conditions for a valid identification number:

Where ```dn``` refers to the ```n-th``` digit of the identification number.

Remember that a valid identification number does not imply the existence of an ID. It could only be used as a preliminary check e.g. before querying a government website. This is very similar to credit card validation.
Remember that a valid identification number does not imply the existence of an ID. It could only be used as a preliminary check e.g. before [querying a government website](#querying-the-government-registry). This is very similar to credit card validation.

## Support

Expand Down
38 changes: 29 additions & 9 deletions bin/turkish_id
Original file line number Diff line number Diff line change
Expand Up @@ -5,21 +5,41 @@ lib = File.expand_path(File.dirname(__FILE__) + "/../lib")
$LOAD_PATH.unshift(lib) if File.directory?(lib) && !$LOAD_PATH.include?(lib)

require "turkish_id"
require "turkish_id/version"

@help = '
HELP = '
Usage
turkish_id QUERY
turkish_id ID_NUMBER [GIVEN_NAME SURNAME YEAR_OF_BIRTH]
Description
turkish_id validates Turkish identity numbers.
Only providing ID_NUMBER performs numerical validation (offline).
Providing all arguments will query government registry (online).
Examples
turkish_id 10000000078
turkish_id 10000000146
turkish_id 10000000146 Ahmet Yılmaz 1984
turkish_id 10005999902 "Ayşe Nur" Yılmaz 1996
'

if ARGV[0]
result = TurkishId.new(ARGV[0]).valid?
$stdout.puts result
exit result ? 0 : 1
else
$stdout.puts @help
result =
case ARGV.length
when 1 then TurkishId.new(ARGV[0]).valid?
when 4 then TurkishId.new(ARGV[0]).registered?(ARGV[1], ARGV[2], ARGV[3])
else $stdout.puts HELP
exit 1
end

if ["-?", "-h", "--help", "--usage"].include?(ARGV[0])
$stdout.puts HELP
exit 1
end

if ["-v", "-V", "--version"].include?(ARGV[0])
$stdout.puts TurkishId::VERSION
exit 0
end

$stdout.puts result
exit result ? 0 : 1
19 changes: 19 additions & 0 deletions lib/turkish_id.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# frozen_string_literal: true

require "turkish_id/version"
require "savon"

class TurkishId
attr_reader :id_number, :checksum, :elder_relative, :younger_relative
Expand All @@ -19,6 +20,10 @@ def valid?
true
end

def registered?(given_name, surname, year_of_birth)
valid? && query_government_registry(given_name, surname, year_of_birth)
end

private

def calculate_checksum(id_array)
Expand Down Expand Up @@ -76,4 +81,18 @@ def join_num(id_array)
def get_core(id_array)
join_num(split_num(id_array).take(9))
end

def query_government_registry(given_name, surname, year_of_birth)
client = Savon.client(wsdl: "https://tckimlik.nvi.gov.tr/Service/KPSPublic.asmx?WSDL")
response = client.call(:tc_kimlik_no_dogrula, message: {
"TCKimlikNo" => join_num(@id_number),
"Ad" => given_name.upcase(:turkic),
"Soyad" => surname.upcase(:turkic),
"DogumYili" => String(Date.new(Integer(year_of_birth)).year)
})

response.body.dig(:tc_kimlik_no_dogrula_response, :tc_kimlik_no_dogrula_result).is_a?(TrueClass)
rescue TypeError, ArgumentError, NoMethodError
false
end
end

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 3dc1244

Please sign in to comment.