Commit 8d322292 authored by Nick Thomas's avatar Nick Thomas

Rubocop improvements

parent 04aaf719
# frozen_string_literal: true
require "multi_json" require "multi_json"
require "cgi" require "cgi"
require "flowdock" require "flowdock"
...@@ -6,7 +6,7 @@ require "flowdock/git/builder" ...@@ -6,7 +6,7 @@ require "flowdock/git/builder"
module Flowdock module Flowdock
class Git class Git
class TokenError < StandardError; end TokenError = Class.new(StandardError)
class << self class << self
def post(ref, from, to, options = {}) def post(ref, from, to, options = {})
...@@ -28,11 +28,12 @@ module Flowdock ...@@ -28,11 +28,12 @@ module Flowdock
@diff_url = options[:diff_url] || config["flowdock.diff-url-pattern"] || nil @diff_url = options[:diff_url] || config["flowdock.diff-url-pattern"] || nil
@repo_url = options[:repo_url] || config["flowdock.repository-url"] || nil @repo_url = options[:repo_url] || config["flowdock.repository-url"] || nil
@repo_name = options[:repo_name] || config["flowdock.repository-name"] || nil @repo_name = options[:repo_name] || config["flowdock.repository-name"] || nil
@permanent_refs = options[:permanent_refs] ||
(config["flowdock.permanent-references"] || "refs/heads/master") refs = options[:permanent_refs] || config["flowdock.permanent-references"] || "refs/heads/master"
.split(",") @permanent_refs = refs
.map(&:strip) .split(",")
.map {|exp| Regexp.new(exp) } .map(&:strip)
.map {|exp| Regexp.new(exp) }
end end
# Send git push notification to Flowdock # Send git push notification to Flowdock
...@@ -80,13 +81,14 @@ module Flowdock ...@@ -80,13 +81,14 @@ module Flowdock
# Flowdock tags attached to the push notification # Flowdock tags attached to the push notification
def tags def tags
if @options[:tags] tags =
@options[:tags] if @options[:tags]
else @options[:tags]
config["flowdock.tags"].to_s.split(",").map(&:strip) else
end.map do |t| config["flowdock.tags"].to_s.split(",").map(&:strip)
CGI.escape(t) end
end
tags.map { |t| CGI.escape(t) }
end end
def config def config
......
# frozen_string_literal: true
require "grit" require "grit"
require 'cgi' require 'cgi'
require "securerandom" require "securerandom"
...@@ -31,7 +32,8 @@ module Flowdock ...@@ -31,7 +32,8 @@ module Flowdock
private private
def encode(hash) def encode(hash)
return hash unless "".respond_to? :encode return hash unless "".respond_to?(:encode)
encode_as_utf8(hash) encode_as_utf8(hash)
end end
...@@ -46,8 +48,8 @@ module Flowdock ...@@ -46,8 +48,8 @@ module Flowdock
encode_as_utf8(val) encode_as_utf8(val)
end end
elsif obj.is_a?(String) && obj.encoding != Encoding::UTF_8 elsif obj.is_a?(String) && obj.encoding != Encoding::UTF_8
if !obj.force_encoding("UTF-8").valid_encoding? unless obj.force_encoding("UTF-8").valid_encoding?
obj.force_encoding("ISO-8859-1").encode!(Encoding::UTF_8, :invalid => :replace, :undef => :replace) obj.force_encoding("ISO-8859-1").encode!(Encoding::UTF_8, invalid: :replace, undef: :replace)
end end
end end
end end
...@@ -78,6 +80,8 @@ module Flowdock ...@@ -78,6 +80,8 @@ module Flowdock
# Class used to build Git payload # Class used to build Git payload
class Builder class Builder
include ::Gitlab::Utils::StrongMemoize
def initialize(opts) def initialize(opts)
@repo = opts[:repo] @repo = opts[:repo]
@ref = opts[:ref] @ref = opts[:ref]
...@@ -101,7 +105,7 @@ module Flowdock ...@@ -101,7 +105,7 @@ module Flowdock
end end
def ref_name def ref_name
@ref.to_s.sub(/\Arefs\/(heads|tags)\//, '') @ref.to_s.sub(%r{\Arefs/(heads|tags)/}, '')
end end
def to_hashes def to_hashes
...@@ -120,20 +124,15 @@ module Flowdock ...@@ -120,20 +124,15 @@ module Flowdock
end end
def permanent? def permanent?
@permanent ||= @opts[:permanent_refs].select do |regex| strong_memoize(:permanent) do
regex.match(@ref) @opts[:permanent_refs].any? { |regex| regex.match(@ref) }
end.size > 0 end
end end
def thread_title def thread_title
action = if permanent? action = "updated" if permanent?
"updated" type = @ref =~ %r(^refs/heads/) ? "branch" : "tag"
end
type = if @ref.match(%r(^refs/heads/))
"branch"
else
"tag"
end
[@opts[:repo_name], type, ref_name, action].compact.join(" ") [@opts[:repo_name], type, ref_name, action].compact.join(" ")
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment