gitlab-org--gitlab-foss/app/controllers/snippets_controller.rb

52 lines
1.3 KiB
Ruby
Raw Normal View History

# frozen_string_literal: true
class SnippetsController < Snippets::ApplicationController
include SnippetsActions
include PreviewMarkdown
include ToggleAwardEmoji
include SpammableActions::AkismetMarkAsSpamAction
2018-02-06 13:33:18 +00:00
before_action :snippet, only: [:show, :edit, :raw, :toggle_award_emoji, :mark_as_spam]
2011-10-16 21:07:10 +00:00
before_action :authorize_create_snippet!, only: :new
before_action :authorize_read_snippet!, only: [:show, :raw]
before_action :authorize_update_snippet!, only: :edit
2011-10-16 21:07:10 +00:00
skip_before_action :authenticate_user!, only: [:index, :show, :raw]
2014-10-08 13:44:25 +00:00
layout 'snippets'
2011-10-16 21:07:10 +00:00
2016-05-08 08:27:33 +00:00
def index
if params[:username].present?
@user = UserFinder.new(params[:username]).find_by_username!
2016-05-08 08:27:33 +00:00
@snippets = SnippetsFinder.new(current_user, author: @user, scope: params[:scope], sort: sort_param)
.execute
.page(params[:page])
.inc_author
.inc_statistics
return if redirect_out_of_range(@snippets)
@noteable_meta_data = noteable_meta_data(@snippets, 'Snippet')
2016-05-08 08:27:33 +00:00
render 'index'
else
redirect_to(current_user ? dashboard_snippets_path : explore_snippets_path)
end
end
def new
2013-03-25 16:32:10 +00:00
@snippet = PersonalSnippet.new
2011-10-16 21:07:10 +00:00
end
2011-12-15 21:57:46 +00:00
protected
2016-06-03 09:44:04 +00:00
alias_method :awardable, :snippet
alias_method :spammable, :snippet
2011-12-15 21:57:46 +00:00
def spammable_path
snippet_path(@snippet)
end
2011-10-16 21:07:10 +00:00
end