br_db 0.1.0
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.md +40 -0
- data/Rakefile +8 -0
- data/app/assets/stylesheets/brdb/application.css +15 -0
- data/app/controllers/brdb/application_controller.rb +4 -0
- data/app/controllers/brdb/import_cities_controller.rb +8 -0
- data/app/controllers/brdb/import_companies_controller.rb +8 -0
- data/app/controllers/brdb/import_countries_controller.rb +8 -0
- data/app/controllers/brdb/import_states_controller.rb +8 -0
- data/app/controllers/brdb/import_zip_codes_controller.rb +8 -0
- data/app/helpers/brdb/application_helper.rb +4 -0
- data/app/helpers/brdb/import_companies_helper.rb +4 -0
- data/app/helpers/brdb/import_countries_helper.rb +4 -0
- data/app/helpers/brdb/import_states_helper.rb +4 -0
- data/app/helpers/brdb/import_zip_codes_helper.rb +4 -0
- data/app/helpers/brdb/imports_helper.rb +4 -0
- data/app/jobs/brdb/application_job.rb +4 -0
- data/app/jobs/brdb/load_cities_job.rb +17 -0
- data/app/jobs/brdb/load_companies_job.rb +148 -0
- data/app/jobs/brdb/load_countries_job.rb +18 -0
- data/app/jobs/brdb/load_states_job.rb +17 -0
- data/app/jobs/brdb/load_zip_codes_job.rb +121 -0
- data/app/mailers/brdb/application_mailer.rb +6 -0
- data/app/models/brdb/application_record.rb +5 -0
- data/app/models/brdb/city.rb +4 -0
- data/app/models/brdb/cnae.rb +4 -0
- data/app/models/brdb/company.rb +4 -0
- data/app/models/brdb/country.rb +4 -0
- data/app/models/brdb/state.rb +4 -0
- data/app/models/brdb/zip_code.rb +4 -0
- data/app/views/layouts/brdb/application.html.erb +17 -0
- data/config/routes.rb +7 -0
- data/db/migrate/20241209190243_create_brdb_countries.rb +11 -0
- data/db/migrate/20241209190300_create_brdb_states.rb +10 -0
- data/db/migrate/20241209190403_create_brdb_cities.rb +11 -0
- data/db/migrate/20241209202503_create_brdb_zip_codes.rb +16 -0
- data/db/migrate/20241210125732_create_brdb_companies.rb +25 -0
- data/db/migrate/20241210130730_create_brdb_cnaes.rb +10 -0
- data/lib/brdb/engine.rb +5 -0
- data/lib/brdb/version.rb +3 -0
- data/lib/brdb.rb +6 -0
- data/lib/tasks/brdb_tasks.rake +4 -0
- metadata +102 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 45b4a2cc6e85d14a69fd9e1d3c2fd37504215841ba20098fa58e01927afe0eff
|
4
|
+
data.tar.gz: e1ad089a2fd355c501737dc44b0b43e16244b0d8ce6c33221d9b2b97e8faa4cb
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: a5d3822a1d31e2abed2e478acdb3c1252815af430f94753035c4100a3a74802a84c5cd1eb3a5632331796f7d672dbcc2648ae1f6c2d795cd746c90e1c778d3d8
|
7
|
+
data.tar.gz: dd0d59e37f841c24818356b4a619b6af049e8fc0526b76ea97531b71c3d6a110f17248d701d499db2d25415914d828f032861f6a9de8a719e129f785f6901baf
|
data/MIT-LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright Ulisses Caon
|
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.md
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
# Brdb
|
2
|
+
A rails engine to add all the necessary Brazilian data to your app
|
3
|
+
|
4
|
+
# Currently importing:
|
5
|
+
|
6
|
+
- [x] ZipCodes (you'll need to buy a key from the [Brazilian Correios](https://www.correios.com.br/educacao-e-cultura/filatelia/compre-seu-selo-aqui/compre-seu-selo-aqui))
|
7
|
+
- [x] Cities
|
8
|
+
- [x] States
|
9
|
+
- [ ] Company Data - (WIP - Importing data from dados.gov.br)
|
10
|
+
|
11
|
+
## Usage
|
12
|
+
Each data point has a corresponding ActiveJob job, so you can manage the download process in parallel.
|
13
|
+
|
14
|
+
## Installation
|
15
|
+
Add this line to your application's Gemfile:
|
16
|
+
|
17
|
+
```ruby
|
18
|
+
gem "brdb"
|
19
|
+
```
|
20
|
+
|
21
|
+
And then execute:
|
22
|
+
```bash
|
23
|
+
$ bundle
|
24
|
+
```
|
25
|
+
|
26
|
+
Or install it yourself as:
|
27
|
+
```bash
|
28
|
+
$ gem install brdb
|
29
|
+
```
|
30
|
+
|
31
|
+
## Contributing
|
32
|
+
Fork, open a PR.
|
33
|
+
|
34
|
+
|
35
|
+
## TODO:
|
36
|
+
- [ ] Finish up company data import
|
37
|
+
- [ ] Add tests
|
38
|
+
|
39
|
+
## License
|
40
|
+
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
data/Rakefile
ADDED
@@ -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 other CSS/SCSS
|
10
|
+
* files in this directory. Styles in this file should be added after the last require_* statement.
|
11
|
+
* It is generally better to create a new file per style scope.
|
12
|
+
*
|
13
|
+
*= require_tree .
|
14
|
+
*= require_self
|
15
|
+
*/
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Brdb
|
2
|
+
class LoadCitiesJob < ApplicationJob
|
3
|
+
queue_as :default
|
4
|
+
|
5
|
+
def perform(*args)
|
6
|
+
resp = HTTParty.get("https://servicodados.ibge.gov.br/api/v1/localidades/municipios")
|
7
|
+
cities = JSON.parse(resp.body).map do |entry|
|
8
|
+
{
|
9
|
+
id: entry["id"],
|
10
|
+
name: entry["nome"],
|
11
|
+
state_id: entry["microrregiao"]["mesorregiao"]["UF"]["id"]
|
12
|
+
}
|
13
|
+
end
|
14
|
+
City.insert_all(cities)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,148 @@
|
|
1
|
+
require "zip"
|
2
|
+
require "down"
|
3
|
+
require "csv"
|
4
|
+
require "fileutils"
|
5
|
+
|
6
|
+
module Brdb
|
7
|
+
class LoadCompaniesJob < ApplicationJob
|
8
|
+
queue_as :default
|
9
|
+
|
10
|
+
BASE_URL = "https://arquivos.receitafederal.gov.br/dados/cnpj/dados_abertos_cnpj/"
|
11
|
+
RESOURCES = [ "Cnaes", "Estabelecimentos" ]
|
12
|
+
DELIMITER = ";"
|
13
|
+
ENCODING = "iso-8859-1:utf-8"
|
14
|
+
QUOTE_CHARS = %w[" | ~ ^ & *]
|
15
|
+
|
16
|
+
def perform(*args)
|
17
|
+
RESOURCES.each do |resource|
|
18
|
+
download_files(resource)
|
19
|
+
unzip_files(resource)
|
20
|
+
load(resource)
|
21
|
+
# cleanup(resource)
|
22
|
+
end
|
23
|
+
end
|
24
|
+
|
25
|
+
private
|
26
|
+
|
27
|
+
def load(prefix)
|
28
|
+
case prefix
|
29
|
+
when "Cnaes"
|
30
|
+
# load_cnaes
|
31
|
+
when "Estabelecimentos"
|
32
|
+
load_companies
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def download_files(prefix)
|
37
|
+
urls = get_urls(prefix.titleize)
|
38
|
+
urls.each_with_index do |url, i|
|
39
|
+
destination = FileUtils.makedirs(Rails.root.join("tmp", prefix))
|
40
|
+
tmp_file_path = destination.join(prefix) + "/#{i}.zip"
|
41
|
+
next if File.exist?(tmp_file_path)
|
42
|
+
Down.download(
|
43
|
+
url,
|
44
|
+
destination: tmp_file_path
|
45
|
+
)
|
46
|
+
puts "Downloaded #{prefix} #{i}"
|
47
|
+
rescue Down::Error => e
|
48
|
+
puts "Failed to download #{prefix} #{i}: #{e.message}"
|
49
|
+
end
|
50
|
+
end
|
51
|
+
|
52
|
+
|
53
|
+
def cleanup(resource)
|
54
|
+
FileUtils.rm_rf(Rails.root.join("tmp", resource))
|
55
|
+
end
|
56
|
+
|
57
|
+
def unzip_files(prefix)
|
58
|
+
tmp_file_path = Rails.root.join("tmp", prefix)
|
59
|
+
|
60
|
+
i = 0
|
61
|
+
Dir.foreach(tmp_file_path) do |file|
|
62
|
+
next if file == "." || file == ".." || !file.end_with?(".zip")
|
63
|
+
file_path = tmp_file_path.join(file)
|
64
|
+
Zip::File.open(file_path) do |zip_file|
|
65
|
+
zip_file.each_with_index do |entry|
|
66
|
+
next if File.exist?(tmp_file_path.join("#{i}.csv"))
|
67
|
+
entry.extract(tmp_file_path.join("#{i}.csv"))
|
68
|
+
end
|
69
|
+
end
|
70
|
+
i += 1
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
def load_companies
|
75
|
+
Company.delete_all
|
76
|
+
tmp_file_path = Rails.root.join("tmp", "Estabelecimentos")
|
77
|
+
companies = []
|
78
|
+
Dir.foreach(tmp_file_path) do |file|
|
79
|
+
puts "PROCESSING #{file}"
|
80
|
+
next if file == "." || file == ".." || !file.end_with?(".csv")
|
81
|
+
file_path = tmp_file_path.join(file)
|
82
|
+
CSV.foreach(file_path, liberal_parsing: true, col_sep: DELIMITER, headers: false, encoding: ENCODING, quote_char: QUOTE_CHARS.shift) do |row|
|
83
|
+
companies << {
|
84
|
+
cnpj: row[0] + row[1] + row[2],
|
85
|
+
name: row[4],
|
86
|
+
since: row[10],
|
87
|
+
main_cnae: row[11],
|
88
|
+
secondary_cnae: row[12],
|
89
|
+
street_name: row[13] + " " + row[14],
|
90
|
+
address_number: row[15],
|
91
|
+
address_additional_info: row[16],
|
92
|
+
neighborhood_name: row[17],
|
93
|
+
zip_code: row[18],
|
94
|
+
state_code: row[19],
|
95
|
+
city_name: row[20],
|
96
|
+
main_phone: row[21] + row[22],
|
97
|
+
secondary_phone: row[23] + row[24],
|
98
|
+
additional_phone: row[25] + row[26],
|
99
|
+
email: row[27]
|
100
|
+
}
|
101
|
+
if companies.count % 30_000 == 0
|
102
|
+
Company.insert_all(companies)
|
103
|
+
companies = []
|
104
|
+
end
|
105
|
+
end
|
106
|
+
Company.insert_all(companies)
|
107
|
+
end
|
108
|
+
end
|
109
|
+
|
110
|
+
def load_cnaes
|
111
|
+
Cnae.delete_all
|
112
|
+
tmp_file_path = Rails.root.join("tmp", "Cnaes")
|
113
|
+
cnaes = []
|
114
|
+
Dir.foreach(tmp_file_path) do |file|
|
115
|
+
next if file == "." || file == ".." || !file.end_with?(".csv")
|
116
|
+
file_path = tmp_file_path.join(file)
|
117
|
+
CSV.foreach(file_path, liberal_parsing: true, col_sep: DELIMITER, headers: false, encoding: ENCODING, quote_char: QUOTE_CHARS.shift) do |row|
|
118
|
+
cnaes << { code: row[0], description: row[1] }
|
119
|
+
end
|
120
|
+
end
|
121
|
+
|
122
|
+
Cnae.insert_all(cnaes)
|
123
|
+
end
|
124
|
+
|
125
|
+
def get_current_month_url
|
126
|
+
resp = HTTParty.get(BASE_URL)
|
127
|
+
return [] unless resp.code == 200
|
128
|
+
|
129
|
+
html = resp.body
|
130
|
+
doc = Nokogiri::HTML(html)
|
131
|
+
href = doc.css("tr")[-2].css("a").first["href"]
|
132
|
+
BASE_URL + href
|
133
|
+
end
|
134
|
+
|
135
|
+
def get_urls(prefix)
|
136
|
+
current_month_url = get_current_month_url
|
137
|
+
resp = HTTParty.get(current_month_url)
|
138
|
+
return [] unless resp.code == 200
|
139
|
+
|
140
|
+
doc = Nokogiri::HTML(resp.body)
|
141
|
+
urls = doc.css("a")
|
142
|
+
urls.map do |url|
|
143
|
+
next unless url.text.starts_with?(prefix.titleize)
|
144
|
+
current_month_url + url["href"]
|
145
|
+
end.compact
|
146
|
+
end
|
147
|
+
end
|
148
|
+
end
|
@@ -0,0 +1,18 @@
|
|
1
|
+
module Brdb
|
2
|
+
class LoadCountriesJob < ApplicationJob
|
3
|
+
queue_as :default
|
4
|
+
|
5
|
+
def perform(*args)
|
6
|
+
resp = HTTParty.get("https://servicodados.ibge.gov.br/api/v1/localidades/paises")
|
7
|
+
countries = JSON.parse(resp.body).map do |json_body|
|
8
|
+
{
|
9
|
+
name: json_body["nome"],
|
10
|
+
id: json_body["id"]["M49"],
|
11
|
+
iso_2: json_body["id"]["ISO-ALPHA-2"],
|
12
|
+
iso_3: json_body["id"]["ISO-ALPHA-3"]
|
13
|
+
}
|
14
|
+
end
|
15
|
+
Country.insert_all(countries)
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
module Brdb
|
2
|
+
class LoadStatesJob < ApplicationJob
|
3
|
+
queue_as :default
|
4
|
+
|
5
|
+
def perform(*args)
|
6
|
+
resp = HTTParty.get("https://servicodados.ibge.gov.br/api/v1/localidades/estados")
|
7
|
+
states = JSON.parse(resp.body).map do |entry|
|
8
|
+
{
|
9
|
+
id: entry["id"],
|
10
|
+
name: entry["nome"],
|
11
|
+
code: entry["sigla"]
|
12
|
+
}
|
13
|
+
end
|
14
|
+
State.insert_all(states)
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
@@ -0,0 +1,121 @@
|
|
1
|
+
require "zip"
|
2
|
+
require "csv"
|
3
|
+
require "fileutils"
|
4
|
+
|
5
|
+
module Brdb
|
6
|
+
class LoadZipCodesJob < ApplicationJob
|
7
|
+
queue_as :default
|
8
|
+
|
9
|
+
ENCODING = "iso-8859-1:utf-8"
|
10
|
+
DELIMITER = "@"
|
11
|
+
QUOTE_CHARS = %w[" | ~ ^ & *]
|
12
|
+
INNER_FILE_PATH = Rails.root.join("tmp", "dne_inner.zip")
|
13
|
+
TMP_FILE_PATH = Rails.root.join("tmp", "dne.zip")
|
14
|
+
DELIMITADO_FILE_PATH = Rails.root.join("tmp", "dne_csv/delimitado")
|
15
|
+
|
16
|
+
def perform(*args)
|
17
|
+
download_dne_file
|
18
|
+
unzip_dne_file
|
19
|
+
unzip_csv_folder
|
20
|
+
import_zip_codes
|
21
|
+
import_city_zip_codes
|
22
|
+
cleanup
|
23
|
+
end
|
24
|
+
|
25
|
+
def cleanup
|
26
|
+
ZipCode.where(zip_code: nil).delete_all
|
27
|
+
File.delete(TMP_FILE_PATH) if File.exist?(TMP_FILE_PATH)
|
28
|
+
File.delete(INNER_FILE_PATH) if File.exist?(INNER_FILE_PATH)
|
29
|
+
FileUtils.rm_rf(DELIMITADO_FILE_PATH)
|
30
|
+
end
|
31
|
+
|
32
|
+
private
|
33
|
+
|
34
|
+
def download_dne_file
|
35
|
+
# Check if the file is already downloaded
|
36
|
+
return if File.exist?(TMP_FILE_PATH)
|
37
|
+
|
38
|
+
response = HTTParty.get("https://www2.correios.com.br/sistemas/edne/download/eDNE_Basico.zip")
|
39
|
+
if response.code == 200
|
40
|
+
File.open(TMP_FILE_PATH, "wb") { |file|file.write(response.body) }
|
41
|
+
else
|
42
|
+
puts "Failed to download file: HTTP #{response.code}"
|
43
|
+
end
|
44
|
+
end
|
45
|
+
|
46
|
+
def unzip_dne_file
|
47
|
+
return if File.exist?(INNER_FILE_PATH)
|
48
|
+
Zip::File.open(TMP_FILE_PATH) do |zip_file|
|
49
|
+
zip_file.sort_by(&:size).reverse!
|
50
|
+
zip_file.first.extract(INNER_FILE_PATH)
|
51
|
+
end
|
52
|
+
end
|
53
|
+
|
54
|
+
def unzip_csv_folder
|
55
|
+
destination = FileUtils.makedirs(Rails.root.join("tmp", "dne_csv"))
|
56
|
+
Zip::File.open(INNER_FILE_PATH) do |zip_file|
|
57
|
+
zip_file.entries.select { |entry| entry.name.start_with?("Delimitado/") }.each do |entry|
|
58
|
+
entry_path = destination.join(entry.name) + "/#{entry.name.downcase}"
|
59
|
+
|
60
|
+
# Ensure directory exists
|
61
|
+
FileUtils.mkdir_p(File.dirname(entry_path))
|
62
|
+
|
63
|
+
# Extract the file
|
64
|
+
entry.extract(entry_path) unless File.exist?(entry_path)
|
65
|
+
end
|
66
|
+
end
|
67
|
+
end
|
68
|
+
|
69
|
+
def import_zip_codes
|
70
|
+
# The file name is log_logradouro_SC.txt or log_logradouro_SP.txt
|
71
|
+
csv_file_path_regex = /log_logradouro_(\w\w).txt/
|
72
|
+
path = DELIMITADO_FILE_PATH
|
73
|
+
city_mapping = get_data_map("log_localidade.txt", 2, 8)
|
74
|
+
neighborhood_mapping = get_data_map("log_bairro.txt", 3, 3)
|
75
|
+
|
76
|
+
# iterate over the csv files that match the regex pattern
|
77
|
+
Dir.glob(path.join("**", "*.txt")).each do |file_path|
|
78
|
+
zip_codes = []
|
79
|
+
next unless csv_file_path_regex.match?(file_path)
|
80
|
+
CSV.foreach(file_path, liberal_parsing: true, col_sep: DELIMITER, headers: false, encoding: ENCODING, quote_char: QUOTE_CHARS.shift) do |row|
|
81
|
+
street_name = row[8] + " " + row[5]
|
82
|
+
zip_codes << {
|
83
|
+
state_code: row[1],
|
84
|
+
neighborhood_name: neighborhood_mapping[row[3]],
|
85
|
+
street_name: street_name,
|
86
|
+
city_name: city_mapping[row[2]][0],
|
87
|
+
city_code: city_mapping[row[2]][1],
|
88
|
+
street_additional_info: row[6],
|
89
|
+
zip_code: row[7]
|
90
|
+
}
|
91
|
+
end
|
92
|
+
ZipCode.insert_all(zip_codes)
|
93
|
+
end
|
94
|
+
end
|
95
|
+
|
96
|
+
def import_city_zip_codes
|
97
|
+
city_file_path = DELIMITADO_FILE_PATH + "log_localidade.txt"
|
98
|
+
|
99
|
+
zip_codes = []
|
100
|
+
CSV.foreach(city_file_path, liberal_parsing: true, col_sep: DELIMITER, headers: false, encoding: ENCODING, quote_char: QUOTE_CHARS.shift) do |row|
|
101
|
+
zip_codes << {
|
102
|
+
state_code: row[1],
|
103
|
+
city_name: row[2],
|
104
|
+
city_code: row[8],
|
105
|
+
zip_code: row[3]
|
106
|
+
}
|
107
|
+
end
|
108
|
+
ZipCode.insert_all(zip_codes)
|
109
|
+
end
|
110
|
+
|
111
|
+
def get_data_map(file_path, first_key, second_key)
|
112
|
+
file_path = DELIMITADO_FILE_PATH + file_path
|
113
|
+
mapping = {}
|
114
|
+
|
115
|
+
CSV.foreach(file_path, liberal_parsing: true, col_sep: DELIMITER, headers: false, encoding: ENCODING, quote_char: QUOTE_CHARS.shift) do |row|
|
116
|
+
mapping[row[0]] = [ row[first_key], row[second_key] ]
|
117
|
+
end
|
118
|
+
mapping
|
119
|
+
end
|
120
|
+
end
|
121
|
+
end
|
@@ -0,0 +1,17 @@
|
|
1
|
+
<!DOCTYPE html>
|
2
|
+
<html>
|
3
|
+
<head>
|
4
|
+
<title>Brdb</title>
|
5
|
+
<%= csrf_meta_tags %>
|
6
|
+
<%= csp_meta_tag %>
|
7
|
+
|
8
|
+
<%= yield :head %>
|
9
|
+
|
10
|
+
<%= stylesheet_link_tag "brdb/application", media: "all" %>
|
11
|
+
</head>
|
12
|
+
<body>
|
13
|
+
|
14
|
+
<%= yield %>
|
15
|
+
|
16
|
+
</body>
|
17
|
+
</html>
|
data/config/routes.rb
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
Brdb::Engine.routes.draw do
|
2
|
+
get "import_cities", to: "import_cities#create"
|
3
|
+
get "import_states", to: "import_states#create"
|
4
|
+
get "import_countries", to: "import_countries#create"
|
5
|
+
get "import_zip_codes", to: "import_zip_codes#create"
|
6
|
+
get "import_companies", to: "import_companies#create"
|
7
|
+
end
|
@@ -0,0 +1,16 @@
|
|
1
|
+
class CreateBrdbZipCodes < ActiveRecord::Migration[8.0]
|
2
|
+
def change
|
3
|
+
create_table :brdb_zip_codes do |t|
|
4
|
+
t.string :zip_code
|
5
|
+
t.string :street_name
|
6
|
+
t.string :street_additional_info
|
7
|
+
t.string :neighborhood_name
|
8
|
+
t.string :city_name
|
9
|
+
t.string :city_code
|
10
|
+
t.string :state_code
|
11
|
+
t.string :name
|
12
|
+
|
13
|
+
t.timestamps
|
14
|
+
end
|
15
|
+
end
|
16
|
+
end
|
@@ -0,0 +1,25 @@
|
|
1
|
+
class CreateBrdbCompanies < ActiveRecord::Migration[8.0]
|
2
|
+
def change
|
3
|
+
create_table :brdb_companies do |t|
|
4
|
+
t.string :cnpj
|
5
|
+
t.string :name
|
6
|
+
t.string :legal_name
|
7
|
+
t.datetime :since
|
8
|
+
t.string :main_cnae
|
9
|
+
t.string :secondary_cnae
|
10
|
+
t.string :street_name
|
11
|
+
t.string :address_number
|
12
|
+
t.string :address_additional_info
|
13
|
+
t.string :neighborhood_name
|
14
|
+
t.string :zip_code
|
15
|
+
t.string :state_code
|
16
|
+
t.string :city_name
|
17
|
+
t.string :main_phone
|
18
|
+
t.string :secondary_phone
|
19
|
+
t.string :additional_phone
|
20
|
+
t.string :email
|
21
|
+
|
22
|
+
t.timestamps
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
data/lib/brdb/engine.rb
ADDED
data/lib/brdb/version.rb
ADDED
data/lib/brdb.rb
ADDED
metadata
ADDED
@@ -0,0 +1,102 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: br_db
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.1.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- caonUlisses
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-12-19 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rails
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ">="
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: 8.0.0
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ">="
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: 8.0.0
|
27
|
+
description: A rails engine to add all the necessary Brazilian data to your app..
|
28
|
+
email:
|
29
|
+
- ulissescaon@gmail.com
|
30
|
+
executables: []
|
31
|
+
extensions: []
|
32
|
+
extra_rdoc_files: []
|
33
|
+
files:
|
34
|
+
- MIT-LICENSE
|
35
|
+
- README.md
|
36
|
+
- Rakefile
|
37
|
+
- app/assets/stylesheets/brdb/application.css
|
38
|
+
- app/controllers/brdb/application_controller.rb
|
39
|
+
- app/controllers/brdb/import_cities_controller.rb
|
40
|
+
- app/controllers/brdb/import_companies_controller.rb
|
41
|
+
- app/controllers/brdb/import_countries_controller.rb
|
42
|
+
- app/controllers/brdb/import_states_controller.rb
|
43
|
+
- app/controllers/brdb/import_zip_codes_controller.rb
|
44
|
+
- app/helpers/brdb/application_helper.rb
|
45
|
+
- app/helpers/brdb/import_companies_helper.rb
|
46
|
+
- app/helpers/brdb/import_countries_helper.rb
|
47
|
+
- app/helpers/brdb/import_states_helper.rb
|
48
|
+
- app/helpers/brdb/import_zip_codes_helper.rb
|
49
|
+
- app/helpers/brdb/imports_helper.rb
|
50
|
+
- app/jobs/brdb/application_job.rb
|
51
|
+
- app/jobs/brdb/load_cities_job.rb
|
52
|
+
- app/jobs/brdb/load_companies_job.rb
|
53
|
+
- app/jobs/brdb/load_countries_job.rb
|
54
|
+
- app/jobs/brdb/load_states_job.rb
|
55
|
+
- app/jobs/brdb/load_zip_codes_job.rb
|
56
|
+
- app/mailers/brdb/application_mailer.rb
|
57
|
+
- app/models/brdb/application_record.rb
|
58
|
+
- app/models/brdb/city.rb
|
59
|
+
- app/models/brdb/cnae.rb
|
60
|
+
- app/models/brdb/company.rb
|
61
|
+
- app/models/brdb/country.rb
|
62
|
+
- app/models/brdb/state.rb
|
63
|
+
- app/models/brdb/zip_code.rb
|
64
|
+
- app/views/layouts/brdb/application.html.erb
|
65
|
+
- config/routes.rb
|
66
|
+
- db/migrate/20241209190243_create_brdb_countries.rb
|
67
|
+
- db/migrate/20241209190300_create_brdb_states.rb
|
68
|
+
- db/migrate/20241209190403_create_brdb_cities.rb
|
69
|
+
- db/migrate/20241209202503_create_brdb_zip_codes.rb
|
70
|
+
- db/migrate/20241210125732_create_brdb_companies.rb
|
71
|
+
- db/migrate/20241210130730_create_brdb_cnaes.rb
|
72
|
+
- lib/brdb.rb
|
73
|
+
- lib/brdb/engine.rb
|
74
|
+
- lib/brdb/version.rb
|
75
|
+
- lib/tasks/brdb_tasks.rake
|
76
|
+
homepage: https://github.com/caonUlisses/brdb
|
77
|
+
licenses:
|
78
|
+
- MIT
|
79
|
+
metadata:
|
80
|
+
homepage_uri: https://github.com/caonUlisses/brdb
|
81
|
+
source_code_uri: https://github.com/caonUlisses/brdb
|
82
|
+
changelog_uri: https://github.com/caonUlisses/brdb
|
83
|
+
post_install_message:
|
84
|
+
rdoc_options: []
|
85
|
+
require_paths:
|
86
|
+
- lib
|
87
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
88
|
+
requirements:
|
89
|
+
- - ">="
|
90
|
+
- !ruby/object:Gem::Version
|
91
|
+
version: '0'
|
92
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
97
|
+
requirements: []
|
98
|
+
rubygems_version: 3.5.22
|
99
|
+
signing_key:
|
100
|
+
specification_version: 4
|
101
|
+
summary: A rails engine to add all the necessary Brazilian data to your app.
|
102
|
+
test_files: []
|