2023-07-26 17:44:11 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Api
|
|
|
|
module V1
|
|
|
|
# Recibe webhooks y lanza jobs
|
|
|
|
class WebhooksController < BaseController
|
2023-07-27 19:46:32 +00:00
|
|
|
# Trae los cambios a partir de un post de Webhooks:
|
|
|
|
# (Gitlab, Github, Guitea, etc)
|
2023-07-26 17:44:11 +00:00
|
|
|
def pull
|
2023-07-27 19:46:32 +00:00
|
|
|
site = Site.find_by_name!(params[:site_id])
|
2023-07-26 17:44:11 +00:00
|
|
|
usuarie = GitAuthor.new email: "webhook@#{Site.domain}", name: 'Webhook'
|
2023-07-27 19:46:32 +00:00
|
|
|
message = I18n.with_locale(site.default_locale) do
|
|
|
|
I18n.t('webhooks.pull.message')
|
|
|
|
end
|
2023-07-26 17:44:11 +00:00
|
|
|
|
|
|
|
GitPullJob.perform_later(site, usuarie, message)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|