gitlabhq/lib/gitlab/satellite/action.rb

51 lines
1.3 KiB
Ruby
Raw Normal View History

2012-10-26 00:10:40 +02:00
module Gitlab
module Satellite
class Action
DEFAULT_OPTIONS = { git_timeout: 30.seconds }
attr_accessor :options, :project, :user
2012-10-26 00:10:40 +02:00
def initialize(user, project, options = {})
@options = DEFAULT_OPTIONS.merge(options)
2012-10-26 00:10:40 +02:00
@project = project
@user = user
2012-10-26 00:10:40 +02:00
end
protected
# * Sets a 30s timeout for Git
# * Locks the satellite repo
# * Yields the prepared satellite repo
def in_locked_and_timed_satellite
2013-02-14 14:17:43 +01:00
Gitlab::ShellEnv.set_env(user)
2012-10-26 00:10:40 +02:00
Grit::Git.with_timeout(options[:git_timeout]) do
project.satellite.lock do
return yield project.satellite.repo
2012-10-26 00:10:40 +02:00
end
end
rescue Errno::ENOMEM => ex
Gitlab::GitLogger.error(ex.message)
return false
rescue Grit::Git::GitTimeout => ex
Gitlab::GitLogger.error(ex.message)
return false
2013-02-14 14:17:43 +01:00
ensure
Gitlab::ShellEnv.reset_env
2012-10-26 00:10:40 +02:00
end
# * Clears the satellite
# * Updates the satellite from Gitolite
# * Sets up Git variables for the user
#
# Note: use this within #in_locked_and_timed_satellite
def prepare_satellite!(repo)
project.satellite.clear_and_update!
repo.git.config({}, "user.name", user.name)
repo.git.config({}, "user.email", user.email)
end
2012-10-26 00:10:40 +02:00
end
end
end