2018-10-11 16:12:21 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2018-01-26 09:28:08 -05:00
|
|
|
module Gitlab
|
|
|
|
module Checks
|
2018-02-02 10:27:30 -05:00
|
|
|
class PostPushMessage
|
2020-03-17 08:09:52 -04:00
|
|
|
def initialize(repository, user, protocol)
|
|
|
|
@repository = repository
|
2018-01-26 09:28:08 -05:00
|
|
|
@user = user
|
|
|
|
@protocol = protocol
|
|
|
|
end
|
|
|
|
|
|
|
|
def self.fetch_message(user_id, project_id)
|
|
|
|
key = message_key(user_id, project_id)
|
|
|
|
|
|
|
|
Gitlab::Redis::SharedState.with do |redis|
|
|
|
|
message = redis.get(key)
|
|
|
|
redis.del(key)
|
|
|
|
message
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def add_message
|
|
|
|
return unless user.present? && project.present?
|
|
|
|
|
|
|
|
Gitlab::Redis::SharedState.with do |redis|
|
|
|
|
key = self.class.message_key(user.id, project.id)
|
|
|
|
redis.setex(key, 5.minutes, message)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def message
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
|
2020-03-17 08:09:52 -04:00
|
|
|
attr_reader :repository, :user, :protocol
|
|
|
|
|
|
|
|
delegate :project, to: :repository, allow_nil: true
|
|
|
|
delegate :container, to: :repository, allow_nil: false
|
2018-01-26 09:28:08 -05:00
|
|
|
|
|
|
|
def self.message_key(user_id, project_id)
|
|
|
|
raise NotImplementedError
|
|
|
|
end
|
|
|
|
|
|
|
|
def url_to_repo
|
2020-10-05 11:08:56 -04:00
|
|
|
protocol == 'ssh' ? container.ssh_url_to_repo : container.http_url_to_repo
|
2018-01-26 09:28:08 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|