jp_address 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +97 -0
- data/Rakefile +26 -0
- data/app/assets/javascripts/jp_address/application.js +13 -0
- data/app/assets/stylesheets/jp_address/application.css +15 -0
- data/app/controllers/jp_address/application_controller.rb +4 -0
- data/app/controllers/jp_address/zipcodes_controller.rb +10 -0
- data/app/helpers/jp_address/application_helper.rb +4 -0
- data/app/models/jp_address/zipcode.rb +82 -0
- data/app/views/layouts/jp_address/application.html.erb +14 -0
- data/config/routes.rb +3 -0
- data/db/migrate/20160312045953_create_jp_address_zipcodes.rb +10 -0
- data/lib/jp_address/engine.rb +10 -0
- data/lib/jp_address/version.rb +3 -0
- data/lib/jp_address.rb +9 -0
- data/lib/tasks/jp_address_tasks.rake +4 -0
- data/spec/controllers/jp_address/zipcodes_controller_spec.rb +25 -0
- data/spec/dummy/README.rdoc +28 -0
- data/spec/dummy/Rakefile +6 -0
- data/spec/dummy/app/assets/javascripts/application.js +13 -0
- data/spec/dummy/app/assets/stylesheets/application.css +15 -0
- data/spec/dummy/app/controllers/application_controller.rb +5 -0
- data/spec/dummy/app/helpers/application_helper.rb +2 -0
- data/spec/dummy/app/views/layouts/application.html.erb +14 -0
- data/spec/dummy/bin/bundle +3 -0
- data/spec/dummy/bin/rails +4 -0
- data/spec/dummy/bin/rake +4 -0
- data/spec/dummy/bin/setup +29 -0
- data/spec/dummy/config/application.rb +32 -0
- data/spec/dummy/config/boot.rb +5 -0
- data/spec/dummy/config/database.yml +25 -0
- data/spec/dummy/config/environment.rb +5 -0
- data/spec/dummy/config/environments/development.rb +41 -0
- data/spec/dummy/config/environments/production.rb +79 -0
- data/spec/dummy/config/environments/test.rb +42 -0
- data/spec/dummy/config/initializers/assets.rb +11 -0
- data/spec/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/spec/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/spec/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/spec/dummy/config/initializers/inflections.rb +16 -0
- data/spec/dummy/config/initializers/mime_types.rb +4 -0
- data/spec/dummy/config/initializers/session_store.rb +3 -0
- data/spec/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/spec/dummy/config/locales/en.yml +23 -0
- data/spec/dummy/config/routes.rb +3 -0
- data/spec/dummy/config/secrets.yml +22 -0
- data/spec/dummy/config.ru +4 -0
- data/spec/dummy/db/development.sqlite3 +0 -0
- data/spec/dummy/db/schema.rb +25 -0
- data/spec/dummy/db/test.sqlite3 +0 -0
- data/spec/dummy/log/development.log +94 -0
- data/spec/dummy/log/test.log +339 -0
- data/spec/dummy/public/404.html +67 -0
- data/spec/dummy/public/422.html +67 -0
- data/spec/dummy/public/500.html +66 -0
- data/spec/dummy/public/favicon.ico +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/12IZy0Kg85JEiQcCRYUMY0WrVHEdkMgrA7G08j930YU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/253HD8vijgocS-bRyHVbR3Dzm5uJNeuVCeCauWIWRf8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/2uOFAmswR309it0YNLEVmbVZyiX9EJWBbinBWjyNRx0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/4aDTBAJaIvo1TFYI0vJTFKYBDmI7XjTPFciorWDcsyk.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/5Lly_CA8DZvPhQV2jDQx-Y6P_y3Ygra9t5jfSlGhHDA.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/69Ny-heqQUOmGQ_0GcBB4J5b8RQZjPrgAF6LifZxpgk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/7ouFV29lbf5bzHhKXQH2NGfdaYMT8OqW3TIKe1ABuNs.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/942aiQdjYNWajz5VUTtaUTxyZBkhhxpq6219I0jYMa8.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9LI-ZO_LlzUzSODnhfiCGx69vYDKb-yTnd280ujysVo.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/9LzLG_vzjAf7pe050pFTyffRRVDzsU4VYFYMBOM0g3U.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/AhBkyHq-l-bB6dpyHinZOE7JH_YvG0POQNwk_AAfqco.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/EA7g6gkLHxw4eCDr1hNwhMzVQV6HTR--3uBJwg0T7Gc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/IsQWv9ae0UmBQVto4XgJHJf3OIsun2azqgENluezzgw.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/LrOkfegCiUn2D8SABgzKl7xSfnBUHoMDbBedoC3P-h4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/NOOlwk8slKyaGuSjS_iX4oaCxIN4dTyYcJAjiUVWOVk.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/OI6uxGcnsKavdWTtwDAasU3wPx8QXhzBgV0X2n1KjMQ.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/Ql8vgt2ktFX4tfoI0C53kO_GHCmmAJRmmowTDbtAimw.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/RPUX0Bt-77CDM4FCUc_Utl3S5ErxgrpkZK7qQucMGvc.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/TlrmYyd_w5T2Fs5LcMQ0lYWdrDekCOo-_qrrQC05KPI.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/WgrFnegPrsSNTONieBxtA-N3bBvn-e5a8DHo88uyOhU.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/YdmjZwigjr6l2Sd-fgvN6s7rfUWR2LtHcWWo7jVIqYY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/aCSG1Z1RSE03OleZszY1eo-b1cXIN2s4uP3HZvAp6sE.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/f2rHlaNoB9cFRX-xLMZq0no9HjRedEDg-AOUTKMUV5g.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/hZi1k6tpxxCGYxRe7zY74ItcOI8gZrREOpGuA8JSpGg.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lHlUabpE2TZv_Y7rZBSXynyvTgrc_bnK1P8eJ_0ifv4.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/lZ0oDq_sO844rDVEW1s5yAghM2KICOrOfIyKuQpT-Z0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/oqS0IfJ-I_LFqBdwIa1uZFLOlF62hCyOCgKgemnJoEI.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/pEhaat2KBd5SrT7szC_8R1_6hK17FTpvoRFkmCRSD3M.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/qge2ruqg_DxsMO2wq1BzbdTxpT2ktfT5ewP9nGce7gc.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/s9K8VdL31LlJzdcRIo82vzu0ednsJm7KLs8WNLV1Ycw.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/tN7T-0JFv1hq8Hb9xtUoHK2N5_3q72H7cjZpxTWT3NY.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/uqjaGTY9XyZiyOZjN2CJkssIcw11b9rZATi7FgoZwDk.cache +2 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/v3lgWmRHuE8JSZyrRM04K6CSe8VgYugbXxDQXknjnF0.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/vpPWGe-wWUYplBLlV5S9qVgufjluupjdyeOB4SXocdo.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/w4phgPuV3DXfdM7WipkyPI6TOMuTqzotEtGB-PyzNF4.cache +0 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zG66jVRwJEU-Jqbt9aWxIlQKeSuWJAVWqi2Qj91w2PU.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zPJPW4Mko5zmmRDei__9H3HwraRDuA-liVDWauxLEvg.cache +1 -0
- data/spec/dummy/tmp/cache/assets/sprockets/v3.0/zokKEtsBkyiagcapLIrloOC039ppkdRDQu7-eIp-sGU.cache +2 -0
- data/spec/factories/jp_address_zipcodes.rb +10 -0
- data/spec/models/jp_address/zipcode_spec.rb +29 -0
- data/spec/rails_helper.rb +15 -0
- data/spec/spec_helper.rb +92 -0
- data/spec/support/files/sample_ken.csv +5 -0
- data/spec/vcr/download_master_file_from_japanpost.yml +37476 -0
- metadata +327 -0
checksums.yaml
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
---
|
|
2
|
+
SHA1:
|
|
3
|
+
metadata.gz: 45abd003f1050456228956f25f942d426f7ce682
|
|
4
|
+
data.tar.gz: 8270ae79d703962df2e8108bfb2774e73f9b28d3
|
|
5
|
+
SHA512:
|
|
6
|
+
metadata.gz: c7a41d57de32d48ee3ec1440d4ca5762dde2a3e46dfd2c72ab5c2a75279d27b6f30c49779373988c0f5529d2fbe9ed67e80a17e2ac54577410b9f746c6190560
|
|
7
|
+
data.tar.gz: ddd986155a574e619b92cebfefc67aaec12c6c23217175947e297909f4b7744ebcd4c9c16527abe22590ac7ad3d85622765f3afe2ac0fb713e1bc9871bb3f1dc
|
data/MIT-LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Copyright 2016
|
|
2
|
+
|
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
4
|
+
a copy of this software and associated documentation files (the
|
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
9
|
+
the following conditions:
|
|
10
|
+
|
|
11
|
+
The above copyright notice and this permission notice shall be
|
|
12
|
+
included in all copies or substantial portions of the Software.
|
|
13
|
+
|
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
= JpAddress: A Rails plugin for Japan Zipcode API.
|
|
2
|
+
|
|
3
|
+
== JpAddressとは
|
|
4
|
+
日本郵便の「郵便番号データ」を Rails 4.0 で使用するためのプラグインです。
|
|
5
|
+
以下の機能を備えます。
|
|
6
|
+
|
|
7
|
+
* 郵便局提供の郵便番号データをダウンロードしてDBにロード
|
|
8
|
+
* 郵便番号をキーに住所情報を返却するAPI(コントローラ)。
|
|
9
|
+
|
|
10
|
+
== インストール
|
|
11
|
+
% gem install jp_address
|
|
12
|
+
|
|
13
|
+
GemFileに追記
|
|
14
|
+
gem 'jp_address'
|
|
15
|
+
|
|
16
|
+
テーブルの作成
|
|
17
|
+
% rake jp_address:install:migrations
|
|
18
|
+
% rake db:migrate
|
|
19
|
+
|
|
20
|
+
== マスターデータのDBへのロード
|
|
21
|
+
開発環境
|
|
22
|
+
% rails runner -e development 'JpAddress::Zipcode.load_master_data'
|
|
23
|
+
本番環境
|
|
24
|
+
% rails runner -e production 'JpAddress::Zipcode.load_master_data'
|
|
25
|
+
|
|
26
|
+
環境にもよりますが、1~3分ぐらいかかると思います。
|
|
27
|
+
|
|
28
|
+
※ APP_ROOT/tmp/ を作業ディレクトリに使用しています。
|
|
29
|
+
|
|
30
|
+
== APIのマウント
|
|
31
|
+
マウントしたいRailsアプリの config/routes.rb に追記。
|
|
32
|
+
mount JpAddress::Engine, at: "/jp_address"
|
|
33
|
+
|
|
34
|
+
== APIの利用
|
|
35
|
+
/jp_address にマウントした場合、下記URLへGETリクエストをすることで、JSONを取得できます。
|
|
36
|
+
後はこれを好きに加工してテキストボックスなどにセットして使ってください。
|
|
37
|
+
|
|
38
|
+
http://localhost:3000/jp_address/zipcodes/search?zip=5330033
|
|
39
|
+
|
|
40
|
+
{"id":84280,"zip":"5330033","prefecture":"大阪府","city":"大阪市東淀川区","town":"東中島"}
|
|
41
|
+
|
|
42
|
+
== サンプルとなる coffee script
|
|
43
|
+
フォームには
|
|
44
|
+
* zipcode(テキストボックス)
|
|
45
|
+
* prefecture_id(セレクトボックス。いわゆる都道府県プルダウン)
|
|
46
|
+
* address(テキストボックス)
|
|
47
|
+
の3要素があり、zipcodeに入れられた値を元にAPIを叩き、prefecture_id と address に
|
|
48
|
+
値をセットするサンプルです。
|
|
49
|
+
|
|
50
|
+
prefecture_id の選択は、都道府県名で行っています。
|
|
51
|
+
なので、お使いの都道府県マスターのID値に影響を受けることなく選択できるはずです。
|
|
52
|
+
|
|
53
|
+
class AddressSearch
|
|
54
|
+
constructor: (zip_elem_id, prefecture_elem_id, address_elem_id) ->
|
|
55
|
+
@$zip = $(zip_elem_id)
|
|
56
|
+
@$prefecture = $(prefecture_elem_id)
|
|
57
|
+
@$address = $(address_elem_id)
|
|
58
|
+
@prefecture_elem_id = prefecture_elem_id
|
|
59
|
+
|
|
60
|
+
_remove_hyphen: ->
|
|
61
|
+
@$zip.val(@$zip.val().replace(/-/, ''))
|
|
62
|
+
|
|
63
|
+
_clear_current_value: ->
|
|
64
|
+
$(@prefecture_elem_id + ' >option:eq(0)').prop 'selected', true
|
|
65
|
+
@$address.val ''
|
|
66
|
+
|
|
67
|
+
_set_prefecture: (json) ->
|
|
68
|
+
$(@prefecture_elem_id + ' > option').each ->
|
|
69
|
+
if $(@).text() == json['prefecture']
|
|
70
|
+
$(@).prop 'selected', true
|
|
71
|
+
|
|
72
|
+
_set_address: (json) ->
|
|
73
|
+
@$address.val json['city'] + json['town']
|
|
74
|
+
|
|
75
|
+
_call_api: ->
|
|
76
|
+
$.getJSON '/jp_address/zipcodes/search', {zip: @$zip.val()}, (json) =>
|
|
77
|
+
if json['id'] == null
|
|
78
|
+
@._clear_current_value()
|
|
79
|
+
else
|
|
80
|
+
@._set_prefecture json
|
|
81
|
+
@._set_address json
|
|
82
|
+
|
|
83
|
+
execute: ->
|
|
84
|
+
@._remove_hyphen()
|
|
85
|
+
if @$zip.val().length == 7
|
|
86
|
+
@._call_api()
|
|
87
|
+
|
|
88
|
+
$ ->
|
|
89
|
+
address_search = new AddressSearch('#zipcode', '#prefecture_id', '#address')
|
|
90
|
+
$('#zipcode').keyup ->
|
|
91
|
+
address_search.execute()
|
|
92
|
+
|
|
93
|
+
== 作者
|
|
94
|
+
|
|
95
|
+
Copyright 2016 (c) Tadashi K, under MIT License.
|
|
96
|
+
|
|
97
|
+
Tadashi K <densya203@skult.jp>
|
data/Rakefile
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
begin
|
|
2
|
+
require 'bundler/setup'
|
|
3
|
+
rescue LoadError
|
|
4
|
+
puts 'You must `gem install bundler` and `bundle install` to run rake tasks'
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
require 'rdoc/task'
|
|
8
|
+
|
|
9
|
+
RDoc::Task.new(:rdoc) do |rdoc|
|
|
10
|
+
rdoc.rdoc_dir = 'rdoc'
|
|
11
|
+
rdoc.title = 'JpAddress'
|
|
12
|
+
rdoc.options << '--line-numbers'
|
|
13
|
+
rdoc.rdoc_files.include('README.rdoc')
|
|
14
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
APP_RAKEFILE = File.expand_path("../spec/dummy/Rakefile", __FILE__)
|
|
18
|
+
load 'rails/tasks/engine.rake'
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
load 'rails/tasks/statistics.rake'
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
Bundler::GemHelper.install_tasks
|
|
26
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
|
2
|
+
// listed below.
|
|
3
|
+
//
|
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
|
5
|
+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
|
6
|
+
//
|
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
8
|
+
// compiled file.
|
|
9
|
+
//
|
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
|
11
|
+
// about supported directives.
|
|
12
|
+
//
|
|
13
|
+
//= require_tree .
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
+
* listed below.
|
|
4
|
+
*
|
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
|
7
|
+
*
|
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any styles
|
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
|
11
|
+
* file per style scope.
|
|
12
|
+
*
|
|
13
|
+
*= require_tree .
|
|
14
|
+
*= require_self
|
|
15
|
+
*/
|
|
@@ -0,0 +1,82 @@
|
|
|
1
|
+
module JpAddress
|
|
2
|
+
class Zipcode < ActiveRecord::Base
|
|
3
|
+
|
|
4
|
+
MASTER_CSV_PATH = 'tmp/ken_all.csv'
|
|
5
|
+
|
|
6
|
+
def self.download_master_file_from_japanpost
|
|
7
|
+
_setup_directory
|
|
8
|
+
zip = _save_zip(_request_to_japanpost.body)
|
|
9
|
+
_save_csv(zip.path)
|
|
10
|
+
:success if File.exist?(MASTER_CSV_PATH)
|
|
11
|
+
end
|
|
12
|
+
|
|
13
|
+
def self._setup_directory
|
|
14
|
+
FileUtils.mkdir_p 'tmp'
|
|
15
|
+
_remove_csv
|
|
16
|
+
end
|
|
17
|
+
private_class_method :_setup_directory
|
|
18
|
+
|
|
19
|
+
def self._request_to_japanpost
|
|
20
|
+
url = URI.parse('http://www.post.japanpost.jp/zipcode/dl/kogaki/zip/ken_all.zip')
|
|
21
|
+
res = Net::HTTP.start(url.host, url.port) do |http|
|
|
22
|
+
http.get('/zipcode/dl/kogaki/zip/ken_all.zip')
|
|
23
|
+
end
|
|
24
|
+
res
|
|
25
|
+
end
|
|
26
|
+
private_class_method :_request_to_japanpost
|
|
27
|
+
|
|
28
|
+
def self._save_zip(binary)
|
|
29
|
+
tmp_zip = Tempfile.open('ken_all.zip') do |f|
|
|
30
|
+
f.binmode
|
|
31
|
+
f.write binary
|
|
32
|
+
f
|
|
33
|
+
end
|
|
34
|
+
tmp_zip
|
|
35
|
+
end
|
|
36
|
+
private_class_method :_save_zip
|
|
37
|
+
|
|
38
|
+
def self._save_csv(zip_path)
|
|
39
|
+
Zip::File.open(zip_path) do |zip_file|
|
|
40
|
+
zip_file.each do |entry|
|
|
41
|
+
entry.extract(MASTER_CSV_PATH)
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
private_class_method :_save_csv
|
|
46
|
+
|
|
47
|
+
def self.load_master_data(csv_path = MASTER_CSV_PATH)
|
|
48
|
+
download_master_file_from_japanpost if !File.exist?(csv_path)
|
|
49
|
+
_clear_table
|
|
50
|
+
CSV.foreach(csv_path, encoding:'SJIS:UTF-8') do |row|
|
|
51
|
+
connection.execute(
|
|
52
|
+
sanitize_sql(
|
|
53
|
+
["insert into jp_address_zipcodes (zip, prefecture, city, town)
|
|
54
|
+
values ('%s', '%s', '%s', '%s')", row[2], row[6], row[7], _remove_needless_words(row[8])
|
|
55
|
+
]
|
|
56
|
+
)
|
|
57
|
+
)
|
|
58
|
+
end
|
|
59
|
+
_remove_csv
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
def self._clear_table
|
|
63
|
+
begin
|
|
64
|
+
connection.truncate 'jp_address_zipcodes'
|
|
65
|
+
rescue NotImplementedError
|
|
66
|
+
connection.execute 'delete from jp_address_zipcodes'
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
private_class_method :_clear_table
|
|
70
|
+
|
|
71
|
+
def self._remove_needless_words(base)
|
|
72
|
+
base.sub(/以下に掲載がない場合/, '').sub(/(.*/, '')
|
|
73
|
+
end
|
|
74
|
+
private_class_method :_remove_needless_words
|
|
75
|
+
|
|
76
|
+
def self._remove_csv
|
|
77
|
+
FileUtils.rm_rf MASTER_CSV_PATH
|
|
78
|
+
end
|
|
79
|
+
private_class_method :_remove_csv
|
|
80
|
+
|
|
81
|
+
end
|
|
82
|
+
end
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>JpAddress</title>
|
|
5
|
+
<%= stylesheet_link_tag "jp_address/application", media: "all" %>
|
|
6
|
+
<%= javascript_include_tag "jp_address/application" %>
|
|
7
|
+
<%= csrf_meta_tags %>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
|
|
11
|
+
<%= yield %>
|
|
12
|
+
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
data/config/routes.rb
ADDED
data/lib/jp_address.rb
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
require 'rails_helper'
|
|
2
|
+
|
|
3
|
+
module JpAddress
|
|
4
|
+
RSpec.describe ZipcodesController, type: :controller do
|
|
5
|
+
routes { JpAddress::Engine.routes }
|
|
6
|
+
|
|
7
|
+
describe "GET #search" do
|
|
8
|
+
it "returns http success" do
|
|
9
|
+
get :search
|
|
10
|
+
expect(response).to have_http_status(:success)
|
|
11
|
+
end
|
|
12
|
+
it "returns valid data when a vaild zip is passed" do
|
|
13
|
+
create(:jp_address_zipcode)
|
|
14
|
+
get :search, zip: '5330033'
|
|
15
|
+
expect(response.body).to match '"zip":"5330033","prefecture":"大阪府","city":"大阪市東淀川区","town":"東中島"'
|
|
16
|
+
end
|
|
17
|
+
it "returns empty data when a invaild zip is passed" do
|
|
18
|
+
create(:jp_address_zipcode)
|
|
19
|
+
get :search, zip: '9999999'
|
|
20
|
+
expect(response.body).to match '"id":null,"zip":null,"prefecture":null,"city":null,"town":null'
|
|
21
|
+
end
|
|
22
|
+
end
|
|
23
|
+
|
|
24
|
+
end
|
|
25
|
+
end
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
== README
|
|
2
|
+
|
|
3
|
+
This README would normally document whatever steps are necessary to get the
|
|
4
|
+
application up and running.
|
|
5
|
+
|
|
6
|
+
Things you may want to cover:
|
|
7
|
+
|
|
8
|
+
* Ruby version
|
|
9
|
+
|
|
10
|
+
* System dependencies
|
|
11
|
+
|
|
12
|
+
* Configuration
|
|
13
|
+
|
|
14
|
+
* Database creation
|
|
15
|
+
|
|
16
|
+
* Database initialization
|
|
17
|
+
|
|
18
|
+
* How to run the test suite
|
|
19
|
+
|
|
20
|
+
* Services (job queues, cache servers, search engines, etc.)
|
|
21
|
+
|
|
22
|
+
* Deployment instructions
|
|
23
|
+
|
|
24
|
+
* ...
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
Please feel free to use a different markup language if you do not plan to run
|
|
28
|
+
<tt>rake doc:app</tt>.
|
data/spec/dummy/Rakefile
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
// This is a manifest file that'll be compiled into application.js, which will include all the files
|
|
2
|
+
// listed below.
|
|
3
|
+
//
|
|
4
|
+
// Any JavaScript/Coffee file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
|
|
5
|
+
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
|
|
6
|
+
//
|
|
7
|
+
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
|
|
8
|
+
// compiled file.
|
|
9
|
+
//
|
|
10
|
+
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
|
|
11
|
+
// about supported directives.
|
|
12
|
+
//
|
|
13
|
+
//= require_tree .
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* This is a manifest file that'll be compiled into application.css, which will include all the files
|
|
3
|
+
* listed below.
|
|
4
|
+
*
|
|
5
|
+
* Any CSS and SCSS file within this directory, lib/assets/stylesheets, vendor/assets/stylesheets,
|
|
6
|
+
* or any plugin's vendor/assets/stylesheets directory can be referenced here using a relative path.
|
|
7
|
+
*
|
|
8
|
+
* You're free to add application-wide styles to this file and they'll appear at the bottom of the
|
|
9
|
+
* compiled file so the styles you add here take precedence over styles defined in any styles
|
|
10
|
+
* defined in the other CSS/SCSS files in this directory. It is generally better to create a new
|
|
11
|
+
* file per style scope.
|
|
12
|
+
*
|
|
13
|
+
*= require_tree .
|
|
14
|
+
*= require_self
|
|
15
|
+
*/
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<title>Dummy</title>
|
|
5
|
+
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %>
|
|
6
|
+
<%= javascript_include_tag 'application', 'data-turbolinks-track' => true %>
|
|
7
|
+
<%= csrf_meta_tags %>
|
|
8
|
+
</head>
|
|
9
|
+
<body>
|
|
10
|
+
|
|
11
|
+
<%= yield %>
|
|
12
|
+
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
data/spec/dummy/bin/rake
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
#!/usr/bin/env ruby
|
|
2
|
+
require 'pathname'
|
|
3
|
+
|
|
4
|
+
# path to your application root.
|
|
5
|
+
APP_ROOT = Pathname.new File.expand_path('../../', __FILE__)
|
|
6
|
+
|
|
7
|
+
Dir.chdir APP_ROOT do
|
|
8
|
+
# This script is a starting point to setup your application.
|
|
9
|
+
# Add necessary setup steps to this file:
|
|
10
|
+
|
|
11
|
+
puts "== Installing dependencies =="
|
|
12
|
+
system "gem install bundler --conservative"
|
|
13
|
+
system "bundle check || bundle install"
|
|
14
|
+
|
|
15
|
+
# puts "\n== Copying sample files =="
|
|
16
|
+
# unless File.exist?("config/database.yml")
|
|
17
|
+
# system "cp config/database.yml.sample config/database.yml"
|
|
18
|
+
# end
|
|
19
|
+
|
|
20
|
+
puts "\n== Preparing database =="
|
|
21
|
+
system "bin/rake db:setup"
|
|
22
|
+
|
|
23
|
+
puts "\n== Removing old logs and tempfiles =="
|
|
24
|
+
system "rm -f log/*"
|
|
25
|
+
system "rm -rf tmp/cache"
|
|
26
|
+
|
|
27
|
+
puts "\n== Restarting application server =="
|
|
28
|
+
system "touch tmp/restart.txt"
|
|
29
|
+
end
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
require File.expand_path('../boot', __FILE__)
|
|
2
|
+
|
|
3
|
+
# Pick the frameworks you want:
|
|
4
|
+
require "active_record/railtie"
|
|
5
|
+
require "action_controller/railtie"
|
|
6
|
+
require "action_mailer/railtie"
|
|
7
|
+
require "action_view/railtie"
|
|
8
|
+
require "sprockets/railtie"
|
|
9
|
+
# require "rails/test_unit/railtie"
|
|
10
|
+
|
|
11
|
+
Bundler.require(*Rails.groups)
|
|
12
|
+
require "jp_address"
|
|
13
|
+
|
|
14
|
+
module Dummy
|
|
15
|
+
class Application < Rails::Application
|
|
16
|
+
# Settings in config/environments/* take precedence over those specified here.
|
|
17
|
+
# Application configuration should go into files in config/initializers
|
|
18
|
+
# -- all .rb files in that directory are automatically loaded.
|
|
19
|
+
|
|
20
|
+
# Set Time.zone default to the specified zone and make Active Record auto-convert to this zone.
|
|
21
|
+
# Run "rake -D time" for a list of tasks for finding time zone names. Default is UTC.
|
|
22
|
+
# config.time_zone = 'Central Time (US & Canada)'
|
|
23
|
+
|
|
24
|
+
# The default locale is :en and all translations from config/locales/*.rb,yml are auto loaded.
|
|
25
|
+
# config.i18n.load_path += Dir[Rails.root.join('my', 'locales', '*.{rb,yml}').to_s]
|
|
26
|
+
# config.i18n.default_locale = :de
|
|
27
|
+
|
|
28
|
+
# Do not swallow errors in after_commit/after_rollback callbacks.
|
|
29
|
+
config.active_record.raise_in_transactional_callbacks = true
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# SQLite version 3.x
|
|
2
|
+
# gem install sqlite3
|
|
3
|
+
#
|
|
4
|
+
# Ensure the SQLite 3 gem is defined in your Gemfile
|
|
5
|
+
# gem 'sqlite3'
|
|
6
|
+
#
|
|
7
|
+
default: &default
|
|
8
|
+
adapter: sqlite3
|
|
9
|
+
pool: 5
|
|
10
|
+
timeout: 5000
|
|
11
|
+
|
|
12
|
+
development:
|
|
13
|
+
<<: *default
|
|
14
|
+
database: db/development.sqlite3
|
|
15
|
+
|
|
16
|
+
# Warning: The database defined as "test" will be erased and
|
|
17
|
+
# re-generated from your development database when you run "rake".
|
|
18
|
+
# Do not set this db to the same as development or production.
|
|
19
|
+
test:
|
|
20
|
+
<<: *default
|
|
21
|
+
database: db/test.sqlite3
|
|
22
|
+
|
|
23
|
+
production:
|
|
24
|
+
<<: *default
|
|
25
|
+
database: db/production.sqlite3
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
Rails.application.configure do
|
|
2
|
+
# Settings specified here will take precedence over those in config/application.rb.
|
|
3
|
+
|
|
4
|
+
# In the development environment your application's code is reloaded on
|
|
5
|
+
# every request. This slows down response time but is perfect for development
|
|
6
|
+
# since you don't have to restart the web server when you make code changes.
|
|
7
|
+
config.cache_classes = false
|
|
8
|
+
|
|
9
|
+
# Do not eager load code on boot.
|
|
10
|
+
config.eager_load = false
|
|
11
|
+
|
|
12
|
+
# Show full error reports and disable caching.
|
|
13
|
+
config.consider_all_requests_local = true
|
|
14
|
+
config.action_controller.perform_caching = false
|
|
15
|
+
|
|
16
|
+
# Don't care if the mailer can't send.
|
|
17
|
+
config.action_mailer.raise_delivery_errors = false
|
|
18
|
+
|
|
19
|
+
# Print deprecation notices to the Rails logger.
|
|
20
|
+
config.active_support.deprecation = :log
|
|
21
|
+
|
|
22
|
+
# Raise an error on page load if there are pending migrations.
|
|
23
|
+
config.active_record.migration_error = :page_load
|
|
24
|
+
|
|
25
|
+
# Debug mode disables concatenation and preprocessing of assets.
|
|
26
|
+
# This option may cause significant delays in view rendering with a large
|
|
27
|
+
# number of complex assets.
|
|
28
|
+
config.assets.debug = true
|
|
29
|
+
|
|
30
|
+
# Asset digests allow you to set far-future HTTP expiration dates on all assets,
|
|
31
|
+
# yet still be able to expire them through the digest params.
|
|
32
|
+
config.assets.digest = true
|
|
33
|
+
|
|
34
|
+
# Adds additional error checking when serving assets at runtime.
|
|
35
|
+
# Checks for improperly declared sprockets dependencies.
|
|
36
|
+
# Raises helpful error messages.
|
|
37
|
+
config.assets.raise_runtime_errors = true
|
|
38
|
+
|
|
39
|
+
# Raises error for missing translations
|
|
40
|
+
# config.action_view.raise_on_missing_translations = true
|
|
41
|
+
end
|