s3_tree 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA1:
3
+ metadata.gz: 81d145838e84b58f987d83cc6c81d935fb490063
4
+ data.tar.gz: 5e0c67498689c33ebb9a7c88d68441be529d258b
5
+ SHA512:
6
+ metadata.gz: 5d85b3ee763069cd275e83a4cd977d74ee87c8c217c295612bc51e4741166fc3ebaee37212c242f910ace83e7ae5cc0b63e2428392bebfabf33b0a6c3afdc43c
7
+ data.tar.gz: 128dbf471a9acf3410aaaebeaab7122e15f4256dd0a8d7e580211c01b891bebaf9f0882853b96c8b078a712debc6ad85c3925dbed82e968f58f47faabd7081b6
data/.gitignore ADDED
@@ -0,0 +1,12 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+
11
+ # rspec failure tracking
12
+ .rspec_status
data/.rspec ADDED
@@ -0,0 +1,2 @@
1
+ --format documentation
2
+ --color
data/.travis.yml ADDED
@@ -0,0 +1,5 @@
1
+ sudo: false
2
+ language: ruby
3
+ rvm:
4
+ - 2.4.0
5
+ before_install: gem install bundler -v 1.15.0
@@ -0,0 +1,74 @@
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 TODO: Write your email address. 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 ADDED
@@ -0,0 +1,6 @@
1
+ source "https://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in s3_tree.gemspec
4
+ gemspec
5
+
6
+ gem 'aws-sdk', '~> 2'
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2017 TODO: Write your name
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 ADDED
@@ -0,0 +1,135 @@
1
+ # S3Tree
2
+
3
+ This gem use to create tree structure or listing of AWS S3 files and directories.
4
+
5
+ ## Installation
6
+
7
+ Add this line to your application's Gemfile:
8
+
9
+ ```ruby
10
+ gem 's3_tree'
11
+ ```
12
+
13
+ And then execute:
14
+
15
+ $ bundle
16
+
17
+ Or install it yourself as:
18
+
19
+ $ gem install s3_tree
20
+ ## Requirements
21
+ ```ruby
22
+ gem 'aws-sdk', '~> 2'
23
+ ```
24
+
25
+ Currently this gem support only 'aws-sdk' version 2. See documentation for [aws-sdk-ruby](https://github.com/aws/aws-sdk-ruby).
26
+ ## Syntax
27
+ ```ruby
28
+ S3Tree.tree(bucket_object,path_to_directory)
29
+ ```
30
+ Leave `path` option blank for get all listing
31
+ ## Usage
32
+ ```ruby
33
+ require 's3_tree'
34
+
35
+ class ReportsController < ApplicationController
36
+ def index
37
+ s3 = Aws::S3::Resource.new
38
+ bucket = s3.bucket('g8way-files')
39
+ @tree = S3Tree.tree(bucket,'')
40
+ end
41
+ end
42
+ ```
43
+ `index.html.erb`
44
+ ```html
45
+ <table>
46
+ <thead>
47
+ <tr>
48
+ <th>Name</th>
49
+ <th>Last Modified</th>
50
+ <th>Size</th>
51
+ </tr>
52
+ </thead>
53
+ <tbody>
54
+ <% @tree.each do |node| %>
55
+ <tr>
56
+ <td>
57
+ <% if (node.class == S3Tree::File) %>
58
+ <%= link_to node.name, node.url %>
59
+ <% else %>
60
+ <%= link_to node.name, reports_path(path: node.path)%>
61
+ <% end %>
62
+ </td>
63
+ <td width="25%">
64
+ <%= node.last_modified %>
65
+ </td>
66
+ <td width="15%">
67
+ <%= node.size %>
68
+ </td>
69
+ </tr>
70
+ </tbody>
71
+ <% end %>
72
+ <% end %>
73
+ </table>
74
+
75
+ ```
76
+ ## Useful methods
77
+
78
+ `Directory Methods`
79
+ > name
80
+
81
+ It will return name of directory.
82
+
83
+ > parent
84
+
85
+ It will return parent directory if exist.
86
+
87
+ > subdirectories
88
+
89
+ It will return subdirectory of current directory.
90
+
91
+ > files
92
+
93
+ It will return all files of current directory.
94
+
95
+ > children
96
+
97
+ It will return subdirectory and files combination of current directory.
98
+
99
+ > size
100
+
101
+ It will return size of directory.
102
+
103
+ > last_modified
104
+
105
+ Last modification date of directory.
106
+
107
+ `File Methods`
108
+
109
+ > name
110
+
111
+ It will return name of file.
112
+
113
+ > extension
114
+
115
+ It will return extension of file.
116
+
117
+ > directory
118
+
119
+ It will return container directory.
120
+
121
+ > s3_object
122
+
123
+ It will return original s3 object for direct use.
124
+
125
+ > size
126
+
127
+ It will return size of directory.
128
+
129
+ > last_modified
130
+
131
+ Last modification date of directory.
132
+
133
+ > url
134
+
135
+ It will return presigned url for one click download file.
data/Rakefile ADDED
@@ -0,0 +1,6 @@
1
+ require "bundler/gem_tasks"
2
+ require "rspec/core/rake_task"
3
+
4
+ RSpec::Core::RakeTask.new(:spec)
5
+
6
+ task :default => :spec
data/bin/console ADDED
@@ -0,0 +1,14 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "s3_tree"
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 ADDED
@@ -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,3 @@
1
+ module S3Tree
2
+ VERSION = "0.0.1"
3
+ end
data/lib/s3_tree.rb ADDED
@@ -0,0 +1,44 @@
1
+ require 's3_tree/version'
2
+ require 's3_tree/directory'
3
+ require 's3_tree/file'
4
+
5
+ module S3Tree
6
+ def self.tree(bucket_name,path='')
7
+ path = path + '/' if path.present?
8
+ s3 = Aws::S3::Resource.new
9
+ bucket = s3.bucket(bucket_name)
10
+ S3Tree::Directory.new(bucket,path).children
11
+ end
12
+
13
+ # def self.list(bucket_name,path='')
14
+ # tree = {}
15
+ # path = path + '/' if path.present?
16
+ # s3 = Aws::S3::Resource.new
17
+ # bucket = s3.bucket(bucket_name)
18
+ # objects = bucket.objects.collect(&:key)
19
+ # objects.each do |object|
20
+ # length = object.length
21
+ # array = object.split('/')
22
+ # value = array.pop
23
+ # directories = S3Tree::Directory.new(bucket,path).children if array[length - 1] == '/'
24
+ # h = array.reverse.inject(value) { |a, n| { n => a } }
25
+ # end
26
+ #
27
+ # end
28
+ #
29
+ # private
30
+ #
31
+ # def generate_tree(bucket,path='')
32
+ # directories = S3Tree::Directory.new(bucket,path).subdirectories
33
+ # directories.each do |directory|
34
+ #
35
+ # #
36
+ # # tree[directory.name] = {}
37
+ # # directories = S3Tree::Directory.new(bucket,URI.decode(directory.path).gsub('+', ' '))
38
+ # # else
39
+ # # tree[directory.directory.name] = S3Tree::Directory.new(bucket,directory.name + '/').files
40
+ # # end
41
+ # end
42
+ # end
43
+
44
+ end
data/s3_tree.gemspec ADDED
@@ -0,0 +1,36 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path("../lib", __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require "s3_tree/version"
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "s3_tree"
8
+ spec.version = S3Tree::VERSION
9
+ spec.authors = ["Hardik Upadhyay"]
10
+ spec.email = ["hardik.upadhyay1992@gmail.com"]
11
+
12
+ spec.summary = %q{s3 bucket listing}
13
+ spec.description = %q{Represent your S3 bucket directory or file in tree view. }
14
+ spec.homepage = "http://rubygems.org/gems/s3_tree"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
+ # to allow pushing to a single host or delete this section to allow pushing to any host.
19
+ if spec.respond_to?(:metadata)
20
+ spec.metadata["allowed_push_host"] = 'https://rubygems.org/'
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against " \
23
+ "public gem pushes."
24
+ end
25
+
26
+ spec.files = `git ls-files -z`.split("\x0").reject do |f|
27
+ f.match(%r{^(test|spec|features)/})
28
+ end
29
+ spec.bindir = "exe"
30
+ spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
31
+ spec.require_paths = ["lib"]
32
+
33
+ spec.add_development_dependency "bundler", "~> 1.15"
34
+ spec.add_development_dependency "rake", "~> 10.0"
35
+ spec.add_development_dependency "rspec", "~> 3.0"
36
+ end
metadata ADDED
@@ -0,0 +1,100 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: s3_tree
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Hardik Upadhyay
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2017-05-30 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.15'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.15'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10.0'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10.0'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3.0'
55
+ description: 'Represent your S3 bucket directory or file in tree view. '
56
+ email:
57
+ - hardik.upadhyay1992@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".rspec"
64
+ - ".travis.yml"
65
+ - CODE_OF_CONDUCT.md
66
+ - Gemfile
67
+ - LICENSE.txt
68
+ - README.md
69
+ - Rakefile
70
+ - bin/console
71
+ - bin/setup
72
+ - lib/s3_tree.rb
73
+ - lib/s3_tree/version.rb
74
+ - s3_tree.gemspec
75
+ homepage: http://rubygems.org/gems/s3_tree
76
+ licenses:
77
+ - MIT
78
+ metadata:
79
+ allowed_push_host: https://rubygems.org/
80
+ post_install_message:
81
+ rdoc_options: []
82
+ require_paths:
83
+ - lib
84
+ required_ruby_version: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ required_rubygems_version: !ruby/object:Gem::Requirement
90
+ requirements:
91
+ - - ">="
92
+ - !ruby/object:Gem::Version
93
+ version: '0'
94
+ requirements: []
95
+ rubyforge_project:
96
+ rubygems_version: 2.6.8
97
+ signing_key:
98
+ specification_version: 4
99
+ summary: s3 bucket listing
100
+ test_files: []