28 lines
785 B
Ruby
28 lines
785 B
Ruby
# frozen_string_literal: true
|
|
|
|
module WikiPages
|
|
class EventCreateService
|
|
# @param [User] author The event author
|
|
def initialize(author)
|
|
raise ArgumentError, 'author must not be nil' unless author
|
|
|
|
@author = author
|
|
end
|
|
|
|
def execute(slug, page, action, event_fingerprint)
|
|
event = Event.transaction do
|
|
wiki_page_meta = WikiPage::Meta.find_or_create(slug, page)
|
|
|
|
::EventCreateService.new.wiki_event(wiki_page_meta, author, action, event_fingerprint)
|
|
end
|
|
|
|
ServiceResponse.success(payload: { event: event })
|
|
rescue ::EventCreateService::IllegalActionError, ::ActiveRecord::ActiveRecordError => e
|
|
ServiceResponse.error(message: e.message, payload: { error: e })
|
|
end
|
|
|
|
private
|
|
|
|
attr_reader :author
|
|
end
|
|
end
|