51 lines
1.3 KiB
Ruby
51 lines
1.3 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
class SnippetsController < Snippets::ApplicationController
|
|
include SnippetsActions
|
|
include PreviewMarkdown
|
|
include ToggleAwardEmoji
|
|
include SpammableActions::AkismetMarkAsSpamAction
|
|
|
|
before_action :snippet, only: [:show, :edit, :raw, :toggle_award_emoji, :mark_as_spam]
|
|
|
|
before_action :authorize_create_snippet!, only: :new
|
|
before_action :authorize_read_snippet!, only: [:show, :raw]
|
|
before_action :authorize_update_snippet!, only: :edit
|
|
|
|
skip_before_action :authenticate_user!, only: [:index, :show, :raw]
|
|
|
|
layout 'snippets'
|
|
|
|
def index
|
|
if params[:username].present?
|
|
@user = UserFinder.new(params[:username]).find_by_username!
|
|
|
|
@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')
|
|
|
|
render 'index'
|
|
else
|
|
redirect_to(current_user ? dashboard_snippets_path : explore_snippets_path)
|
|
end
|
|
end
|
|
|
|
def new
|
|
@snippet = PersonalSnippet.new
|
|
end
|
|
|
|
protected
|
|
|
|
alias_method :awardable, :snippet
|
|
alias_method :spammable, :snippet
|
|
|
|
def spammable_path
|
|
snippet_path(@snippet)
|
|
end
|
|
end
|