br_db 0.1.0 → 0.1.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.
Files changed (38) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +6 -18
  3. data/app/controllers/{brdb → br_db}/application_controller.rb +1 -1
  4. data/app/controllers/{brdb → br_db}/import_cities_controller.rb +1 -1
  5. data/app/controllers/{brdb → br_db}/import_companies_controller.rb +1 -1
  6. data/app/controllers/{brdb → br_db}/import_countries_controller.rb +1 -1
  7. data/app/controllers/{brdb → br_db}/import_states_controller.rb +1 -1
  8. data/app/controllers/{brdb → br_db}/import_zip_codes_controller.rb +1 -1
  9. data/app/helpers/{brdb → br_db}/application_helper.rb +1 -1
  10. data/app/jobs/{brdb → br_db}/application_job.rb +1 -1
  11. data/app/jobs/{brdb → br_db}/load_cities_job.rb +1 -1
  12. data/app/jobs/{brdb → br_db}/load_companies_job.rb +7 -3
  13. data/app/jobs/{brdb → br_db}/load_countries_job.rb +1 -1
  14. data/app/jobs/{brdb → br_db}/load_states_job.rb +1 -1
  15. data/app/jobs/{brdb → br_db}/load_zip_codes_job.rb +1 -1
  16. data/app/mailers/{brdb → br_db}/application_mailer.rb +1 -1
  17. data/app/models/{brdb → br_db}/application_record.rb +1 -1
  18. data/app/models/{brdb → br_db}/city.rb +1 -1
  19. data/app/models/{brdb → br_db}/cnae.rb +1 -1
  20. data/app/models/{brdb → br_db}/company.rb +1 -1
  21. data/app/models/{brdb → br_db}/country.rb +1 -1
  22. data/app/models/{brdb → br_db}/state.rb +1 -1
  23. data/app/models/{brdb → br_db}/zip_code.rb +1 -1
  24. data/app/views/layouts/{brdb → br_db}/application.html.erb +2 -2
  25. data/config/routes.rb +1 -1
  26. data/lib/{brdb → br_db}/engine.rb +2 -2
  27. data/lib/br_db/version.rb +3 -0
  28. data/lib/br_db.rb +6 -0
  29. data/lib/tasks/{brdb_tasks.rake → br_db_tasks.rake} +1 -1
  30. metadata +36 -42
  31. data/app/helpers/brdb/import_companies_helper.rb +0 -4
  32. data/app/helpers/brdb/import_countries_helper.rb +0 -4
  33. data/app/helpers/brdb/import_states_helper.rb +0 -4
  34. data/app/helpers/brdb/import_zip_codes_helper.rb +0 -4
  35. data/app/helpers/brdb/imports_helper.rb +0 -4
  36. data/lib/brdb/version.rb +0 -3
  37. data/lib/brdb.rb +0 -6
  38. /data/app/assets/stylesheets/{brdb → br_db}/application.css +0 -0
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 45b4a2cc6e85d14a69fd9e1d3c2fd37504215841ba20098fa58e01927afe0eff
4
- data.tar.gz: e1ad089a2fd355c501737dc44b0b43e16244b0d8ce6c33221d9b2b97e8faa4cb
3
+ metadata.gz: d7122614bb0bbd93ba570e9d703bc5133ce879cd828ad0f47dfc1b66b2c241fc
4
+ data.tar.gz: 1d33a775a1e1a5378363263d55db8b3c657ec2f743908371798cbed1ab9788c6
5
5
  SHA512:
6
- metadata.gz: a5d3822a1d31e2abed2e478acdb3c1252815af430f94753035c4100a3a74802a84c5cd1eb3a5632331796f7d672dbcc2648ae1f6c2d795cd746c90e1c778d3d8
7
- data.tar.gz: dd0d59e37f841c24818356b4a619b6af049e8fc0526b76ea97531b71c3d6a110f17248d701d499db2d25415914d828f032861f6a9de8a719e129f785f6901baf
6
+ metadata.gz: 68214a5e0f88a4ef0f2f725576b2d2fc9dd89ce39dc4c65d8e4f68cb0ac6e49740775369d71fc7ecfbeedc78c2690525a09f608b3f19ac0b2d48e811ab603521
7
+ data.tar.gz: 0c739fc67c46abfcfe3b83cae0ac8d7f9a26236cfa3bf1acd5250b379b3255d3aa1addfe4046389715b6fdde32115988bf93f62c3e150bfb9953851c39b1a0d1
data/README.md CHANGED
@@ -1,21 +1,14 @@
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)
1
+ # BrDb
2
+ Short description and motivation.
10
3
 
11
4
  ## Usage
12
- Each data point has a corresponding ActiveJob job, so you can manage the download process in parallel.
5
+ How to use my plugin.
13
6
 
14
7
  ## Installation
15
8
  Add this line to your application's Gemfile:
16
9
 
17
10
  ```ruby
18
- gem "brdb"
11
+ gem "br_db"
19
12
  ```
20
13
 
21
14
  And then execute:
@@ -25,16 +18,11 @@ $ bundle
25
18
 
26
19
  Or install it yourself as:
27
20
  ```bash
28
- $ gem install brdb
21
+ $ gem install br_db
29
22
  ```
30
23
 
31
24
  ## Contributing
32
- Fork, open a PR.
33
-
34
-
35
- ## TODO:
36
- - [ ] Finish up company data import
37
- - [ ] Add tests
25
+ Contribution directions go here.
38
26
 
39
27
  ## License
40
28
  The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class ApplicationController < ActionController::Base
3
3
  end
4
4
  end
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class ImportCitiesController < ApplicationController
3
3
  def create
4
4
  LoadCitiesJob.perform_later
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class ImportCompaniesController < ApplicationController
3
3
  def create
4
4
  LoadCompaniesJob.perform_later
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class ImportCountriesController < ApplicationController
3
3
  def create
4
4
  LoadCountriesJob.perform_later
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class ImportStatesController < ApplicationController
3
3
  def create
4
4
  LoadStatesJob.perform_later
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class ImportZipCodesController < ApplicationController
3
3
  def create
4
4
  LoadZipCodesJob.perform_later
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  module ApplicationHelper
3
3
  end
4
4
  end
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class ApplicationJob < ActiveJob::Base
3
3
  end
4
4
  end
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class LoadCitiesJob < ApplicationJob
3
3
  queue_as :default
4
4
 
@@ -3,12 +3,12 @@ require "down"
3
3
  require "csv"
4
4
  require "fileutils"
5
5
 
6
- module Brdb
6
+ module BrDb
7
7
  class LoadCompaniesJob < ApplicationJob
8
8
  queue_as :default
9
9
 
10
10
  BASE_URL = "https://arquivos.receitafederal.gov.br/dados/cnpj/dados_abertos_cnpj/"
11
- RESOURCES = [ "Cnaes", "Estabelecimentos" ]
11
+ RESOURCES = [ "Cnaes" ] # TODO: enable "Estabelecimentos" again
12
12
  DELIMITER = ";"
13
13
  ENCODING = "iso-8859-1:utf-8"
14
14
  QUOTE_CHARS = %w[" | ~ ^ & *]
@@ -27,7 +27,7 @@ module Brdb
27
27
  def load(prefix)
28
28
  case prefix
29
29
  when "Cnaes"
30
- # load_cnaes
30
+ load_cnaes
31
31
  when "Estabelecimentos"
32
32
  load_companies
33
33
  end
@@ -35,6 +35,7 @@ module Brdb
35
35
 
36
36
  def download_files(prefix)
37
37
  urls = get_urls(prefix.titleize)
38
+ puts "Found the following URLs: #{urls}"
38
39
  urls.each_with_index do |url, i|
39
40
  destination = FileUtils.makedirs(Rails.root.join("tmp", prefix))
40
41
  tmp_file_path = destination.join(prefix) + "/#{i}.zip"
@@ -129,6 +130,9 @@ module Brdb
129
130
  html = resp.body
130
131
  doc = Nokogiri::HTML(html)
131
132
  href = doc.css("tr")[-2].css("a").first["href"]
133
+ if href.starts_with?("temp")
134
+ href = doc.css("tr")[-3].css("a").first["href"]
135
+ end
132
136
  BASE_URL + href
133
137
  end
134
138
 
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class LoadCountriesJob < ApplicationJob
3
3
  queue_as :default
4
4
 
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class LoadStatesJob < ApplicationJob
3
3
  queue_as :default
4
4
 
@@ -2,7 +2,7 @@ require "zip"
2
2
  require "csv"
3
3
  require "fileutils"
4
4
 
5
- module Brdb
5
+ module BrDb
6
6
  class LoadZipCodesJob < ApplicationJob
7
7
  queue_as :default
8
8
 
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class ApplicationMailer < ActionMailer::Base
3
3
  default from: "from@example.com"
4
4
  layout "mailer"
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class ApplicationRecord < ActiveRecord::Base
3
3
  self.abstract_class = true
4
4
  end
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class City < ApplicationRecord
3
3
  end
4
4
  end
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class Cnae < ApplicationRecord
3
3
  end
4
4
  end
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class Company < ApplicationRecord
3
3
  end
4
4
  end
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class Country < ApplicationRecord
3
3
  end
4
4
  end
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class State < ApplicationRecord
3
3
  end
4
4
  end
@@ -1,4 +1,4 @@
1
- module Brdb
1
+ module BrDb
2
2
  class ZipCode < ApplicationRecord
3
3
  end
4
4
  end
@@ -1,13 +1,13 @@
1
1
  <!DOCTYPE html>
2
2
  <html>
3
3
  <head>
4
- <title>Brdb</title>
4
+ <title>Br db</title>
5
5
  <%= csrf_meta_tags %>
6
6
  <%= csp_meta_tag %>
7
7
 
8
8
  <%= yield :head %>
9
9
 
10
- <%= stylesheet_link_tag "brdb/application", media: "all" %>
10
+ <%= stylesheet_link_tag "br_db/application", media: "all" %>
11
11
  </head>
12
12
  <body>
13
13
 
data/config/routes.rb CHANGED
@@ -1,4 +1,4 @@
1
- Brdb::Engine.routes.draw do
1
+ BrDb::Engine.routes.draw do
2
2
  get "import_cities", to: "import_cities#create"
3
3
  get "import_states", to: "import_states#create"
4
4
  get "import_countries", to: "import_countries#create"
@@ -1,5 +1,5 @@
1
- module Brdb
1
+ module BrDb
2
2
  class Engine < ::Rails::Engine
3
- isolate_namespace Brdb
3
+ isolate_namespace BrDb
4
4
  end
5
5
  end
@@ -0,0 +1,3 @@
1
+ module BrDb
2
+ VERSION = "0.1.1"
3
+ end
data/lib/br_db.rb ADDED
@@ -0,0 +1,6 @@
1
+ require "br_db/version"
2
+ require "br_db/engine"
3
+
4
+ module BrDb
5
+ # Your code goes here...
6
+ end
@@ -1,4 +1,4 @@
1
1
  # desc "Explaining what the task does"
2
- # task :brdb do
2
+ # task :br_db do
3
3
  # # Task goes here
4
4
  # end
metadata CHANGED
@@ -1,10 +1,10 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: br_db
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
- - caonUlisses
7
+ - Ulisses Caon
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
@@ -16,15 +16,15 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 8.0.0
19
+ version: 8.0.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - ">="
25
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..
26
+ version: 8.0.1
27
+ description: Download and import Brazilian data into your Ruby on Rails app
28
28
  email:
29
29
  - ulissescaon@gmail.com
30
30
  executables: []
@@ -34,34 +34,29 @@ files:
34
34
  - MIT-LICENSE
35
35
  - README.md
36
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
37
+ - app/assets/stylesheets/br_db/application.css
38
+ - app/controllers/br_db/application_controller.rb
39
+ - app/controllers/br_db/import_cities_controller.rb
40
+ - app/controllers/br_db/import_companies_controller.rb
41
+ - app/controllers/br_db/import_countries_controller.rb
42
+ - app/controllers/br_db/import_states_controller.rb
43
+ - app/controllers/br_db/import_zip_codes_controller.rb
44
+ - app/helpers/br_db/application_helper.rb
45
+ - app/jobs/br_db/application_job.rb
46
+ - app/jobs/br_db/load_cities_job.rb
47
+ - app/jobs/br_db/load_companies_job.rb
48
+ - app/jobs/br_db/load_countries_job.rb
49
+ - app/jobs/br_db/load_states_job.rb
50
+ - app/jobs/br_db/load_zip_codes_job.rb
51
+ - app/mailers/br_db/application_mailer.rb
52
+ - app/models/br_db/application_record.rb
53
+ - app/models/br_db/city.rb
54
+ - app/models/br_db/cnae.rb
55
+ - app/models/br_db/company.rb
56
+ - app/models/br_db/country.rb
57
+ - app/models/br_db/state.rb
58
+ - app/models/br_db/zip_code.rb
59
+ - app/views/layouts/br_db/application.html.erb
65
60
  - config/routes.rb
66
61
  - db/migrate/20241209190243_create_brdb_countries.rb
67
62
  - db/migrate/20241209190300_create_brdb_states.rb
@@ -69,17 +64,16 @@ files:
69
64
  - db/migrate/20241209202503_create_brdb_zip_codes.rb
70
65
  - db/migrate/20241210125732_create_brdb_companies.rb
71
66
  - 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
67
+ - lib/br_db.rb
68
+ - lib/br_db/engine.rb
69
+ - lib/br_db/version.rb
70
+ - lib/tasks/br_db_tasks.rake
71
+ homepage: https://github.com/caonUlisses/br_db
77
72
  licenses:
78
73
  - MIT
79
74
  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
75
+ homepage_uri: https://github.com/caonUlisses/br_db
76
+ source_code_uri: https://github.com/caonUlisses/br_db
83
77
  post_install_message:
84
78
  rdoc_options: []
85
79
  require_paths:
@@ -98,5 +92,5 @@ requirements: []
98
92
  rubygems_version: 3.5.22
99
93
  signing_key:
100
94
  specification_version: 4
101
- summary: A rails engine to add all the necessary Brazilian data to your app.
95
+ summary: A Rails engine to download and load Brazilian data
102
96
  test_files: []
@@ -1,4 +0,0 @@
1
- module Brdb
2
- module ImportCompaniesHelper
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module Brdb
2
- module ImportCountriesHelper
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module Brdb
2
- module ImportStatesHelper
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module Brdb
2
- module ImportZipCodesHelper
3
- end
4
- end
@@ -1,4 +0,0 @@
1
- module Brdb
2
- module ImportsHelper
3
- end
4
- end
data/lib/brdb/version.rb DELETED
@@ -1,3 +0,0 @@
1
- module Brdb
2
- VERSION = "0.1.0"
3
- end
data/lib/brdb.rb DELETED
@@ -1,6 +0,0 @@
1
- require "brdb/version"
2
- require "brdb/engine"
3
-
4
- module Brdb
5
- # Your code goes here...
6
- end