2018-09-14 01:42:05 -04:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-03-24 18:17:03 -04:00
|
|
|
class SnippetsController < ApplicationController
|
2017-04-27 06:41:26 -04:00
|
|
|
include RendersNotes
|
2016-06-03 05:44:04 -04:00
|
|
|
include ToggleAwardEmoji
|
2017-02-01 13:15:59 -05:00
|
|
|
include SpammableActions
|
2017-02-06 10:04:00 -05:00
|
|
|
include SnippetsActions
|
2017-04-13 12:47:28 -04:00
|
|
|
include RendersBlob
|
2017-10-11 05:03:19 -04:00
|
|
|
include PreviewMarkdown
|
2019-09-03 13:45:00 -04:00
|
|
|
include PaginatedCollection
|
2019-09-02 07:12:20 -04:00
|
|
|
include Gitlab::NoteableMetadata
|
2016-06-03 05:44:04 -04:00
|
|
|
|
2019-02-27 02:41:14 -05:00
|
|
|
skip_before_action :verify_authenticity_token,
|
|
|
|
if: -> { action_name == 'show' && js_request? }
|
2018-02-06 08:33:18 -05:00
|
|
|
|
2017-04-30 13:15:20 -04:00
|
|
|
before_action :snippet, only: [:show, :edit, :destroy, :update, :raw]
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2019-11-29 16:06:13 -05:00
|
|
|
before_action :authorize_create_snippet!, only: [:new, :create]
|
2017-04-30 13:15:20 -04:00
|
|
|
before_action :authorize_read_snippet!, only: [:show, :raw]
|
2015-06-26 10:44:21 -04:00
|
|
|
before_action :authorize_update_snippet!, only: [:edit, :update]
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :authorize_admin_snippet!, only: [:destroy]
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2017-04-30 13:15:20 -04:00
|
|
|
skip_before_action :authenticate_user!, only: [:index, :show, :raw]
|
2014-10-08 09:44:25 -04:00
|
|
|
|
2015-05-01 04:39:11 -04:00
|
|
|
layout 'snippets'
|
2011-10-16 17:07:10 -04:00
|
|
|
respond_to :html
|
|
|
|
|
2016-05-08 04:27:33 -04:00
|
|
|
def index
|
|
|
|
if params[:username].present?
|
2018-10-18 05:06:44 -04:00
|
|
|
@user = UserFinder.new(params[:username]).find_by_username!
|
2016-05-08 04:27:33 -04:00
|
|
|
|
2017-04-28 18:06:27 -04:00
|
|
|
@snippets = SnippetsFinder.new(current_user, author: @user, scope: params[:scope])
|
2019-09-02 07:12:20 -04:00
|
|
|
.execute
|
|
|
|
.page(params[:page])
|
|
|
|
.inc_author
|
|
|
|
|
2019-09-03 13:45:00 -04:00
|
|
|
return if redirect_out_of_range(@snippets)
|
|
|
|
|
2019-09-02 07:12:20 -04:00
|
|
|
@noteable_meta_data = noteable_meta_data(@snippets, 'Snippet')
|
2016-05-08 04:27:33 -04:00
|
|
|
|
|
|
|
render 'index'
|
|
|
|
else
|
|
|
|
redirect_to(current_user ? dashboard_snippets_path : explore_snippets_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2011-10-26 09:46:25 -04:00
|
|
|
def new
|
2013-03-25 12:32:10 -04:00
|
|
|
@snippet = PersonalSnippet.new
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2020-05-18 02:08:14 -04:00
|
|
|
create_params = snippet_params.merge(files: params.delete(:files))
|
2020-01-16 19:09:00 -05:00
|
|
|
service_response = Snippets::CreateService.new(nil, current_user, create_params).execute
|
|
|
|
@snippet = service_response.payload[:snippet]
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2020-05-13 17:08:55 -04:00
|
|
|
if service_response.error? && @snippet.errors[:repository].present?
|
|
|
|
handle_repository_error(:new)
|
2020-03-10 08:08:16 -04:00
|
|
|
else
|
|
|
|
recaptcha_check_with_fallback { render :new }
|
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
2020-05-18 02:08:14 -04:00
|
|
|
service_response = Snippets::UpdateService.new(nil, current_user, snippet_params).execute(@snippet)
|
2020-01-16 19:09:00 -05:00
|
|
|
@snippet = service_response.payload[:snippet]
|
2017-02-14 14:07:11 -05:00
|
|
|
|
2020-05-13 17:08:55 -04:00
|
|
|
handle_repository_error(:edit)
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
2017-05-26 19:27:30 -04:00
|
|
|
conditionally_expand_blob(blob)
|
2017-04-13 12:47:28 -04:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html do
|
2020-02-25 04:09:10 -05:00
|
|
|
@note = Note.new(noteable: @snippet)
|
|
|
|
@noteable = @snippet
|
|
|
|
|
|
|
|
@discussions = @snippet.discussions
|
|
|
|
@notes = prepare_notes_for_rendering(@discussions.flat_map(&:notes), @noteable)
|
2017-04-13 12:47:28 -04:00
|
|
|
render 'show'
|
|
|
|
end
|
|
|
|
|
|
|
|
format.json do
|
|
|
|
render_blob_json(blob)
|
|
|
|
end
|
2018-02-06 08:33:18 -05:00
|
|
|
|
2018-12-11 01:32:25 -05:00
|
|
|
format.js do
|
|
|
|
if @snippet.embeddable?
|
|
|
|
render 'shared/snippets/show'
|
|
|
|
else
|
|
|
|
head :not_found
|
|
|
|
end
|
|
|
|
end
|
2017-04-13 12:47:28 -04:00
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2020-01-16 19:09:00 -05:00
|
|
|
service_response = Snippets::DestroyService.new(current_user, @snippet).execute
|
2011-10-16 17:07:10 -04:00
|
|
|
|
2020-01-16 19:09:00 -05:00
|
|
|
if service_response.success?
|
|
|
|
redirect_to dashboard_snippets_path, status: :found
|
|
|
|
elsif service_response.http_status == 403
|
|
|
|
access_denied!
|
|
|
|
else
|
|
|
|
redirect_to snippet_path(@snippet),
|
|
|
|
status: :found,
|
|
|
|
alert: service_response.message
|
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|
2011-12-15 16:57:46 -05:00
|
|
|
|
|
|
|
protected
|
2012-06-12 14:41:46 -04:00
|
|
|
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: disable CodeReuse/ActiveRecord
|
2012-02-21 17:31:18 -05:00
|
|
|
def snippet
|
2018-07-16 12:18:52 -04:00
|
|
|
@snippet ||= PersonalSnippet.inc_relations_for_view.find_by(id: params[:id])
|
2012-02-21 17:31:18 -05:00
|
|
|
end
|
2018-08-27 11:31:01 -04:00
|
|
|
# rubocop: enable CodeReuse/ActiveRecord
|
2017-04-25 10:41:26 -04:00
|
|
|
|
2016-06-03 05:44:04 -04:00
|
|
|
alias_method :awardable, :snippet
|
2017-02-01 13:15:59 -05:00
|
|
|
alias_method :spammable, :snippet
|
2011-12-15 16:57:46 -05:00
|
|
|
|
2017-06-29 13:06:35 -04:00
|
|
|
def spammable_path
|
|
|
|
snippet_path(@snippet)
|
|
|
|
end
|
|
|
|
|
2015-11-02 11:03:42 -05:00
|
|
|
def authorize_read_snippet!
|
2020-01-23 07:08:38 -05:00
|
|
|
return if can?(current_user, :read_snippet, @snippet)
|
2017-04-25 10:41:26 -04:00
|
|
|
|
|
|
|
if current_user
|
|
|
|
render_404
|
|
|
|
else
|
|
|
|
authenticate_user!
|
|
|
|
end
|
2015-10-29 16:42:29 -04:00
|
|
|
end
|
|
|
|
|
2015-06-26 10:44:21 -04:00
|
|
|
def authorize_update_snippet!
|
2020-01-23 07:08:38 -05:00
|
|
|
return render_404 unless can?(current_user, :update_snippet, @snippet)
|
2011-12-15 16:57:46 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def authorize_admin_snippet!
|
2020-01-23 07:08:38 -05:00
|
|
|
return render_404 unless can?(current_user, :admin_snippet, @snippet)
|
2013-03-18 17:33:41 -04:00
|
|
|
end
|
2013-06-18 10:43:49 -04:00
|
|
|
|
2019-11-29 16:06:13 -05:00
|
|
|
def authorize_create_snippet!
|
2020-01-23 07:08:38 -05:00
|
|
|
return render_404 unless can?(current_user, :create_snippet)
|
2019-11-29 16:06:13 -05:00
|
|
|
end
|
|
|
|
|
2014-06-26 11:51:11 -04:00
|
|
|
def snippet_params
|
2020-05-18 02:08:14 -04:00
|
|
|
params.require(:personal_snippet).permit(:title, :content, :file_name, :private, :visibility_level, :description).merge(spammable_params)
|
2014-10-08 09:44:25 -04:00
|
|
|
end
|
2011-10-16 17:07:10 -04:00
|
|
|
end
|