bbs_uploader 0.1.0

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: 3dd63e216af0a1e7bc0134740bc18287c93434df
4
+ data.tar.gz: edfd5e5cb5689ac0da4eb6d8003cea3d08f5cca9
5
+ SHA512:
6
+ metadata.gz: 7d3394668f11285957632aa7973c0fc3fcfded3878f96c5784029feb00db420dd623a47a0362e778f0d3cbdc38aaf7a7a86b58e5c38f9fac245ce7ec4e895156
7
+ data.tar.gz: 68d749afa4e7f68e133986b342063707413b994fb625e2f5303ec3ccec459285cca5084cec6f67c0dd41a8d97a519a817ba669a691e11925a5e543d2fc8d0833
data/.gitignore ADDED
@@ -0,0 +1,128 @@
1
+ /.bundle/
2
+ /.yardoc
3
+ /Gemfile.lock
4
+ /_yardoc/
5
+ /coverage/
6
+ /doc/
7
+ /pkg/
8
+ /spec/reports/
9
+ /tmp/
10
+ #### joe made this: http://goel.io/joe
11
+
12
+ #####=== Ruby ===#####
13
+
14
+ *.gem
15
+ *.rbc
16
+ /.config
17
+ /coverage/
18
+ /InstalledFiles
19
+ /pkg/
20
+ /spec/reports/
21
+ /test/tmp/
22
+ /test/version_tmp/
23
+ /tmp/
24
+
25
+ ## Specific to RubyMotion:
26
+ .dat*
27
+ .repl_history
28
+ build/
29
+
30
+ ## Documentation cache and generated files:
31
+ /.yardoc/
32
+ /_yardoc/
33
+ /doc/
34
+ /rdoc/
35
+
36
+ ## Environment normalisation:
37
+ /.bundle/
38
+ /vendor/bundle
39
+ /lib/bundler/man/
40
+
41
+ # for a library or gem, you might want to ignore these files since the code is
42
+ # intended to run in multiple environments; otherwise, check them in:
43
+ # Gemfile.lock
44
+ # .ruby-version
45
+ # .ruby-gemset
46
+
47
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
48
+ .rvmrc
49
+
50
+ #### joe made this: http://goel.io/joe
51
+
52
+ #####=== OSX ===#####
53
+ .DS_Store
54
+ .AppleDouble
55
+ .LSOverride
56
+
57
+ # Icon must end with two \r
58
+ Icon
59
+
60
+ # Thumbnails
61
+ ._*
62
+
63
+ # Files that might appear in the root of a volume
64
+ .DocumentRevisions-V100
65
+ .fseventsd
66
+ .Spotlight-V100
67
+ .TemporaryItems
68
+ .Trashes
69
+ .VolumeIcon.icns
70
+
71
+ # Directories potentially created on remote AFP share
72
+ .AppleDB
73
+ .AppleDesktop
74
+ Network Trash Folder
75
+ Temporary Items
76
+ .apdisk
77
+
78
+ #### joe made this: http://goel.io/joe
79
+
80
+ #####=== Rails ===#####
81
+
82
+ *.rbc
83
+ capybara-*.html
84
+ .rspec
85
+ /log
86
+ /tmp
87
+ /db/*.sqlite3
88
+ /db/*.sqlite3-journal
89
+ /public/system
90
+ /coverage/
91
+ /spec/tmp
92
+ **.orig
93
+ rerun.txt
94
+ pickle-email-*.html
95
+
96
+ # TODO Comment out these rules if you are OK with secrets being uploaded to the repo
97
+ config/initializers/secret_token.rb
98
+ config/secrets.yml
99
+
100
+ ## Environment normalisation:
101
+ /.bundle
102
+ /vendor/bundle
103
+
104
+ # these should all be checked in to normalise the environment:
105
+ # Gemfile.lock, .ruby-version, .ruby-gemset
106
+
107
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
108
+ .rvmrc
109
+
110
+ # if using bower-rails ignore default bower_components path bower.json files
111
+ /vendor/assets/bower_components
112
+ *.bowerrc
113
+ bower.json
114
+
115
+ # Ignore pow environment settings
116
+ .powenv
117
+
118
+ #### joe made this: http://goel.io/joe
119
+
120
+ #####=== Vim ===#####
121
+ [._]*.s[a-w][a-z]
122
+ [._]s[a-w][a-z]
123
+ *.un~
124
+ Session.vim
125
+ .netrwhist
126
+ *~
127
+
128
+ .idea/
data/.travis.yml ADDED
@@ -0,0 +1,4 @@
1
+ language: ruby
2
+ rvm:
3
+ - 2.1.5
4
+ before_install: gem install bundler -v 1.10.6
@@ -0,0 +1,13 @@
1
+ # Contributor Code of Conduct
2
+
3
+ As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4
+
5
+ We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, ethnicity, age, or religion.
6
+
7
+ Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8
+
9
+ Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10
+
11
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12
+
13
+ This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)
data/Gemfile ADDED
@@ -0,0 +1,4 @@
1
+ source 'https://rubygems.org'
2
+
3
+ # Specify your gem's dependencies in bbs_uploader.gemspec
4
+ gemspec
data/LICENSE.txt ADDED
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2016 xiajian
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,41 @@
1
+ # BbsUploader
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/bbs_uploader`. 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 'bbs_uploader'
13
+ ```
14
+
15
+ And then execute:
16
+
17
+ $ bundle
18
+
19
+ Or install it yourself as:
20
+
21
+ $ gem install bbs_uploader
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 false` 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]/bbs_uploader. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](contributor-covenant.org) code of conduct.
36
+
37
+
38
+ ## License
39
+
40
+ The gem is available as open source under the terms of the [MIT License](http://opensource.org/licenses/MIT).
41
+
data/Rakefile ADDED
@@ -0,0 +1 @@
1
+ require "bundler/gem_tasks"
@@ -0,0 +1,34 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+ require 'bbs_uploader/version'
5
+
6
+ Gem::Specification.new do |spec|
7
+ spec.name = "bbs_uploader"
8
+ spec.version = BbsUploader::VERSION
9
+ spec.authors = ["xiajian"]
10
+ spec.email = ["jhqy2011@gmail.com"]
11
+
12
+ spec.summary = %q{简单分装七牛上传的图片类}
13
+ spec.description = %q{简单封装七牛的图片上传,并演示如何创建 gem 的功能}
14
+ spec.homepage = "https://github.com/xiajian/bbs_uploader"
15
+ spec.license = "MIT"
16
+
17
+ # Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
18
+ # delete this section to allow pushing this gem to any host.
19
+ if spec.respond_to?(:metadata)
20
+ # spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
21
+ else
22
+ raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
23
+ end
24
+
25
+ spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
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_dependency "qiniu"
31
+
32
+ spec.add_development_dependency "bundler", "~> 1.10"
33
+ spec.add_development_dependency "rake", "~> 10.0"
34
+ end
data/bin/bbs_uploader ADDED
@@ -0,0 +1,48 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require 'json'
4
+ require 'psych'
5
+ require 'optparse'
6
+ require 'bundler/setup'
7
+ require 'bbs_uploader'
8
+
9
+ options = {}
10
+
11
+ OptionParser.new do |opts|
12
+ opts.banner = "Usage: bbs_uploader [options]"
13
+
14
+ opts.on_tail('-h', '--help', 'Show this message') do
15
+ puts opts
16
+ exit
17
+ end
18
+
19
+ opts.on_tail('-v', '--version', 'Print version') do
20
+ puts "bbs_uploader #{BbsUploader::VERSION}"
21
+ exit
22
+ end
23
+
24
+ opts.on('-i', '--input-file [file]', 'Default: xxx.jpg') do |file|
25
+ unless File.exist? file
26
+ puts "输入的文件 #{file} 不存在,请检查后重试"
27
+ exit
28
+ end
29
+
30
+ options[:input_file] = File.absolute_path file
31
+ end
32
+ end.parse!
33
+
34
+ if options[:input_file].nil?
35
+ file = ARGV[0]
36
+
37
+ if !file.nil? && File.exists?(file)
38
+ options[:input_file] = File.absolute_path file
39
+ elsif !file.nil?
40
+ puts "输入的文件 #{ARGV[0]} 不存在,请检查后重试"
41
+ exit
42
+ elsif file.nil?
43
+ puts "没有选择上传的图片"
44
+ exit
45
+ end
46
+ end
47
+
48
+ BbsUploader.upload_image options[:input_file]
data/bin/console ADDED
@@ -0,0 +1,24 @@
1
+ #!/usr/bin/env ruby
2
+
3
+ require "bundler/setup"
4
+ require "bbs_uploader"
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
15
+
16
+ #!/usr/bin/env ruby
17
+
18
+ require 'json'
19
+ require 'psych'
20
+ require 'optparse'
21
+ require 'bundler/setup'
22
+ require 'bbs_uploader'
23
+
24
+
data/bin/setup ADDED
@@ -0,0 +1,7 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ IFS=$'\n\t'
4
+
5
+ bundle install
6
+
7
+ # Do any other automated setup that you need to do here
@@ -0,0 +1,95 @@
1
+ require "qiniu"
2
+ require "bbs_uploader/version"
3
+
4
+ module BbsUploader
5
+ # Your code goes here...
6
+ IMAGE_URL_REGEXP = /http:\/\/.*[jpg|png|jpeg]$/
7
+
8
+ class << self
9
+ @@qiniu = {}
10
+
11
+ # 初始化全局变量 @@qiniu
12
+ def qiniu=(options)
13
+ @@qiniu = default_options(options)
14
+ end
15
+
16
+ def qiniu
17
+ @@qiniu != {} ? @@qiniu : default_options
18
+ end
19
+
20
+ def default_options(options = {})
21
+ {
22
+ access_key: "79WvzAxvV-nOEX7m0PERzwR0Lhm-FDHriz2-QdAN",
23
+ secret_key: "4wwnWNU16n9uVK8DHRW6qO61b2gls3aSduHswkvc",
24
+ bucket: "bss-image",
25
+ bucket_domain: "ognvcf5x6.bkt.clouddn.com"
26
+ }.merge(options)
27
+ end
28
+
29
+ def upload_image(file_path)
30
+ # 构建鉴权对象
31
+ Qiniu.establish_connection! access_key: self.qiniu[:access_key],
32
+ secret_key: self.qiniu[:secret_key]
33
+
34
+ key = "bbs_image/#{File.basename(file_path)}"
35
+ put_policy = Qiniu::Auth::PutPolicy.new(
36
+ self.qiniu[:bucket], # 存储空间
37
+ key, # 指定上传的资源名,如果传入 nil,就表示不指定资源名,将使用默认的资源名
38
+ 3600 # token 过期时间,默认为 3600 秒,即 1 小时
39
+ )
40
+
41
+ uptoken = Qiniu::Auth.generate_uptoken(put_policy)
42
+
43
+ # 调用 upload_with_token_2 方法上传
44
+ code, result = Qiniu::Storage.upload_with_token_2(
45
+ uptoken,
46
+ file_path,
47
+ key,
48
+ nil, # 可以接受一个 Hash 作为自定义变量,请参照 http://developer.qiniu.com/article/kodo/kodo-developer/up/vars.html#xvar
49
+ bucket: self.qiniu[:bucket]
50
+ )
51
+
52
+ if code == 200
53
+ image_url = "http://#{self.qiniu[:bucket_domain]}/#{result['key']}"
54
+
55
+ puts "图片上传成功! \n链接为: #{image_url} \nmarkdown 链接: #{markdown_image_link(image_url)}"
56
+
57
+ image_url
58
+ else
59
+ puts '上传图片失败'
60
+
61
+ nil
62
+ end
63
+ rescue => e
64
+ puts "上传图片发生异常: #{e}"
65
+
66
+ nil
67
+ end
68
+
69
+ def markdown_image_link(image_url)
70
+ if image_url && image_url.is_a?(String) && IMAGE_URL_REGEXP.match(image_url)
71
+ "![](#{image_url})"
72
+ else
73
+ ''
74
+ end
75
+ end
76
+
77
+ # 根据目录下指定目录下的文件,将文件上传到七牛上
78
+ #
79
+ # @note 注意文件需要按照文件目录的自然顺序
80
+ def generate_markdown_format(dir)
81
+ content = ''
82
+ files = []
83
+
84
+ `ls #{dir}`.split('\n').map { |filename| files << "#{dir}/#{filename}" }
85
+
86
+ files.each do |file|
87
+ content << markdown_image_link(upload_image(file)) + "\n"
88
+ end
89
+
90
+ puts content
91
+
92
+ content
93
+ end
94
+ end
95
+ end
@@ -0,0 +1,3 @@
1
+ module BbsUploader
2
+ VERSION = "0.1.0"
3
+ end
metadata ADDED
@@ -0,0 +1,99 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: bbs_uploader
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: ruby
6
+ authors:
7
+ - xiajian
8
+ autorequire:
9
+ bindir: exe
10
+ cert_chain: []
11
+ date: 2016-11-15 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: qiniu
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: '0'
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: '0'
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description: "简单封装七牛的图片上传,并演示如何创建 gem 的功能"
56
+ email:
57
+ - jhqy2011@gmail.com
58
+ executables: []
59
+ extensions: []
60
+ extra_rdoc_files: []
61
+ files:
62
+ - ".gitignore"
63
+ - ".travis.yml"
64
+ - CODE_OF_CONDUCT.md
65
+ - Gemfile
66
+ - LICENSE.txt
67
+ - README.md
68
+ - Rakefile
69
+ - bbs_uploader.gemspec
70
+ - bin/bbs_uploader
71
+ - bin/console
72
+ - bin/setup
73
+ - lib/bbs_uploader.rb
74
+ - lib/bbs_uploader/version.rb
75
+ homepage: https://github.com/xiajian/bbs_uploader
76
+ licenses:
77
+ - MIT
78
+ metadata: {}
79
+ post_install_message:
80
+ rdoc_options: []
81
+ require_paths:
82
+ - lib
83
+ required_ruby_version: !ruby/object:Gem::Requirement
84
+ requirements:
85
+ - - ">="
86
+ - !ruby/object:Gem::Version
87
+ version: '0'
88
+ required_rubygems_version: !ruby/object:Gem::Requirement
89
+ requirements:
90
+ - - ">="
91
+ - !ruby/object:Gem::Version
92
+ version: '0'
93
+ requirements: []
94
+ rubyforge_project:
95
+ rubygems_version: 2.6.6
96
+ signing_key:
97
+ specification_version: 4
98
+ summary: "简单分装七牛上传的图片类"
99
+ test_files: []