ssdl 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.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 33bec405cf1038b480f05d5c0415bb9177d884e3
4
+ data.tar.gz: c107f110947858b0ee76e3df6d4fd22c019a76ee
5
+ SHA512:
6
+ metadata.gz: 376f7f90d1e6d2462c691ea1281878996a58868082dbc7f2bb6ff5f9ac9ad54693d7f74e36f2247c4e922762877c8af6b51b569b811a078fb7835a70268d04b7
7
+ data.tar.gz: 6ff232b87671e3327c75b1fe8c5ef0d08b97a2833db98aa57489937e25cf952ceccfbc02ceee4dcb76b0a92bb2f8629812774e9588f276060c50c45016b5f984
data/.gitignore ADDED
@@ -0,0 +1,16 @@
1
+ *.gem
2
+ /.bundle/
3
+ /.yardoc
4
+ /Gemfile.lock
5
+ /_yardoc/
6
+ /coverage/
7
+ /doc/
8
+ /pkg/
9
+ /spec/reports/
10
+ /tmp/
11
+ *.bundle
12
+ *.so
13
+ *.o
14
+ *.a
15
+ mkmf.log
16
+ /vendor
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in sldn.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 tigberd
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,30 @@
1
+ # SSDL
2
+
3
+ SlideShare slide images downloader
4
+
5
+ ## Installation
6
+
7
+ ```
8
+ $ gem install ssdl
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```
14
+ $ ssdl http://www.slideshare.net/korlayashwanth/download-disabled-slide-share-ppts-by-authors
15
+ ```
16
+
17
+ or
18
+
19
+ ```
20
+ $ ssdl http://www.slideshare.net/korlayashwanth/download-disabled-slide-share-ppts-by-authors download.pdf
21
+ ```
22
+
23
+
24
+ ## Contributing
25
+
26
+ 1. Fork it ( https://github.com/[my-github-username]/ssdl/fork )
27
+ 2. Create your feature branch (`git checkout -b my-new-feature`)
28
+ 3. Commit your changes (`git commit -am 'Add some feature'`)
29
+ 4. Push to the branch (`git push origin my-new-feature`)
30
+ 5. Create a new Pull Request
data/Rakefile ADDED
@@ -0,0 +1,2 @@
1
+ require "bundler/gem_tasks"
2
+
data/bin/ssdl ADDED
@@ -0,0 +1,18 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ $LOAD_PATH.unshift(File.dirname(__FILE__) + '/../lib')
4
+
5
+ require 'ssdl'
6
+
7
+ if ARGV.length != 1 && ARGV.length != 2
8
+ puts 'Usage: '
9
+ puts ' ssdl URL'
10
+ puts ' ssdl URL FILE_NAME'
11
+ exit
12
+ end
13
+
14
+ url = ARGV[0]
15
+ slide = Ssdl::Slide.new(url)
16
+
17
+ file_name = ARGV.length == 2 ? ARGV[1] : "#{slide.name}.pdf"
18
+ Ssdl::Generator.generate(slide, name: file_name)
data/lib/ssdl.rb ADDED
@@ -0,0 +1,3 @@
1
+ require 'ssdl/version'
2
+ require 'ssdl/slide'
3
+ require 'ssdl/generator'
@@ -0,0 +1,14 @@
1
+ require 'prawn'
2
+
3
+ module Ssdl
4
+ class Generator
5
+ def self.generate(slide, name: "#{slide.name}.pdf")
6
+ Prawn::Document.generate(name, page_size: [1024,768], margin:0) do
7
+ slide.pages.map do |page|
8
+ image(page, fit: [1024, 768])
9
+ start_new_page
10
+ end
11
+ end
12
+ end
13
+ end
14
+ end
data/lib/ssdl/slide.rb ADDED
@@ -0,0 +1,49 @@
1
+ require 'logger'
2
+ require 'nokogiri'
3
+ require 'open-uri'
4
+
5
+ module Ssdl
6
+ class Slide
7
+ attr_reader :name, :page_urls, :count
8
+
9
+ def logger
10
+ @logger ||= Logger.new(STDOUT)
11
+ end
12
+
13
+ def initialize(slide_url)
14
+ logger.info("Open Url: #{slide_url}")
15
+ html = Nokogiri::HTML.parse(open(slide_url))
16
+
17
+ xml_url = extract_xml_url(html)
18
+ @name = extract_name(xml_url)
19
+ @count = Nokogiri::XML.parse(open(xml_url)).xpath('/Show/Slide').count
20
+
21
+ raise 'slide pages not exists' if count.zero?
22
+
23
+ @page_urls = (1..count).map { |i| "http://image.slidesharecdn.com/#{name}/95/slide-#{i}-1024.jpg" }
24
+ end
25
+
26
+ def pages
27
+ @pages ||= page_urls.map { |url|
28
+ logger.info("Download Image: #{url}")
29
+ begin
30
+ open(url)
31
+ rescue OpenURI::HTTPError
32
+ logger.warn("Download Error: #{url}")
33
+ nil
34
+ end
35
+ }.compact
36
+ end
37
+
38
+ private
39
+
40
+ def extract_xml_url(html)
41
+ thumbnail_url = html.xpath('/html/head/meta[@name="thumbnail"]').first.attributes['content'].value
42
+ thumbnail_url.gsub(%r{(^.+/)ss_thumbnails/(.+)-thumbnail.jpg\?(.+$)}, '\1\2.xml')
43
+ end
44
+
45
+ def extract_name(xml_url)
46
+ xml_url.match(%r{.+cdn\.slidesharecdn\.com/(.+)\.xml}).captures.first
47
+ end
48
+ end
49
+ end
@@ -0,0 +1,3 @@
1
+ module Ssdl
2
+ VERSION = "0.0.1"
3
+ end
data/ssdl.gemspec ADDED
@@ -0,0 +1,28 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'ssdl/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = 'ssdl'
8
+ spec.executables = ['ssdl']
9
+
10
+ spec.version = Ssdl::VERSION
11
+ spec.authors = ['tigberd']
12
+ spec.email = ['tigberd@gmail.com']
13
+ spec.summary = 'SlideShare slide images downloader'
14
+ spec.homepage = 'https://github.com/tigberd/ssdl'
15
+
16
+ spec.files = `git ls-files -z`.split("\x0")
17
+ spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
18
+ spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
19
+ spec.require_paths = ["lib"]
20
+ spec.license = 'MIT'
21
+
22
+ spec.homepage = 'https://github.com/tigberd/ssdl'
23
+
24
+ spec.add_runtime_dependency 'nokogiri', '~> 1.6'
25
+ spec.add_runtime_dependency 'prawn', '~> 1.3'
26
+ spec.add_development_dependency 'bundler', '~> 1.7'
27
+ spec.add_development_dependency 'rake', '~> 10.0'
28
+ end
metadata ADDED
@@ -0,0 +1,113 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: ssdl
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - tigberd
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-10-30 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.6'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.6'
27
+ - !ruby/object:Gem::Dependency
28
+ name: prawn
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.3'
34
+ type: :runtime
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.3'
41
+ - !ruby/object:Gem::Dependency
42
+ name: bundler
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '1.7'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '1.7'
55
+ - !ruby/object:Gem::Dependency
56
+ name: rake
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '10.0'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '10.0'
69
+ description:
70
+ email:
71
+ - tigberd@gmail.com
72
+ executables:
73
+ - ssdl
74
+ extensions: []
75
+ extra_rdoc_files: []
76
+ files:
77
+ - ".gitignore"
78
+ - Gemfile
79
+ - LICENSE.txt
80
+ - README.md
81
+ - Rakefile
82
+ - bin/ssdl
83
+ - lib/ssdl.rb
84
+ - lib/ssdl/generator.rb
85
+ - lib/ssdl/slide.rb
86
+ - lib/ssdl/version.rb
87
+ - ssdl.gemspec
88
+ homepage: https://github.com/tigberd/ssdl
89
+ licenses:
90
+ - MIT
91
+ metadata: {}
92
+ post_install_message:
93
+ rdoc_options: []
94
+ require_paths:
95
+ - lib
96
+ required_ruby_version: !ruby/object:Gem::Requirement
97
+ requirements:
98
+ - - ">="
99
+ - !ruby/object:Gem::Version
100
+ version: '0'
101
+ required_rubygems_version: !ruby/object:Gem::Requirement
102
+ requirements:
103
+ - - ">="
104
+ - !ruby/object:Gem::Version
105
+ version: '0'
106
+ requirements: []
107
+ rubyforge_project:
108
+ rubygems_version: 2.4.5.1
109
+ signing_key:
110
+ specification_version: 4
111
+ summary: SlideShare slide images downloader
112
+ test_files: []
113
+ has_rdoc: