dolar-bna 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 44199b26bcc6085571a7babf11ab6147e03afe3ee6f1c0307cccfd00ae7de4f3
4
- data.tar.gz: 79312aadc5ea5b7faf6aeb109ba9b9ad85a991a767338f8e9a9b635d96ec09ed
3
+ metadata.gz: 7cd5fcfd3735d0434d801c8c4346b54055756c881503ffc325cd0cfaa44c22d4
4
+ data.tar.gz: a4bc45551ce8dfb4c3c92633f681fd6b67a62d5ee4f404a0d142d0d9c6b2f4dd
5
5
  SHA512:
6
- metadata.gz: a5519383ce57e301c19d134413cf7d7ff8376177b31edecd077a6630577d1d05306996719e08dd37df45c6f29a1f1ed308eb1da477d00ceb6318350521c93516
7
- data.tar.gz: 8a5fec27c29a3748765468a35b807185da8df51dfd2e4499141722e37b321c9c77986958eb1bcc810b0d1ca390c920edbf47c6f58e29787792117cb45f049b1d
6
+ metadata.gz: 7e2805f705450455a2354cf9ea055491bd37e8ab893444d17e9a5656b2c1ae68fc1e54523dab80d8467d37fc0d46efab37e85d3df7b1fb03e93bfab87328fb86
7
+ data.tar.gz: 115b454f1995c7bdc6d73acf49ab8bdb6eef8fef000a9e93b74bf3c4be3501350f7be31378618ca1953581a38750ce8590426afa5cc70ad30ea58598920d8161
@@ -12,5 +12,6 @@ module Dolar
12
12
 
13
13
  autoload :Exchanger, "dolar/bna/exchange"
14
14
  autoload :Converter, "dolar/bna/convert"
15
+
15
16
  end
16
17
  end
@@ -0,0 +1,41 @@
1
+ module Dolar
2
+ module Bna
3
+ class Convert
4
+ def initialize(value=0, conversion="ars_to_dolar", dolar_type="Divisa")
5
+ @value ||= value
6
+ @conversion ||= conversion
7
+ @dolar_type ||= dolar_type
8
+ end
9
+
10
+ def perform
11
+ dolar_query = DolarCotization.where(date: Date.today, dolar_type: @dolar_type).first
12
+ dolar_buy = dolar_query.nil? ? nil : dolar_query.dolar_buy
13
+ if @conversion == "ars_to_dolar"
14
+ ars_to_dolar(dolar_buy)
15
+ else
16
+ dolar_to_ars(dolar_buy)
17
+ end
18
+ end
19
+
20
+ private
21
+
22
+ def ars_to_dolar dolar_buy
23
+ valor = if !dolar_buy.nil?
24
+ @value.to_f / dolar_buy.to_f
25
+ else
26
+ 0
27
+ end
28
+ return valor.round(2)
29
+ end
30
+
31
+ def dolar_to_ars dolar_buy
32
+ valor = if !dolar_buy.nil?
33
+ @value.to_f * dolar_buy.to_f
34
+ else
35
+ 0
36
+ end
37
+ return valor.round(2)
38
+ end
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,83 @@
1
+ module Dolar
2
+ module Bna
3
+ class Exchange
4
+
5
+ def initialize(fecha=Date.today)
6
+ @fecha ||= fecha
7
+ end
8
+
9
+ def perform_bna_billete
10
+ data = get_dolar()
11
+ save_in_db(data, "Billete")
12
+ return data
13
+ end
14
+
15
+ def perform_bna_divisa
16
+ data = get_dolar_divisa()
17
+ save_in_db(data, "Divisa")
18
+ return data
19
+ end
20
+
21
+ private
22
+
23
+ def get_dolar
24
+ require "open-uri"
25
+ data = {}
26
+ mechanize = Mechanize.new
27
+ mechanize.user_agent_alias = "Android"
28
+ begin
29
+ Timeout.timeout(20) do
30
+ url = "http://www.bna.com.ar/Cotizador/HistoricoPrincipales?id=billetes&fecha=#{@fecha.day}%2F#{@fecha.month}%2F#{@fecha.year}&filtroEuro=0&filtroDolar=1"
31
+ value = obtain_dolar_from_html(url, mechanize, data)
32
+ return value
33
+ end
34
+ rescue => ex
35
+ pp ex.message
36
+ return ""
37
+ end
38
+ end
39
+
40
+ def get_dolar_divisa
41
+ require "open-uri"
42
+ data = {}
43
+ mechanize = Mechanize.new
44
+ mechanize.user_agent_alias = "Android"
45
+ begin
46
+ Timeout.timeout(20) do
47
+ url = "http://www.bna.com.ar/Cotizador/MonedasHistorico"
48
+ value = obtain_dolar_from_html(url, mechanize, data)
49
+ return value
50
+ end
51
+ rescue => ex
52
+ pp ex.message
53
+ return nil
54
+ end
55
+ end
56
+
57
+ def obtain_dolar_from_html(url, mechanize, data)
58
+
59
+ page = mechanize.get(url)
60
+ doc = Nokogiri::HTML(page.body, "UTF-8")
61
+ doc.xpath("//td").each_with_index do |node, index|
62
+ data[index] = node.text
63
+ end
64
+ correct_date = "#{@fecha.day.to_i}/#{@fecha.month.to_i}/#{@fecha.year.to_i}"
65
+ i = data.key(correct_date)
66
+ if !i.nil?
67
+ dolar_venta = BigDecimal(data[i - 2].tr(",", ".")).truncate(3).to_f
68
+ dolar_compra = BigDecimal(data[i - 1].tr(",", ".")).truncate(3).to_f
69
+ else
70
+ dolar_venta = BigDecimal(data[1].tr(",", ".")).truncate(3).to_f
71
+ dolar_compra = BigDecimal(data[2].tr(",", ".")).truncate(3).to_f
72
+ end
73
+ return {compra: dolar_compra, venta: dolar_venta}
74
+ end
75
+
76
+
77
+ def save_in_db data, dolar_type
78
+ DolarCotization.create(date: @fecha, dolar_type: dolar_type, dolar_buy: data[:compra], dolar_sell: data[:venta])
79
+ end
80
+
81
+ end
82
+ end
83
+ end
@@ -1,5 +1,5 @@
1
1
  module Dolar
2
2
  module Bna
3
- VERSION = "0.1.1"
3
+ VERSION = "0.1.2"
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dolar-bna
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - LITECODE
@@ -60,18 +60,9 @@ executables: []
60
60
  extensions: []
61
61
  extra_rdoc_files: []
62
62
  files:
63
- - ".gitignore"
64
- - ".rspec"
65
- - ".travis.yml"
66
- - CODE_OF_CONDUCT.md
67
- - Gemfile
68
- - LICENSE.txt
69
- - README.md
70
- - Rakefile
71
- - bin/console
72
- - bin/setup
73
- - dolar-bna.gemspec
74
63
  - lib/dolar/bna.rb
64
+ - lib/dolar/bna/convert.rb
65
+ - lib/dolar/bna/exchange.rb
75
66
  - lib/dolar/bna/version.rb
76
67
  homepage: http://litecode.com.ar/
77
68
  licenses:
data/.gitignore DELETED
@@ -1,11 +0,0 @@
1
- /.bundle/
2
- /.yardoc
3
- /_yardoc/
4
- /coverage/
5
- /doc/
6
- /pkg/
7
- /spec/reports/
8
- /tmp/
9
-
10
- # rspec failure tracking
11
- .rspec_status
data/.rspec DELETED
@@ -1,3 +0,0 @@
1
- --format documentation
2
- --color
3
- --require spec_helper
@@ -1,7 +0,0 @@
1
- ---
2
- sudo: false
3
- language: ruby
4
- cache: bundler
5
- rvm:
6
- - 2.5.1
7
- before_install: gem install bundler -v 2.0.2
@@ -1,74 +0,0 @@
1
- # Contributor Covenant Code of Conduct
2
-
3
- ## Our Pledge
4
-
5
- In the interest of fostering an open and welcoming environment, we as
6
- contributors and maintainers pledge to making participation in our project and
7
- our community a harassment-free experience for everyone, regardless of age, body
8
- size, disability, ethnicity, gender identity and expression, level of experience,
9
- nationality, personal appearance, race, religion, or sexual identity and
10
- orientation.
11
-
12
- ## Our Standards
13
-
14
- Examples of behavior that contributes to creating a positive environment
15
- include:
16
-
17
- * Using welcoming and inclusive language
18
- * Being respectful of differing viewpoints and experiences
19
- * Gracefully accepting constructive criticism
20
- * Focusing on what is best for the community
21
- * Showing empathy towards other community members
22
-
23
- Examples of unacceptable behavior by participants include:
24
-
25
- * The use of sexualized language or imagery and unwelcome sexual attention or
26
- advances
27
- * Trolling, insulting/derogatory comments, and personal or political attacks
28
- * Public or private harassment
29
- * Publishing others' private information, such as a physical or electronic
30
- address, without explicit permission
31
- * Other conduct which could reasonably be considered inappropriate in a
32
- professional setting
33
-
34
- ## Our Responsibilities
35
-
36
- Project maintainers are responsible for clarifying the standards of acceptable
37
- behavior and are expected to take appropriate and fair corrective action in
38
- response to any instances of unacceptable behavior.
39
-
40
- Project maintainers have the right and responsibility to remove, edit, or
41
- reject comments, commits, code, wiki edits, issues, and other contributions
42
- that are not aligned to this Code of Conduct, or to ban temporarily or
43
- permanently any contributor for other behaviors that they deem inappropriate,
44
- threatening, offensive, or harmful.
45
-
46
- ## Scope
47
-
48
- This Code of Conduct applies both within project spaces and in public spaces
49
- when an individual is representing the project or its community. Examples of
50
- representing a project or community include using an official project e-mail
51
- address, posting via an official social media account, or acting as an appointed
52
- representative at an online or offline event. Representation of a project may be
53
- further defined and clarified by project maintainers.
54
-
55
- ## Enforcement
56
-
57
- Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
- reported by contacting the project team at lorenzoezequie30@gmail.com. All
59
- complaints will be reviewed and investigated and will result in a response that
60
- is deemed necessary and appropriate to the circumstances. The project team is
61
- obligated to maintain confidentiality with regard to the reporter of an incident.
62
- Further details of specific enforcement policies may be posted separately.
63
-
64
- Project maintainers who do not follow or enforce the Code of Conduct in good
65
- faith may face temporary or permanent repercussions as determined by other
66
- members of the project's leadership.
67
-
68
- ## Attribution
69
-
70
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
- available at [http://contributor-covenant.org/version/1/4][version]
72
-
73
- [homepage]: http://contributor-covenant.org
74
- [version]: http://contributor-covenant.org/version/1/4/
data/Gemfile DELETED
@@ -1,4 +0,0 @@
1
- source "https://rubygems.org"
2
-
3
- # Specify your gem's dependencies in dolar-bna.gemspec
4
- gemspec
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2019 elorenzo368
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in
13
- all copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21
- THE SOFTWARE.
data/README.md DELETED
@@ -1,43 +0,0 @@
1
- # Dolar::Bna
2
-
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/dolar/bna`. To experiment with that code, run `bin/console` for an interactive prompt.
4
-
5
- TODO: Delete this and the text above, and describe your gem
6
-
7
- ## Installation
8
-
9
- Add this line to your application's Gemfile:
10
-
11
- ```ruby
12
- gem 'dolar-bna'
13
- ```
14
-
15
- And then execute:
16
-
17
- $ bundle
18
-
19
- Or install it yourself as:
20
-
21
- $ gem install dolar-bna
22
-
23
- ## Usage
24
-
25
- TODO: Write usage instructions here
26
-
27
- ## Development
28
-
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
30
-
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
-
33
- ## Contributing
34
-
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/dolar-bna. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
-
37
- ## License
38
-
39
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
40
-
41
- ## Code of Conduct
42
-
43
- Everyone interacting in the Dolar::Bna project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/dolar-bna/blob/master/CODE_OF_CONDUCT.md).
data/Rakefile DELETED
@@ -1,6 +0,0 @@
1
- require "bundler/gem_tasks"
2
- require "rspec/core/rake_task"
3
-
4
- RSpec::Core::RakeTask.new(:spec)
5
-
6
- task :default => :spec
@@ -1,14 +0,0 @@
1
- #!/usr/bin/env ruby
2
-
3
- require "bundler/setup"
4
- require "dolar/bna"
5
-
6
- # You can add fixtures and/or initialization code here to make experimenting
7
- # with your gem easier. You can also use a different console, if you like.
8
-
9
- # (If you use this, don't forget to add pry to your Gemfile!)
10
- # require "pry"
11
- # Pry.start
12
-
13
- require "irb"
14
- IRB.start(__FILE__)
data/bin/setup DELETED
@@ -1,8 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
7
-
8
- # Do any other automated setup that you need to do here
@@ -1,33 +0,0 @@
1
- lib = File.expand_path("lib", __dir__)
2
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
-
4
- require "dolar/bna/version"
5
-
6
- Gem::Specification.new do |spec|
7
- spec.name = "dolar-bna"
8
- spec.version = Dolar::Bna::VERSION
9
- spec.authors = ["LITECODE"]
10
- spec.email = ["lorenzoezequiel30@gmail.com"]
11
-
12
- spec.summary = %q{Cotizador de USD/ARS}
13
- spec.description = %q{Gema para obtener cotización de dolar divisa y dolar billete desde el sitio web del Banco Nación de Argentina }
14
- spec.homepage = "http://litecode.com.ar/"
15
- spec.license = "MIT"
16
-
17
- spec.metadata["allowed_push_host"] = "https://rubygems.org"
18
-
19
- spec.metadata["homepage_uri"] = spec.homepage
20
-
21
- # Specify which files should be added to the gem when it is released.
22
- # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
23
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
24
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
25
- end
26
- spec.bindir = "exe"
27
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
28
- spec.require_paths = ["lib"]
29
-
30
- spec.add_development_dependency "bundler", "~> 2.0"
31
- spec.add_development_dependency "rake", "~> 10.0"
32
- spec.add_development_dependency "rspec", "~> 3.0"
33
- end