mirror of
https://github.com/discourse/discourse.git
synced 2024-12-04 03:33:44 +08:00
b8762172e4
This patch introduces a new `ServiceJob` class allowing the use of `with_service` in jobs. This way, it’s easier to use the chat service objects in jobs and provides the same level of functionality than the one we have in controllers.
30 lines
743 B
Ruby
30 lines
743 B
Ruby
# frozen_string_literal: true
|
|
|
|
class Chat::Api < Chat::ChatBaseController
|
|
before_action :ensure_logged_in
|
|
before_action :ensure_can_chat
|
|
|
|
include Chat::WithServiceHelper
|
|
|
|
private
|
|
|
|
def ensure_can_chat
|
|
raise Discourse::NotFound unless SiteSetting.chat_enabled
|
|
guardian.ensure_can_chat!
|
|
end
|
|
|
|
def default_actions_for_service
|
|
proc do
|
|
on_success { render(json: success_json) }
|
|
on_failure { render(json: failed_json, status: 422) }
|
|
on_failed_policy(:invalid_access) { raise Discourse::InvalidAccess }
|
|
on_failed_contract do
|
|
render(
|
|
json: failed_json.merge(errors: result[:"result.contract.default"].errors.full_messages),
|
|
status: 400,
|
|
)
|
|
end
|
|
end
|
|
end
|
|
end
|