2008-11-11 16:54:10 +03:00
|
|
|
#!/usr/bin/env ruby
|
2008-06-25 23:25:28 +04:00
|
|
|
|
|
|
|
require 'net/http'
|
|
|
|
require 'net/https'
|
|
|
|
require 'uri'
|
2012-05-07 21:23:30 +04:00
|
|
|
require 'optparse'
|
2008-06-25 23:25:28 +04:00
|
|
|
|
2008-08-03 15:07:16 +04:00
|
|
|
module Net
|
|
|
|
class HTTPS < HTTP
|
2011-11-27 20:25:21 +04:00
|
|
|
def self.post_form(url, params, headers, options={})
|
2008-08-03 15:07:16 +04:00
|
|
|
request = Post.new(url.path)
|
|
|
|
request.form_data = params
|
|
|
|
request.basic_auth url.user, url.password if url.user
|
2011-01-15 17:48:33 +03:00
|
|
|
request.initialize_http_header(headers)
|
2008-08-03 15:07:16 +04:00
|
|
|
http = new(url.host, url.port)
|
|
|
|
http.use_ssl = (url.scheme == 'https')
|
2011-11-27 20:25:21 +04:00
|
|
|
if options[:no_check_certificate]
|
|
|
|
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
|
|
|
|
end
|
2008-08-03 15:07:16 +04:00
|
|
|
http.start {|h| h.request(request) }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2008-06-25 23:25:28 +04:00
|
|
|
class RedmineMailHandler
|
2012-05-07 21:23:30 +04:00
|
|
|
VERSION = '0.2'
|
2012-04-01 16:19:25 +04:00
|
|
|
|
2011-11-27 20:25:21 +04:00
|
|
|
attr_accessor :verbose, :issue_attributes, :allow_override, :unknown_user, :no_permission_check, :url, :key, :no_check_certificate
|
2008-06-25 23:25:28 +04:00
|
|
|
|
|
|
|
def initialize
|
2008-07-06 20:26:25 +04:00
|
|
|
self.issue_attributes = {}
|
2012-04-01 16:19:25 +04:00
|
|
|
|
2012-05-07 21:23:30 +04:00
|
|
|
optparse = OptionParser.new do |opts|
|
|
|
|
opts.banner = "Usage: rdm-mailhandler.rb [options] --url=<Redmine URL> --key=<API key>"
|
|
|
|
opts.separator("")
|
|
|
|
opts.separator("Reads an email from standard input and forward it to a Redmine server through a HTTP request.")
|
|
|
|
opts.separator("")
|
|
|
|
opts.separator("Required arguments:")
|
|
|
|
opts.on("-u", "--url URL", "URL of the Redmine server") {|v| self.url = v}
|
|
|
|
opts.on("-k", "--key KEY", "Redmine API key") {|v| self.key = v}
|
|
|
|
opts.separator("")
|
|
|
|
opts.separator("General options:")
|
|
|
|
opts.on("--unknown-user ACTION", "how to handle emails from an unknown user",
|
|
|
|
"ACTION can be one of the following values:",
|
|
|
|
"* ignore: email is ignored (default)",
|
|
|
|
"* accept: accept as anonymous user",
|
|
|
|
"* create: create a user account") {|v| self.unknown_user = v}
|
|
|
|
opts.on("--no-permission-check", "disable permission checking when receiving",
|
|
|
|
"the email") {self.no_permission_check = '1'}
|
|
|
|
opts.on("--key-file FILE", "path to a file that contains the Redmine",
|
|
|
|
"API key (use this option instead of --key",
|
|
|
|
"if you don't the key to appear in the",
|
|
|
|
"command line)") {|v| read_key_from_file(v)}
|
|
|
|
opts.on("--no-check-certificate", "do not check server certificate") {self.no_check_certificate = true}
|
|
|
|
opts.on("-h", "--help", "show this help") {puts opts; exit 1}
|
|
|
|
opts.on("-v", "--verbose", "show extra information") {self.verbose = true}
|
|
|
|
opts.on("-V", "--version", "show version information and exit") {puts VERSION; exit}
|
|
|
|
opts.separator("")
|
|
|
|
opts.separator("Issue attributes control options:")
|
|
|
|
opts.on("-p", "--project PROJECT", "identifier of the target project") {|v| self.issue_attributes['project'] = v}
|
|
|
|
opts.on("-s", "--status STATUS", "name of the target status") {|v| self.issue_attributes['status'] = v}
|
|
|
|
opts.on("-t", "--tracker TRACKER", "name of the target tracker") {|v| self.issue_attributes['tracker'] = v}
|
|
|
|
opts.on( "--category CATEGORY", "name of the target category") {|v| self.issue_attributes['category'] = v}
|
|
|
|
opts.on( "--priority PRIORITY", "name of the target priority") {|v| self.issue_attributes['priority'] = v}
|
|
|
|
opts.on("-o", "--allow-override ATTRS", "allow email content to override attributes",
|
|
|
|
"specified by previous options",
|
|
|
|
"ATTRS is a comma separated list of attributes") {|v| self.allow_override = v}
|
|
|
|
opts.separator("")
|
|
|
|
opts.separator("Examples:")
|
|
|
|
opts.separator("No project specified. Emails MUST contain the 'Project' keyword:")
|
|
|
|
opts.separator(" rdm-mailhandler.rb --url http://redmine.domain.foo --key secret")
|
|
|
|
opts.separator("")
|
|
|
|
opts.separator("Fixed project and default tracker specified, but emails can override")
|
|
|
|
opts.separator("both tracker and priority attributes using keywords:")
|
|
|
|
opts.separator(" rdm-mailhandler.rb --url https://domain.foo/redmine --key secret \\")
|
|
|
|
opts.separator(" --project foo \\")
|
|
|
|
opts.separator(" --tracker bug \\")
|
|
|
|
opts.separator(" --allow-override tracker,priority")
|
|
|
|
|
|
|
|
opts.summary_width = 27
|
2008-06-25 23:25:28 +04:00
|
|
|
end
|
2012-05-07 21:23:30 +04:00
|
|
|
optparse.parse!
|
2012-04-01 16:19:25 +04:00
|
|
|
|
2012-05-07 21:23:30 +04:00
|
|
|
unless url && key
|
|
|
|
puts "Some arguments are missing. Use `rdm-mailhandler.rb --help` for getting help."
|
|
|
|
exit 1
|
|
|
|
end
|
2008-06-25 23:25:28 +04:00
|
|
|
end
|
2012-04-01 16:19:25 +04:00
|
|
|
|
2008-06-25 23:25:28 +04:00
|
|
|
def submit(email)
|
|
|
|
uri = url.gsub(%r{/*$}, '') + '/mail_handler'
|
2012-04-01 16:19:25 +04:00
|
|
|
|
2011-01-15 17:48:33 +03:00
|
|
|
headers = { 'User-Agent' => "Redmine mail handler/#{VERSION}" }
|
2012-04-01 16:19:25 +04:00
|
|
|
|
|
|
|
data = { 'key' => key, 'email' => email,
|
2009-06-14 18:48:34 +04:00
|
|
|
'allow_override' => allow_override,
|
2009-12-19 17:08:48 +03:00
|
|
|
'unknown_user' => unknown_user,
|
|
|
|
'no_permission_check' => no_permission_check}
|
2008-07-06 20:26:25 +04:00
|
|
|
issue_attributes.each { |attr, value| data["issue[#{attr}]"] = value }
|
2012-04-01 16:19:25 +04:00
|
|
|
|
2008-06-25 23:25:28 +04:00
|
|
|
debug "Posting to #{uri}..."
|
2011-11-27 20:25:21 +04:00
|
|
|
response = Net::HTTPS.post_form(URI.parse(uri), data, headers, :no_check_certificate => no_check_certificate)
|
2008-06-25 23:25:28 +04:00
|
|
|
debug "Response received: #{response.code}"
|
2012-04-01 16:19:25 +04:00
|
|
|
|
2009-12-09 13:44:15 +03:00
|
|
|
case response.code.to_i
|
|
|
|
when 403
|
2012-04-01 16:19:25 +04:00
|
|
|
warn "Request was denied by your Redmine server. " +
|
2009-12-09 13:44:15 +03:00
|
|
|
"Make sure that 'WS for incoming emails' is enabled in application settings and that you provided the correct API key."
|
|
|
|
return 77
|
|
|
|
when 422
|
|
|
|
warn "Request was denied by your Redmine server. " +
|
|
|
|
"Possible reasons: email is sent from an invalid email address or is missing some information."
|
|
|
|
return 77
|
|
|
|
when 400..499
|
|
|
|
warn "Request was denied by your Redmine server (#{response.code})."
|
|
|
|
return 77
|
|
|
|
when 500..599
|
|
|
|
warn "Failed to contact your Redmine server (#{response.code})."
|
|
|
|
return 75
|
|
|
|
when 201
|
|
|
|
debug "Proccessed successfully"
|
|
|
|
return 0
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
end
|
2008-06-25 23:25:28 +04:00
|
|
|
end
|
2012-04-01 16:19:25 +04:00
|
|
|
|
2008-06-25 23:25:28 +04:00
|
|
|
private
|
2012-04-01 16:19:25 +04:00
|
|
|
|
2008-06-25 23:25:28 +04:00
|
|
|
def debug(msg)
|
|
|
|
puts msg if verbose
|
|
|
|
end
|
2012-05-07 21:23:30 +04:00
|
|
|
|
|
|
|
def read_key_from_file(filename)
|
|
|
|
begin
|
|
|
|
self.key = File.read(filename).strip
|
|
|
|
rescue Exception => e
|
|
|
|
$stderr.puts "Unable to read the key from #{filename}:\n#{e.message}"
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
end
|
2008-06-25 23:25:28 +04:00
|
|
|
end
|
|
|
|
|
|
|
|
handler = RedmineMailHandler.new
|
2009-12-09 13:44:15 +03:00
|
|
|
exit(handler.submit(STDIN.read))
|