gitlabhq/app/models/gitlab_ci_service.rb

36 lines
885 B
Ruby
Raw Normal View History

2012-11-19 20:34:05 +01:00
# == Schema Information
#
# Table name: services
#
2012-11-20 13:19:55 +01:00
# id :integer not null, primary key
# type :string(255)
# title :string(255)
# token :string(255)
# project_id :integer not null
# created_at :datetime not null
# updated_at :datetime not null
# active :boolean default(FALSE), not null
# project_url :string(255)
2012-11-19 20:34:05 +01:00
#
class GitlabCiService < Service
attr_accessible :project_url
2012-11-20 13:16:04 +01:00
validates :project_url, presence: true, if: :activated?
validates :token, presence: true, if: :activated?
2012-11-19 20:34:05 +01:00
delegate :execute, to: :service_hook, prefix: nil
2012-11-20 13:16:04 +01:00
after_save :compose_service_hook, if: :activated?
def activated?
active
end
2012-11-19 20:34:05 +01:00
def compose_service_hook
hook = service_hook || build_service_hook
hook.url = [project_url, "/build", "?token=#{token}"].join("")
hook.save
end
end