forked from a4agarwal/dropzone-user-scripts
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Imgur.dropzone
99 lines (85 loc) · 2.55 KB
/
Imgur.dropzone
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
#!/usr/bin/ruby
# Dropzone Destination Info
# Name: Imgur
# Description: Share photos via the Imgur service. Holding down option copies the original image url.
# Handles: NSFilenamesPboardType
# Events: Clicked, Dragged
# KeyModifiers: Option
# Creator: David Bittencourt
# URL: http://imgur.com/register/api/
# IconURL: http://i.imgur.com/J15gH.png
# OptionsNIB: Login
# LoginTitle: Add your Imgur API Key to both fields
require "rexml/document"
def dragged
$dz.determinate(true)
file_path = $items[0]
filename = File.basename(file_path)
allowed_exts = ["jpg", "jpeg", "gif", "png", "apng", "tif", "tiff", "bmp", "pdf", "xcf"]
ext = File.extname(file_path).downcase[1..-1]
if not allowed_exts.include?(ext)
$dz.finish("Not an Image")
$dz.url(false)
Process.exit
end
$dz.begin("Uploading #{filename}...")
last_output = 0
is_receiving_xml = false
xml_output = ""
file_path = file_path.gsub('"', '\"')
IO.popen("/usr/bin/curl -# -F 'key=#{ENV['PASSWORD']}' -F \"image=@#{file_path}\" http://imgur.com/api/upload.xml 2>&1 | tr -u \"\r\" \"\n\"") do |f|
while line = f.gets do
if line =~ /%/ and not is_receiving_xml
line_split = line.split(" ")
file_percent_raw = line_split[1]
if file_percent_raw != nil
file_percent = file_percent_raw.to_i
if last_output != file_percent
$dz.percent(file_percent)
$dz.determinate(false) if file_percent == 100
end
last_output = file_percent
end
else
if line =~ /xml/ or is_receiving_xml
is_receiving_xml = true
xml_output += line
else
handle_errors(line)
end
end
end
end
begin
url = ""
doc = REXML::Document.new(xml_output)
root = doc.root
status = root.attributes["stat"]
if status == "ok"
if ENV['KEY_MODIFIERS'] == "Option"
doc.elements.each("rsp/original_image") {|e| url = e.text}
else
doc.elements.each("rsp/imgur_page") {|e| url = e.text}
end
else
$dz.error("Imgur Error - #{root.elements[2].text}", root.elements[2].text )
end
$dz.finish("URL is now on clipboard")
$dz.url(url)
rescue
$dz.finish("Upload Failed")
$dz.url(false)
end
end
def handle_errors(line)
if line[0..4] == "curl:"
if line[6..-1] =~ /Couldn't resolve/
$dz.error("Imgur Upload Error", "Please check your network connection.")
else
$dz.error("Imgur Upload Error", line[6..-1])
end
end
end
def clicked
system("open http://imgur.com/")
end