dotfiles/bin/executable_get-gitlab-short...

32 lines
998 B
Ruby

#!/usr/bin/env ruby
require "uri"
begin
abort "Please supply a valid URL to this script." if ARGV.empty?
uri = URI.parse(ARGV.last.strip)
abort "Not a valid forge URI" unless uri.host.start_with? "git."
if uri_match = uri.path.match(%r{/(?<group>[a-z/]+?)(/-/)(?<type>[\w]+)/(?<issue>[\w]+)})
short_code = case uri_match[:type]
when "merge_requests"
"!"
when "issues"
"#"
when "commit"
"@"
end
out = [uri_match[:group], uri_match[:issue]].join(short_code)
elsif uri_match = uri.path.match(%r{/(?<group>([a-z/]+)?)/(?<project>([a-z]+))(/)?})
out = [uri_match[:group], uri_match[:project]].join("/") + ">"
else
abort "Could not find anything to match in #{uri}" if uri_match.nil?
end
`notify-send #{ARGV.inspect}`
$stdout.puts out
rescue URI::InvalidURIError => e
$stderr.puts "The supplied URI could not be parsed: #{e.message}"
end