2016-11-16 06:09:09 -05:00
|
|
|
class PreviewMarkdownService < BaseService
|
|
|
|
def execute
|
2017-05-31 01:50:53 -04:00
|
|
|
text, commands = explain_quick_actions(params[:text])
|
2016-11-16 06:09:09 -05:00
|
|
|
users = find_user_references(text)
|
|
|
|
|
|
|
|
success(
|
|
|
|
text: text,
|
|
|
|
users: users,
|
|
|
|
commands: commands.join(' ')
|
|
|
|
)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-05-31 01:50:53 -04:00
|
|
|
def explain_quick_actions(text)
|
2016-11-16 06:09:09 -05:00
|
|
|
return text, [] unless %w(Issue MergeRequest).include?(commands_target_type)
|
|
|
|
|
2017-05-31 01:50:53 -04:00
|
|
|
quick_actions_service = QuickActions::InterpretService.new(project, current_user)
|
|
|
|
quick_actions_service.explain(text, find_commands_target)
|
2016-11-16 06:09:09 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def find_user_references(text)
|
|
|
|
extractor = Gitlab::ReferenceExtractor.new(project, current_user)
|
|
|
|
extractor.analyze(text, author: current_user)
|
|
|
|
extractor.users.map(&:username)
|
|
|
|
end
|
|
|
|
|
|
|
|
def find_commands_target
|
|
|
|
if commands_target_id.present?
|
|
|
|
finder = commands_target_type == 'Issue' ? IssuesFinder : MergeRequestsFinder
|
|
|
|
finder.new(current_user, project_id: project.id).find(commands_target_id)
|
|
|
|
else
|
|
|
|
collection = commands_target_type == 'Issue' ? project.issues : project.merge_requests
|
|
|
|
collection.build
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def commands_target_type
|
2017-05-31 01:50:53 -04:00
|
|
|
params[:quick_actions_target_type]
|
2016-11-16 06:09:09 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def commands_target_id
|
2017-05-31 01:50:53 -04:00
|
|
|
params[:quick_actions_target_id]
|
2016-11-16 06:09:09 -05:00
|
|
|
end
|
|
|
|
end
|