nfe-xml 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.
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 0f9925173a7031c1416bf46e1451c5bfb70b7bec
4
+ data.tar.gz: d319cbe6de8677ab1c4fc896eea9a7211aedd6e7
5
+ SHA512:
6
+ metadata.gz: 1357dbd029e8e54986407b7c72118b7b7ce6130d151c9c097b3d6d5bb10039e462204108b147dcd1d021fb0154ab95db4a15c15ffbc0caf3427460fb0be63f1d
7
+ data.tar.gz: 392354153af233212ebaf964b06744f8248b1f39d7a0bacc7d1e04047da807a21848b971c1c621537f87844e9a1622efde8e5c95f0b714bc0e7ff9d9ba26ed9b
@@ -0,0 +1,49 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, and in the interest of
4
+ fostering an open and welcoming community, we pledge to respect all people who
5
+ contribute through reporting issues, posting feature requests, updating
6
+ documentation, submitting pull requests or patches, and other activities.
7
+
8
+ We are committed to making participation in this project a harassment-free
9
+ experience for everyone, regardless of level of experience, gender, gender
10
+ identity and expression, sexual orientation, disability, personal appearance,
11
+ body size, race, ethnicity, age, religion, or nationality.
12
+
13
+ Examples of unacceptable behavior by participants include:
14
+
15
+ * The use of sexualized language or imagery
16
+ * Personal attacks
17
+ * Trolling or insulting/derogatory comments
18
+ * Public or private harassment
19
+ * Publishing other's private information, such as physical or electronic
20
+ addresses, without explicit permission
21
+ * Other unethical or unprofessional conduct
22
+
23
+ Project maintainers have the right and responsibility to remove, edit, or
24
+ reject comments, commits, code, wiki edits, issues, and other contributions
25
+ that are not aligned to this Code of Conduct, or to ban temporarily or
26
+ permanently any contributor for other behaviors that they deem inappropriate,
27
+ threatening, offensive, or harmful.
28
+
29
+ By adopting this Code of Conduct, project maintainers commit themselves to
30
+ fairly and consistently applying these principles to every aspect of managing
31
+ this project. Project maintainers who do not follow or enforce the Code of
32
+ Conduct may be permanently removed from the project team.
33
+
34
+ This code of conduct applies both within project spaces and in public spaces
35
+ when an individual is representing the project or its community.
36
+
37
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
38
+ reported by contacting a project maintainer at tofoli.luis@gmail.com. All
39
+ complaints will be reviewed and investigated and will result in a response that
40
+ is deemed necessary and appropriate to the circumstances. Maintainers are
41
+ obligated to maintain confidentiality with regard to the reporter of an
42
+ incident.
43
+
44
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
45
+ version 1.3.0, available at
46
+ [http://contributor-covenant.org/version/1/3/0/][version]
47
+
48
+ [homepage]: http://contributor-covenant.org
49
+ [version]: http://contributor-covenant.org/version/1/3/0/
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+ gemspec
3
+
4
+ gem 'nokogiri'
@@ -0,0 +1,24 @@
1
+ PATH
2
+ remote: .
3
+ specs:
4
+ nfe-xml (0.1.1)
5
+ nokogiri (~> 1.5)
6
+
7
+ GEM
8
+ remote: https://rubygems.org/
9
+ specs:
10
+ mini_portile2 (2.1.0)
11
+ nokogiri (1.6.8)
12
+ mini_portile2 (~> 2.1.0)
13
+ pkg-config (~> 1.1.7)
14
+ pkg-config (1.1.7)
15
+
16
+ PLATFORMS
17
+ ruby
18
+
19
+ DEPENDENCIES
20
+ nfe-xml!
21
+ nokogiri
22
+
23
+ BUNDLED WITH
24
+ 1.12.5
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 Luis Tofoli
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.
@@ -0,0 +1,59 @@
1
+ # Nfe
2
+
3
+ NFe gem validates XML NFe used the site https://www.sefaz.rs.gov.br
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 'nfe'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install nfe
20
+
21
+ ## Usage
22
+
23
+ On terminal you can use nfe like this:
24
+ ```ruby
25
+ require 'nfe'
26
+
27
+ xml = Nfe::Xml.new('~/nfe.xml')
28
+ xml = Nfe::Xml.new <<-XML
29
+ <?xml version="1.0" encoding="utf-8"?>
30
+ <NFe>
31
+ .
32
+ .
33
+ .
34
+ </NFe>
35
+ XML
36
+
37
+ xml.valid? # Returns boolean
38
+ xml.result.messages # Returns Hash
39
+ ```
40
+
41
+ You can use from terminal either
42
+ ```bash
43
+ $ validate ~/nfe.xml ~/nfe2.xml
44
+ ```
45
+ ## Development
46
+
47
+ After checking out the repo, run `bin/setup` to install dependencies. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
48
+
49
+ 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).
50
+
51
+ ## Contributing
52
+
53
+ Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/nfe. 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.
54
+
55
+
56
+ ## License
57
+
58
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
59
+
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+ task :default => :spec
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "nfe"
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
@@ -0,0 +1,8 @@
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
@@ -0,0 +1,20 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift(File.expand_path(File.dirname(__FILE__) + "/../lib"))
4
+ require 'nfe'
5
+
6
+ if ARGV.count > 0
7
+ ARGV.each do |file|
8
+ xml = Nfe::Xml.new(file)
9
+ puts "#{file}:"
10
+ puts " #{xml.valid?}"
11
+ puts " Messages:"
12
+ xml.result.messages.each do |key, msg|
13
+ puts " #{key} #{msg}"
14
+ end
15
+ end
16
+ else
17
+ puts 'How to use'
18
+ puts ' validate ~/nfe.xml'
19
+ puts ' validate ~/nfe.xml ~/nfe2.xml'
20
+ end
@@ -0,0 +1,2 @@
1
+ module Nfe
2
+ end
@@ -0,0 +1,3 @@
1
+ module Nfe
2
+ VERSION = '0.1.1'
3
+ end
@@ -0,0 +1,49 @@
1
+ require 'nokogiri'
2
+
3
+ module Nfe
4
+ module WebService
5
+ class SearchResult
6
+ attr_accessor :body
7
+
8
+ def initialize(html_body)
9
+ self.body = html_body
10
+ end
11
+
12
+ def messages
13
+ return @msg if @msg
14
+ nodes = Nokogiri::HTML(body).css('.tabela_resultado li').to_a
15
+ @msg = {}
16
+
17
+ nodes[0..2].each do |node|
18
+ @msg[gsub_key(node)] = gsub_message(node)
19
+ end
20
+
21
+ nodes[3].css('ul li').each do |node|
22
+ @msg[gsub_key(node)] = gsub_message(node)
23
+ end if nodes[3]
24
+
25
+ @msg
26
+ end
27
+
28
+ private
29
+ def gsub_message(node)
30
+ node.to_s.
31
+ gsub(node.css('img').to_s,'').
32
+ gsub(node.css('b').to_s, '').
33
+ gsub(node.css('a').to_s, '').
34
+ gsub(/\[\]/, '').
35
+ gsub(/^CN=/, '').
36
+ gsub(/<\/?li>/, '').
37
+ gsub(/\t|\n/, '').
38
+ strip
39
+ end
40
+
41
+ def gsub_key(node)
42
+ node.css('b').to_s.
43
+ gsub(/<\/?b>/, '').
44
+ gsub(/\t|\n/, '').
45
+ strip
46
+ end
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,41 @@
1
+ require 'net/http'
2
+ require_relative 'web_service/search_result'
3
+
4
+ module Nfe
5
+ class Xml
6
+ attr_accessor :result
7
+
8
+ def initialize(xml_or_file)
9
+ xml_or_file = File.read(xml_or_file) if File.exist?(xml_or_file)
10
+ @xml_content = xml_or_file
11
+ end
12
+
13
+ def valid?
14
+ case request
15
+ when Net::HTTPSuccess then
16
+ self.result = WebService::SearchResult.new(request.body)
17
+ !request.body.include?('../Imagens/erro.png')
18
+ else
19
+ false
20
+ end
21
+ end
22
+
23
+ private
24
+ attr_accessor :xml_content
25
+
26
+ def base_uri
27
+ return @base_uri if @base_uri
28
+ @base_uri = URI('https://www.sefaz.rs.gov.br/NFE/NFE-VAL.aspx')
29
+ end
30
+
31
+ def request
32
+ return @request if @request
33
+
34
+ http = Net::HTTP.new(base_uri.host, base_uri.port)
35
+ http.use_ssl = true
36
+ request = Net::HTTP::Post.new(base_uri.request_uri)
37
+ request.set_form_data(txtxml: xml_content)
38
+ @request = http.request(request)
39
+ end
40
+ end
41
+ end
@@ -0,0 +1,23 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'nfe/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'nfe-xml'
8
+ spec.version = Nfe::VERSION
9
+ spec.authors = ['Luis Tofoli']
10
+ spec.email = ['tofoli.luis@gmail.com']
11
+
12
+ spec.summary = %q{API to validate the signature of an XML of NF-e}
13
+ spec.description = %q{API to validate the signature of an XML of NF-e}
14
+ spec.homepage = 'https://github.com/tofoli/nfe'
15
+ spec.license = 'MIT'
16
+
17
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
18
+ spec.bindir = 'exe'
19
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
20
+ spec.require_paths = ['lib']
21
+
22
+ spec.add_dependency 'nokogiri', '~> 1.5'
23
+ end
metadata ADDED
@@ -0,0 +1,72 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: nfe-xml
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.1
5
+ platform: ruby
6
+ authors:
7
+ - Luis Tofoli
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-08-09 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: nokogiri
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.5'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.5'
27
+ description: API to validate the signature of an XML of NF-e
28
+ email:
29
+ - tofoli.luis@gmail.com
30
+ executables: []
31
+ extensions: []
32
+ extra_rdoc_files: []
33
+ files:
34
+ - CODE_OF_CONDUCT.md
35
+ - Gemfile
36
+ - Gemfile.lock
37
+ - LICENSE.txt
38
+ - README.md
39
+ - Rakefile
40
+ - bin/console
41
+ - bin/setup
42
+ - bin/validate
43
+ - lib/nfe.rb
44
+ - lib/nfe/version.rb
45
+ - lib/nfe/web_service/search_result.rb
46
+ - lib/nfe/xml.rb
47
+ - nfe.gemspec
48
+ homepage: https://github.com/tofoli/nfe
49
+ licenses:
50
+ - MIT
51
+ metadata: {}
52
+ post_install_message:
53
+ rdoc_options: []
54
+ require_paths:
55
+ - lib
56
+ required_ruby_version: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - ">="
59
+ - !ruby/object:Gem::Version
60
+ version: '0'
61
+ required_rubygems_version: !ruby/object:Gem::Requirement
62
+ requirements:
63
+ - - ">="
64
+ - !ruby/object:Gem::Version
65
+ version: '0'
66
+ requirements: []
67
+ rubyforge_project:
68
+ rubygems_version: 2.5.1
69
+ signing_key:
70
+ specification_version: 4
71
+ summary: API to validate the signature of an XML of NF-e
72
+ test_files: []