gitlab-org--gitlab-foss/lib/gitlab/chat_commands/deploy.rb

51 lines
1.2 KiB
Ruby
Raw Normal View History

2016-11-21 12:47:18 +00:00
module Gitlab
module ChatCommands
class Deploy < BaseCommand
def self.match(text)
2016-11-30 14:51:48 +00:00
/\Adeploy\s+(?<from>\S+.*)\s+to+\s+(?<to>\S+.*)\z/.match(text)
2016-11-21 12:47:18 +00:00
end
def self.help_message
'deploy <environment> to <target-environment>'
end
def self.available?(project)
project.builds_enabled?
end
2016-11-21 12:47:18 +00:00
def self.allowed?(project, user)
can?(user, :create_deployment, project)
end
def execute(match)
from = match[:from]
to = match[:to]
actions = find_actions(from, to)
2016-11-21 12:47:18 +00:00
if actions.none?
Gitlab::ChatCommands::Presenters::Deploy.new(nil).no_actions
elsif actions.one?
action = play!(from, to, actions.first)
Gitlab::ChatCommands::Presenters::Deploy.new(action).present(from, to)
2016-11-21 12:47:18 +00:00
else
Gitlab::ChatCommands::Presenters::Deploy.new(actions).too_many_actions
2016-11-21 12:47:18 +00:00
end
end
private
2016-11-21 18:40:04 +00:00
def play!(from, to, action)
action.play(current_user)
2016-11-21 18:40:04 +00:00
end
def find_actions(from, to)
environment = project.environments.find_by(name: from)
return [] unless environment
environment.actions_for(to).select(&:starts_environment?)
end
2016-11-21 12:47:18 +00:00
end
end
end