Anyhub 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.document +5 -0
- data/.gitignore +21 -0
- data/LICENSE +20 -0
- data/README.rdoc +17 -0
- data/Rakefile +56 -0
- data/VERSION +1 -0
- data/bin/anyhub +5 -0
- data/lib/Anyhub.rb +79 -0
- data/test/helper.rb +10 -0
- data/test/test_Anyhub.rb +4 -0
- metadata +95 -0
data/.document
ADDED
data/.gitignore
ADDED
data/LICENSE
ADDED
@@ -0,0 +1,20 @@
|
|
1
|
+
Copyright (c) 2009 Sirupsen
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
4
|
+
a copy of this software and associated documentation files (the
|
5
|
+
"Software"), to deal in the Software without restriction, including
|
6
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
7
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to
|
9
|
+
the following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice shall be
|
12
|
+
included in all copies or substantial portions of the Software.
|
13
|
+
|
14
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
18
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
19
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
20
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.rdoc
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
= Anyhub
|
2
|
+
|
3
|
+
An object oriented Ruby interface to {Anyhub}[http://anyhub.net], a file storage service by {Charlie Sommerville}[http://charliesomerville.com/]. An Anyhub CLI is included.
|
4
|
+
|
5
|
+
== Note on Patches/Pull Requests
|
6
|
+
|
7
|
+
* Fork the project.
|
8
|
+
* Make your feature addition or bug fix.
|
9
|
+
* Add tests for it. This is important so I don't break it in a
|
10
|
+
future version unintentionally.
|
11
|
+
* Commit, do not mess with rakefile, version, or history.
|
12
|
+
(if you want to have your own version, that is fine but bump version in a commit by itself I can ignore when I pull)
|
13
|
+
* Send me a pull request. Bonus points for topic branches.
|
14
|
+
|
15
|
+
== Copyright
|
16
|
+
|
17
|
+
Copyright (c) 2010 Sirupsen. See LICENSE for details.
|
data/Rakefile
ADDED
@@ -0,0 +1,56 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'rake'
|
3
|
+
|
4
|
+
begin
|
5
|
+
require 'jeweler'
|
6
|
+
Jeweler::Tasks.new do |gem|
|
7
|
+
gem.name = "Anyhub"
|
8
|
+
gem.summary = %Q{Ruby interface to Anyhub, including a CLI based on itself.}
|
9
|
+
gem.description = %Q{An object oriented Ruby interface to Anyhub, a file storage service by Charlie Sommerville. An Anyhub CLI is included.}
|
10
|
+
gem.email = "sirup@sirupsen.dk"
|
11
|
+
gem.homepage = "http://github.com/Sirupsen/Anyhub"
|
12
|
+
gem.authors = ["Sirupsen"]
|
13
|
+
gem.add_dependency("curb", ">= 0")
|
14
|
+
gem.add_development_dependency "thoughtbot-shoulda", ">= 0"
|
15
|
+
# gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
|
16
|
+
end
|
17
|
+
Jeweler::GemcutterTasks.new
|
18
|
+
rescue LoadError
|
19
|
+
puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
|
20
|
+
end
|
21
|
+
|
22
|
+
require 'rake/testtask'
|
23
|
+
Rake::TestTask.new(:test) do |test|
|
24
|
+
test.libs << 'lib' << 'test'
|
25
|
+
test.pattern = 'test/**/test_*.rb'
|
26
|
+
test.verbose = true
|
27
|
+
end
|
28
|
+
|
29
|
+
begin
|
30
|
+
require 'rcov/rcovtask'
|
31
|
+
Rcov::RcovTask.new do |test|
|
32
|
+
test.libs << 'test'
|
33
|
+
test.pattern = 'test/**/test_*.rb'
|
34
|
+
test.verbose = true
|
35
|
+
end
|
36
|
+
rescue LoadError
|
37
|
+
task :rcov do
|
38
|
+
abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
|
39
|
+
end
|
40
|
+
end
|
41
|
+
|
42
|
+
task :test => :check_dependencies
|
43
|
+
|
44
|
+
task :default => :test
|
45
|
+
|
46
|
+
require 'rake/rdoctask'
|
47
|
+
Rake::RDocTask.new do |rdoc|
|
48
|
+
version = File.exist?('VERSION') ? File.read('VERSION') : ""
|
49
|
+
|
50
|
+
rdoc.rdoc_dir = 'rdoc'
|
51
|
+
rdoc.title = "Anyhub #{version}"
|
52
|
+
rdoc.rdoc_files.include('README*')
|
53
|
+
rdoc.rdoc_files.include('lib/**/*.rb')
|
54
|
+
end
|
55
|
+
|
56
|
+
Jeweler::GemcutterTasks.new
|
data/VERSION
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
0.0.0
|
data/bin/anyhub
ADDED
data/lib/Anyhub.rb
ADDED
@@ -0,0 +1,79 @@
|
|
1
|
+
require 'rubygems'
|
2
|
+
require 'curb'
|
3
|
+
|
4
|
+
module Anyhub
|
5
|
+
VERSION = "0.1"
|
6
|
+
|
7
|
+
SITE = 'http://anyhub.net/'
|
8
|
+
UPLOAD_URL = "#{SITE}upload"
|
9
|
+
FILE_LOCATION_URL = "#{SITE}file/"
|
10
|
+
IMAGEFORMATS = ['jpg', 'png', 'gif']
|
11
|
+
|
12
|
+
# Regex to fetch the URL from the response
|
13
|
+
URL_REGEX = Regexp.new("#{FILE_LOCATION_URL}[^.]*\.[^\"]*")
|
14
|
+
|
15
|
+
class Upload
|
16
|
+
attr_reader :response
|
17
|
+
|
18
|
+
def initialize(file)
|
19
|
+
@file, @curl = file, Curl::Easy.new(UPLOAD_URL)
|
20
|
+
set_headers
|
21
|
+
end
|
22
|
+
|
23
|
+
def perform
|
24
|
+
@curl.multipart_form_post = true # Multipart
|
25
|
+
@curl.http_post(Curl::PostField.file(@file, @file)) # Perform upload
|
26
|
+
@response = @curl.body_str
|
27
|
+
|
28
|
+
raise "Error uploading file" unless success?
|
29
|
+
end
|
30
|
+
|
31
|
+
def success?
|
32
|
+
@response =~ URL_REGEX
|
33
|
+
end
|
34
|
+
|
35
|
+
def url
|
36
|
+
URL_REGEX.match(@response).to_s
|
37
|
+
end
|
38
|
+
|
39
|
+
private
|
40
|
+
def set_headers
|
41
|
+
# If the file is an image, the type should be set right -
|
42
|
+
# else you'd just download it.
|
43
|
+
filetype = define_filetype # What file are we dealing with?
|
44
|
+
@curl.headers["type="] = "image/#{filetype}" if image?(filetype)
|
45
|
+
end
|
46
|
+
|
47
|
+
def image?(filetype)
|
48
|
+
IMAGEFORMATS.include?(filetype)
|
49
|
+
end
|
50
|
+
|
51
|
+
def define_filetype
|
52
|
+
extension = File.extname(@file)
|
53
|
+
extension[1..extension.length] # We do not want the period
|
54
|
+
end
|
55
|
+
end
|
56
|
+
|
57
|
+
class Runner
|
58
|
+
def initialize(args)
|
59
|
+
@args = args
|
60
|
+
check_args
|
61
|
+
execute
|
62
|
+
end
|
63
|
+
|
64
|
+
def execute
|
65
|
+
@args.each do |arg|
|
66
|
+
upload = Upload.new(arg)
|
67
|
+
upload.perform
|
68
|
+
raise "Error uploading file" unless upload.success?
|
69
|
+
puts upload.url
|
70
|
+
end
|
71
|
+
end
|
72
|
+
|
73
|
+
private
|
74
|
+
def check_args
|
75
|
+
raise "Must have atleast one file as argument" unless @args[0]
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
79
|
+
|
data/test/helper.rb
ADDED
data/test/test_Anyhub.rb
ADDED
metadata
ADDED
@@ -0,0 +1,95 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: Anyhub
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
prerelease: false
|
5
|
+
segments:
|
6
|
+
- 0
|
7
|
+
- 0
|
8
|
+
- 0
|
9
|
+
version: 0.0.0
|
10
|
+
platform: ruby
|
11
|
+
authors:
|
12
|
+
- Sirupsen
|
13
|
+
autorequire:
|
14
|
+
bindir: bin
|
15
|
+
cert_chain: []
|
16
|
+
|
17
|
+
date: 2010-04-19 00:00:00 +02:00
|
18
|
+
default_executable: anyhub
|
19
|
+
dependencies:
|
20
|
+
- !ruby/object:Gem::Dependency
|
21
|
+
name: curb
|
22
|
+
prerelease: false
|
23
|
+
requirement: &id001 !ruby/object:Gem::Requirement
|
24
|
+
requirements:
|
25
|
+
- - ">="
|
26
|
+
- !ruby/object:Gem::Version
|
27
|
+
segments:
|
28
|
+
- 0
|
29
|
+
version: "0"
|
30
|
+
type: :runtime
|
31
|
+
version_requirements: *id001
|
32
|
+
- !ruby/object:Gem::Dependency
|
33
|
+
name: thoughtbot-shoulda
|
34
|
+
prerelease: false
|
35
|
+
requirement: &id002 !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - ">="
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
segments:
|
40
|
+
- 0
|
41
|
+
version: "0"
|
42
|
+
type: :development
|
43
|
+
version_requirements: *id002
|
44
|
+
description: An object oriented Ruby interface to Anyhub, a file storage service by Charlie Sommerville. An Anyhub CLI is included.
|
45
|
+
email: sirup@sirupsen.dk
|
46
|
+
executables:
|
47
|
+
- anyhub
|
48
|
+
extensions: []
|
49
|
+
|
50
|
+
extra_rdoc_files:
|
51
|
+
- LICENSE
|
52
|
+
- README.rdoc
|
53
|
+
files:
|
54
|
+
- .document
|
55
|
+
- .gitignore
|
56
|
+
- LICENSE
|
57
|
+
- README.rdoc
|
58
|
+
- Rakefile
|
59
|
+
- VERSION
|
60
|
+
- lib/Anyhub.rb
|
61
|
+
- test/helper.rb
|
62
|
+
- test/test_Anyhub.rb
|
63
|
+
has_rdoc: true
|
64
|
+
homepage: http://github.com/Sirupsen/Anyhub
|
65
|
+
licenses: []
|
66
|
+
|
67
|
+
post_install_message:
|
68
|
+
rdoc_options:
|
69
|
+
- --charset=UTF-8
|
70
|
+
require_paths:
|
71
|
+
- lib
|
72
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
73
|
+
requirements:
|
74
|
+
- - ">="
|
75
|
+
- !ruby/object:Gem::Version
|
76
|
+
segments:
|
77
|
+
- 0
|
78
|
+
version: "0"
|
79
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
80
|
+
requirements:
|
81
|
+
- - ">="
|
82
|
+
- !ruby/object:Gem::Version
|
83
|
+
segments:
|
84
|
+
- 0
|
85
|
+
version: "0"
|
86
|
+
requirements: []
|
87
|
+
|
88
|
+
rubyforge_project:
|
89
|
+
rubygems_version: 1.3.6
|
90
|
+
signing_key:
|
91
|
+
specification_version: 3
|
92
|
+
summary: Ruby interface to Anyhub, including a CLI based on itself.
|
93
|
+
test_files:
|
94
|
+
- test/test_Anyhub.rb
|
95
|
+
- test/helper.rb
|