web_rules 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.
- data/.gitignore +17 -0
- data/Gemfile +6 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/install.sh +3 -0
- data/lib/web.rules +7 -0
- data/lib/web_rules/version.rb +3 -0
- data/lib/web_rules.rb +58 -0
- data/web_rules.gemspec +19 -0
- metadata +55 -0
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Copyright (c) 2012 Chemeris P.Taras
|
|
2
|
+
|
|
3
|
+
MIT License
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
|
6
|
+
a copy of this software and associated documentation files (the
|
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
|
11
|
+
the following conditions:
|
|
12
|
+
|
|
13
|
+
The above copyright notice and this permission notice shall be
|
|
14
|
+
included in all copies or substantial portions of the Software.
|
|
15
|
+
|
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# WebRules
|
|
2
|
+
|
|
3
|
+
TODO: Write a gem description
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
Add this line to your application's Gemfile:
|
|
8
|
+
|
|
9
|
+
gem 'web_rules'
|
|
10
|
+
|
|
11
|
+
And then execute:
|
|
12
|
+
|
|
13
|
+
$ bundle
|
|
14
|
+
|
|
15
|
+
Or install it yourself as:
|
|
16
|
+
|
|
17
|
+
$ gem install web_rules
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
TODO: Write usage instructions here
|
|
22
|
+
|
|
23
|
+
## Contributing
|
|
24
|
+
|
|
25
|
+
1. Fork it
|
|
26
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
|
27
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
|
28
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
|
29
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
require "bundler/gem_tasks"
|
data/install.sh
ADDED
data/lib/web.rules
ADDED
data/lib/web_rules.rb
ADDED
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
require "web_rules/version"
|
|
2
|
+
require 'nokogiri'
|
|
3
|
+
require 'open-uri'
|
|
4
|
+
|
|
5
|
+
module WebRules
|
|
6
|
+
|
|
7
|
+
def recurse_select_refs(host, url, recurse, id)
|
|
8
|
+
return if recurse <= 0
|
|
9
|
+
result = @objects[id]
|
|
10
|
+
begin
|
|
11
|
+
doc = Nokogiri::HTML(open(url))
|
|
12
|
+
rescue Exception => e
|
|
13
|
+
puts e,"----",url
|
|
14
|
+
return nil
|
|
15
|
+
end
|
|
16
|
+
refs = doc.xpath('//a')
|
|
17
|
+
refs.each do |r|
|
|
18
|
+
begin
|
|
19
|
+
uri = URI.parse(r['href'])
|
|
20
|
+
rescue Exception => e
|
|
21
|
+
puts e
|
|
22
|
+
puts uri.to_s
|
|
23
|
+
next
|
|
24
|
+
end
|
|
25
|
+
result[r['href']] = url
|
|
26
|
+
a = r['href']
|
|
27
|
+
begin
|
|
28
|
+
a = URI::HTTP.build({:host => URI.parse(host).host, :path => r['href']}).to_s if uri.host.nil?
|
|
29
|
+
rescue
|
|
30
|
+
next
|
|
31
|
+
end
|
|
32
|
+
if !uri.host.nil? and uri.host == URI.parse(host).host
|
|
33
|
+
recurse_select_refs(host, a, recurse - 1, id)
|
|
34
|
+
end
|
|
35
|
+
# puts recurse.to_s + ' - ' + r['href']
|
|
36
|
+
end
|
|
37
|
+
end
|
|
38
|
+
|
|
39
|
+
def web_select_all_links
|
|
40
|
+
level = @data_stack.pop
|
|
41
|
+
url = @data_stack.pop
|
|
42
|
+
uri = URI.parse(url)
|
|
43
|
+
host = URI::HTTP.build({host: uri.host}).to_s
|
|
44
|
+
id = unique_id
|
|
45
|
+
@objects[id] = {}
|
|
46
|
+
recurse_select_refs(host, url, 2, id)
|
|
47
|
+
# puts "-----------------------", @objects[id].length
|
|
48
|
+
@data_stack.push id
|
|
49
|
+
end
|
|
50
|
+
|
|
51
|
+
|
|
52
|
+
def web_host
|
|
53
|
+
url = @data_stack.pop
|
|
54
|
+
uri = URI.parse(url)
|
|
55
|
+
@data_stack.push URI::HTTP.build({host: uri.host}).to_s
|
|
56
|
+
end
|
|
57
|
+
# Your code goes here...
|
|
58
|
+
end
|
data/web_rules.gemspec
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
4
|
+
require 'web_rules/version'
|
|
5
|
+
|
|
6
|
+
Gem::Specification.new do |gem|
|
|
7
|
+
gem.name = "web_rules"
|
|
8
|
+
gem.version = WebRules::VERSION
|
|
9
|
+
gem.authors = ["Chemeris P.Taras"]
|
|
10
|
+
gem.email = ["chemt79@gmail.com"]
|
|
11
|
+
gem.description = %q{Hi level web access library got rules}
|
|
12
|
+
gem.summary = %q{Web access library}
|
|
13
|
+
gem.homepage = ""
|
|
14
|
+
|
|
15
|
+
gem.files = `git ls-files`.split($/)
|
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
18
|
+
gem.require_paths = ["lib"]
|
|
19
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: web_rules
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.1
|
|
5
|
+
prerelease:
|
|
6
|
+
platform: ruby
|
|
7
|
+
authors:
|
|
8
|
+
- Chemeris P.Taras
|
|
9
|
+
autorequire:
|
|
10
|
+
bindir: bin
|
|
11
|
+
cert_chain: []
|
|
12
|
+
date: 2012-11-13 00:00:00.000000000 Z
|
|
13
|
+
dependencies: []
|
|
14
|
+
description: Hi level web access library got rules
|
|
15
|
+
email:
|
|
16
|
+
- chemt79@gmail.com
|
|
17
|
+
executables: []
|
|
18
|
+
extensions: []
|
|
19
|
+
extra_rdoc_files: []
|
|
20
|
+
files:
|
|
21
|
+
- .gitignore
|
|
22
|
+
- Gemfile
|
|
23
|
+
- LICENSE.txt
|
|
24
|
+
- README.md
|
|
25
|
+
- Rakefile
|
|
26
|
+
- install.sh
|
|
27
|
+
- lib/web.rules
|
|
28
|
+
- lib/web_rules.rb
|
|
29
|
+
- lib/web_rules/version.rb
|
|
30
|
+
- web_rules.gemspec
|
|
31
|
+
homepage: ''
|
|
32
|
+
licenses: []
|
|
33
|
+
post_install_message:
|
|
34
|
+
rdoc_options: []
|
|
35
|
+
require_paths:
|
|
36
|
+
- lib
|
|
37
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
38
|
+
none: false
|
|
39
|
+
requirements:
|
|
40
|
+
- - ! '>='
|
|
41
|
+
- !ruby/object:Gem::Version
|
|
42
|
+
version: '0'
|
|
43
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
44
|
+
none: false
|
|
45
|
+
requirements:
|
|
46
|
+
- - ! '>='
|
|
47
|
+
- !ruby/object:Gem::Version
|
|
48
|
+
version: '0'
|
|
49
|
+
requirements: []
|
|
50
|
+
rubyforge_project:
|
|
51
|
+
rubygems_version: 1.8.24
|
|
52
|
+
signing_key:
|
|
53
|
+
specification_version: 3
|
|
54
|
+
summary: Web access library
|
|
55
|
+
test_files: []
|